* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-top: #dff7ec;
    --bg-bottom: #dff1ff;
    --card-bg: rgba(255, 255, 255, 0.4);
    --text-main: #1f2937;
    --text-soft: #5b6472;
    --line: rgba(255, 255, 255, 0.35);
    --primary: #0f766e;
    --primary-dark: #0a5b55;
    --watch-glow: rgba(15, 23, 42, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 14%, rgba(111, 225, 172, 0.28), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(116, 207, 255, 0.32), transparent 43%),
        radial-gradient(circle at 28% 82%, rgba(157, 240, 213, 0.22), transparent 38%),
        radial-gradient(circle at 86% 74%, rgba(166, 220, 255, 0.25), transparent 36%),
        linear-gradient(145deg, var(--bg-top), var(--bg-bottom));
    color: var(--text-main);
    display: grid;
    place-items: center;
    padding: clamp(12px, 3vw, 20px);
    position: relative;
    overflow-x: hidden;
}

.page-glow {
    position: fixed;
    inset: -20%;
    z-index: -1;
    background:
        radial-gradient(circle at 25% 24%, rgba(34, 197, 94, 0.18), transparent 42%),
        radial-gradient(circle at 82% 35%, rgba(59, 130, 246, 0.16), transparent 39%),
        radial-gradient(circle at 50% 82%, rgba(45, 212, 191, 0.18), transparent 45%);
    animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translateY(0px) scale(1);
    }
    to {
        transform: translateY(-12px) scale(1.03);
    }
}

.container {
    width: min(760px, 100%);
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 28px;
    box-shadow:
        0 28px 60px rgba(2, 18, 44, 0.13),
        0 8px 20px rgba(9, 30, 66, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    padding: clamp(20px, 4vw, 34px) clamp(14px, 3vw, 26px);
    animation: fadeUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    inset: -45% auto auto -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 70%);
    pointer-events: none;
    animation: driftGlow 9s ease-in-out infinite alternate;
}

.container::after {
    content: "";
    position: absolute;
    inset: auto -14% -36% auto;
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.24), transparent 70%);
    pointer-events: none;
    animation: driftGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes driftGlow {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-image {
    width: 150px;
    height: 150px;
    aspect-ratio: 1 / 1;
    display: block;
    margin-inline: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow:
        0 18px 28px rgba(15, 23, 42, 0.16),
        0 4px 10px rgba(15, 23, 42, 0.1);
    margin-bottom: 22px;
    background: #ffffff;
    animation: logoLift 5s ease-in-out infinite;
}

@keyframes logoLift {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

.title {
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1e3a8a;
    text-wrap: balance;
    letter-spacing: -0.04em;
}

.org-name {
    margin-top: -8px;
    margin-bottom: 22px;
    color: #173f9d;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.watch-timer {
    margin-inline: auto;
    width: min(500px, 100%);
    background: rgba(10, 20, 38, 0.92);
    border-radius: 20px;
    padding: clamp(14px, 2.5vw, 22px);
    box-shadow:
        0 18px 34px var(--watch-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 0 28px rgba(96, 165, 250, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.watch-timer::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    pointer-events: none;
}

.digital-clock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 1.8vw, 12px);
}

.launch-state {
    margin-top: 14px;
    font-size: clamp(0.9rem, 1.7vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #86efac;
    opacity: 0;
    transform: translateY(6px) scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

body.is-launched .launch-state {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: launchPulse 1.8s ease-in-out infinite;
}

@keyframes launchPulse {
    0%,
    100% {
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.45);
    }
    50% {
        text-shadow: 0 0 18px rgba(74, 222, 128, 0.75);
    }
}

.time-box {
    min-width: clamp(66px, 18vw, 108px);
    padding: clamp(10px, 2vw, 16px) clamp(8px, 2.2vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(23, 37, 62, 0.94), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.23);
    color: #f8fafc;
    font-size: clamp(1.6rem, 6vw, 2.9rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    text-shadow: 0 0 14px rgba(147, 197, 253, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 18px rgba(2, 6, 23, 0.38);
}

.separator {
    color: #bcd4ff;
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    font-weight: 700;
    transform: translateY(-3px);
    animation: blinkDot 1s steps(1, end) infinite;
}

@keyframes blinkDot {
    50% {
        opacity: 0.35;
    }
}

.contact-card {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.contact-card h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.contact-card p {
    font-size: 1.02rem;
    margin: 8px 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.whatsapp-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #1d8d53 0%, #157347 52%, #0f5e39 100%);
    color: #ffffff !important;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 12px 22px rgba(9, 83, 50, 0.36),
        0 2px 0 rgba(8, 62, 38, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.04);
    box-shadow:
        0 16px 26px rgba(9, 83, 50, 0.42),
        0 2px 0 rgba(8, 62, 38, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.whatsapp-btn svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .container {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .logo-image {
        width: 120px;
        height: 120px;
    }

    .watch-timer {
        border-radius: 18px;
        padding: 12px 10px 14px;
    }

    .time-box {
        min-width: 58px;
        border-radius: 12px;
    }
}

@media (max-width: 380px) {
    .title {
        font-size: 1.6rem;
    }

    .org-name {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .contact-card {
        padding: 16px 12px;
    }

    .contact-card p,
    .whatsapp-btn {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 12px;
    }

    .time-box {
        min-width: 52px;
        font-size: 1.35rem;
        padding: 10px 6px;
    }

    .separator {
        font-size: 1.2rem;
    }
}
