/* =========== FLOATING SHAPES BACKGROUND =========== */
.shapes-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(2px);
    animation: floatShape 18s ease-in-out infinite;
}
.shape1 {
    width: 120px; height: 120px;
    background: #29ad95;
    left: 10vw; top: 12vh;
    animation-delay: 0s;
}
.shape2 {
    width: 80px; height: 80px;
    background: #c3ec52;
    left: 70vw; top: 18vh;
    animation-delay: 4s;
}
.shape3 {
    width: 100px; height: 100px;
    background: #239889;
    left: 30vw; top: 70vh;
    animation-delay: 8s;
}
.shape4 {
    width: 60px; height: 60px;
    background: #0ba29d;
    left: 80vw; top: 75vh;
    animation-delay: 12s;
}
@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}
/* =========== ANIMATED GRADIENT BACKGROUND =========== */
.animated-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: linear-gradient(-45deg, #f8ffae, #43cea2, #185a9d, #f8ffae);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* =========== PAGE BASE STYLES =========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    color: #202020;
    background: linear-gradient(135deg, #c3ec52 0%, #0ba29d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    z-index: 2;
    position: relative;
    animation: fadeIn 1.5s ease;
}

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

.container {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.19), 0 1.5px 12px 0 rgba(41,173,149,0.08);
    text-align: center;
    max-width: 420px;
    width: 90vw;
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1.5px solid rgba(255,255,255,0.25);
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.565,1) both;
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
}

header h1 {
    font-size: 2.6em;
    letter-spacing: 1px;
    margin-bottom: 0.55em;
    color: #239889;
    font-weight: 800;
}

.subtitle {
    font-size: 1.18em;
    margin-bottom: 1.5em;
    color: #3a3a3a;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

/* Countdown and updates */
.countdown {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0.6em 0 1em 0;
}
.countdown-item {
    background: rgba(255,255,255,0.06);
    padding: 0.6em 0.9em;
    border-radius: 10px;
    min-width: 60px;
}
.countdown-item span { display:block; font-size:1.25em; font-weight:700; }
.updates { text-align:left; margin-top:1.2em; }
.updates h2 { font-size:1em; margin-bottom:0.5em; color:#2a6; }
.updates ul { list-style: none; padding-left:0; color:#333; }
.updates li { padding: 0.35em 0; border-bottom: 1px dashed rgba(0,0,0,0.04); }

@media (max-width: 520px) {
    .countdown { gap: 8px; }
    .countdown-item { min-width: 48px; padding: 0.4em 0.6em; }
}

.coming-soon {
    font-size: 1.35em;
    color: #15847a;
    font-weight: 700;
    margin-bottom: 2em;
    letter-spacing: 2px;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
/* =========== CALL TO ACTION BUTTON =========== */
.cta-btn {
    display: inline-block;
    margin: 1.2em auto 0 auto;
    padding: 0.85em 2.2em;
    font-size: 1.08em;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #29ad95 0%, #0ba29d 100%);
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(41,173,149,0.13);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    z-index: 3;
    position: relative;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #0ba29d 0%, #29ad95 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 18px rgba(41,173,149,0.18);
    outline: none;
}
}

/* Loader animation */
.loader {
    margin: 2rem auto;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #43cea2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

footer {
    margin-top: 1rem;
    font-size: 0.98em;
    color: #888;
    letter-spacing: 0.5px;
}

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    text-align: center;
    padding: 0.5em 0.1em;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 500px) {
    .container {
        padding: 2rem 1.2rem;
    }
    header h1 {
        font-size: 2em;
    }
    .shape1 { width: 70px; height: 70px; }
    .shape2 { width: 50px; height: 50px; }
    .shape3 { width: 60px; height: 60px; }
    .shape4 { width: 35px; height: 35px; }
}
