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

:root {
    --blue: #3B82C6;
    --red: #DC2626;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.content {
    animation: fadeIn 0.8s ease-out;
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 198, 0.3));
}

/* Icon */
.icon-wrapper {
    margin-bottom: 40px;
}

.maintenance-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(59, 130, 198, 0.1);
    border: 3px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 198, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(59, 130, 198, 0);
    }
}

/* Main Text */
.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.subtitle {
    font-size: 1.1rem;
    color: #b8b8d1;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}

.time-box {
    background: rgba(59, 130, 198, 0.15);
    border: 2px solid var(--blue);
    border-radius: 10px;
    padding: 20px 24px;
    min-width: 90px;
    backdrop-filter: blur(10px);
}

.time-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}

.time-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.6;
}

/* Message Box */
.message-box {
    background: rgba(59, 130, 198, 0.08);
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.message-box p {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.message-box p:last-child {
    margin-bottom: 0;
}

.launch-date {
    font-size: 1.1rem;
    margin-top: 16px;
}

.launch-date strong {
    color: var(--blue);
    font-weight: 700;
}

/* Social Section */
.social-section {
    margin-bottom: 30px;
}

.social-text {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 198, 0.1);
    border: 2px solid rgba(59, 130, 198, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-3px);
}

/* Contact */
.contact {
    margin-top: 30px;
}

.contact p {
    font-size: 0.95rem;
    color: #9ca3af;
}

.contact a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #60A5FA;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 640px) {
    .logo-image {
        max-width: 300px;
    }

    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .countdown {
        gap: 8px;
    }

    .time-box {
        padding: 16px 18px;
        min-width: 75px;
    }

    .time-value {
        font-size: 2rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .message-box {
        padding: 18px 20px;
    }

    .message-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 250px;
    }

    .maintenance-icon {
        width: 80px;
        height: 80px;
    }

    .maintenance-icon svg {
        width: 60px;
        height: 60px;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }

    .time-box {
        padding: 12px 14px;
        min-width: 65px;
    }

    .time-value {
        font-size: 1.6rem;
    }

    .time-label {
        font-size: 0.7rem;
    }
}