#statsSection {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* CARD (MOBILE BOOSTED) */
.stat-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: 0.5s ease;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

/* animated glow sweep */
.stat-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,255,120,0.12),
        transparent
    );
    transform: rotate(20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -60%; }
    100% { left: 120%; }
}

/* show animation */
#statsSection.show .stat-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-card:nth-child(1) { transition-delay: 0.1s; }
.stat-card:nth-child(2) { transition-delay: 0.2s; }

.stat-card h2 {
    font-size: 12px;
    color: var(--green-soft);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 56px;
    color: var(--green);
    transition: 0.2s;
}

/* number pop effect */
.glow-pop {
    animation: popGlow 0.5s ease;
}

@keyframes popGlow {
    0% { transform: scale(1); text-shadow: 0 0 0px var(--green); }
    50% { transform: scale(1.08); text-shadow: 0 0 20px var(--green); }
    100% { transform: scale(1); }
}

/* GAUGE (down vote rate) */
.gauge {
    margin-top: 14px;
    height: 8px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(0,255,120,0.04);
    overflow: hidden;
}

.gauge-fill {
    width: 0%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--green-soft), var(--green));
    box-shadow: 0 0 10px rgba(0,255,120,0.45);
    transition: width 0.5s ease;
}
