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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-container img {
    width: 70%;
    border-radius: 10px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: black;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.main-message {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #475569;
    line-height: 1.6;
}



.loading-animation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

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

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

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

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    background: black;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 39, 62, 0.25);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 39, 62, 0.35);
    background: #0f1f2e;
}

footer {
    margin-top: 2rem;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: #94a3b8;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .main-message {
        font-size: 1rem;
    }
    
    .contact-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}