:root {
    --bg1: #0f172a;
    --bg2: #0b1220;
    --card: rgba(255, 255, 255, 0.04);
    --accent1: #7b61ff;
    --accent2: #32d6c9;
    --glass: rgba(255, 255, 255, 0.06);
    --muted: rgba(255, 255, 255, 0.65);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(123, 97, 255, 0.08), transparent),
        radial-gradient(1000px 500px at 90% 90%, rgba(50, 214, 201, 0.06), transparent),
        linear-gradient(180deg, var(--bg1), var(--bg2));
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1100px
}

.bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible
}

.blob {
    position: absolute;
    width: 420px;
    height: 420px;
    opacity: 0.14;
    filter: blur(28px);
    transform: translate3d(0, 0, 0)
}

.blob-1 {
    left: -8%;
    top: -12%;
    animation: float 8s ease-in-out infinite
}

.blob-2 {
    right: -6%;
    bottom: -18%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.12
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-18px) rotate(7deg)
    }

    100% {
        transform: translateY(0) rotate(0deg)
    }
}

.card {
    position: relative;
    padding: 36px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.6);
}

.brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px
}

.logo {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1px;
    color: linear-gradient(90deg, var(--accent1), var(--accent2));
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.tag {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.countdown h1 {
    margin: 6px 0 18px;
    font-size: 20px
}

.tz {
    color: var(--muted);
    font-size: 13px;
    margin-top: -6px;
    margin-bottom: 12px;
}

.timer {
    display: flex;
    gap: 14px;
    align-items: center
}

.time-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    padding: 18px 14px;
    border-radius: 12px;
    min-width: 90px;
    text-align: center;
    box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.25)
}

.time-box span {
    display: block;
    font-size: 24px;
    font-weight: 700
}

.time-box small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px
}

.progress-wrap {
    height: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    margin-top: 18px;
    overflow: hidden
}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    transition: width 0.6s linear
}

.note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px
}

.cta {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #061225;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600
}

.muted {
    color: var(--muted);
    text-decoration: none
}

/* Responsive */
@media (max-width:640px) {
    .card {
        padding: 20px;
        border-radius: 16px
    }

    .timer {
        flex-wrap: wrap
    }

    .time-box {
        min-width: 72px;
        padding: 12px
    }

    .logo {
        font-size: 24px
    }
}

/* Accessibility focus */
a:focus {
    outline: 2px dashed rgba(255, 255, 255, 0.12);
    outline-offset: 4px
}