* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width:800px;
    padding: 40px;
}

.construction-icon {
    font-size: 80px;
    animation: bounce 2s infinite;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-container {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #3b82f6);
    border-radius: 50px;
    animation: loading 3s infinite;
}

.countdown {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #38bdf8;
}

.notify-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    background: #38bdf8;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.notify-btn:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes loading {
    0% {
        width: 10%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .construction-icon {
        font-size: 60px;
    }
}

.contact-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #38bdf8;
    font-size: 1.3rem;
}

.contact-item {
    margin: 12px 0;
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.6;
}

.contact-item a {
    color: #25D366;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}
