/* Color Palette
   #00202c - Dark blue (primary)
   #26e0fc - Cyan (accent)
   #3e4044 - Dark gray
   #ffd700 - Gold (accent)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #00202c;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 32, 44, 0.1);
    width: 100%;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.company-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00202c;
    margin-bottom: 30px;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #26e0fc 0%, #ffd700 100%);
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.4s both;
}

.status {
    font-size: 1.5rem;
    font-weight: 500;
    color: #3e4044;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.message {
    font-size: 1.1rem;
    color: #3e4044;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    animation: fadeIn 1s ease-out 1s both;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #26e0fc;
    animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
    background: #ffd700;
}

.dot:nth-child(3) {
    animation-delay: 0s;
}

.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.footer p {
    font-size: 0.9rem;
    color: #3e4044;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .status {
        font-size: 1.3rem;
    }
    
    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 120px;
    }
    
    .status {
        font-size: 1.2rem;
    }
    
    .message {
        font-size: 0.95rem;
    }
}

