/* =============================================================
   SECTION — Stats / Counters
   ============================================================= */

.sparkle-stats-section {
    padding: 80px 0;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.stats-title {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.stats-grid > div {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 169, 115, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.sparkle-counter {
    font-size: 3rem;
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.stats-grid p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
