:root {
    --panel-bg: rgb(12, 12, 12);
    --accent1: #259FF0;
    --accent2: #fff;
    --muted: #ffffff;
    --card-radius: 16px;
    --glass: rgb(12, 12, 12);
}

.season-section {
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(12, 12, 12);
    width: 100%;
    border-radius: 30px;
    margin-top: 50px;
}

.season-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.season-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(0, 255, 128, 0.95), rgb(12, 12, 12));
    border-radius: var(--card-radius);

    text-align: center;
}

.season-title {
    margin: 0 0 6px 0;
    font-size: 1.6rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.2px;
}

#season-title i {
    color: var(--accent2);
    margin-right: 6px;
}

.season-sub {
    margin: 0 0 18px 0;
    font-size: 0.98rem;
    color: var(--muted);
}

#season-message {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

#season-message i {
    color: #ff0101;
    font-size: 1.3rem;
}

.countdown {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 14px 0 18px;
    flex-wrap: wrap;
}

.countdown-item {
    min-width: 100px;
    width: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.countdown-number {
    background: linear-gradient(180deg, #00ff80, #00a552);
    color: #071033;
    width: 100%;
    border-radius: 12px;
    padding: 14px 8px;
    font-weight: 700;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(14, 35, 80, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-number span {
    display: inline-block;
    transform: translateY(0);
    transition: transform 420ms cubic-bezier(.2, .9, .2, 1), opacity 420ms;
}

.countdown-number.sweep::after {
    content: "";
    position: absolute;
    left: -60%;
    top: -10%;
    width: 40%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: sweepX 0.9s ease forwards;
    pointer-events: none;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.season-footer {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-seed {
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(59, 60, 227, 0.18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.cta-seed:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(59, 60, 227, 0.25);
}

.season-note {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.winner-card {
    margin-top: 20px;
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #fff;
    padding: 20px 28px;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    display: none;
    text-align: center;
    animation: fadeIn 1s ease forwards, glow 2s infinite alternate;
}

.winner-card .winner-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.winner-card .winner-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-card .winner-donations {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.winner-card .winner-donations span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 12px #ffcc00;
    }

    50% {
        box-shadow: 0 0 28px #ffaa00;
    }

    100% {
        box-shadow: 0 0 12px #ffcc00;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes sweepX {
    0% {
        left: -60%;
        opacity: 0;
    }

    35% {
        left: 20%;
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

@media(max-width:880px) {
    .countdown-item {
        width: 100px;
        min-width: 90px;
    }

    .countdown-number {
        font-size: 1.4rem;
        padding: 12px 6px;
    }
}

@media(max-width:520px) {
    .season-card {
        padding: 18px;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-item {
        width: 84px;
        min-width: 72px;
    }

    .countdown-number {
        font-size: 1.1rem;
        padding: 10px 6px;
        border-radius: 10px;
    }

    .season-title {
        font-size: 1.25rem;
    }
}