/* =========================================
   STATS SECTION REDESIGN - Premium Compact
   Smaller fonts, better layout
   ========================================= */

/* Stats Section Container */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"],
section[style*="padding: 4rem 0"][style*="background: linear-gradient"] {
    padding: 3rem 0 !important;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%) !important;
}

/* Stats Grid */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"]>div>div[style*="display: grid"],
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Individual Stat Card */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 20px"],
.stats-card {
    padding: 1.25rem !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 215, 0, 0.12) !important;
    border-radius: 16px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 20px"]:hover,
.stats-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 215, 0, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.08) !important;
}

/* Stat Icon */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 50%"][style*="width: 70px"],
.stat-icon {
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto 0.75rem !important;
    font-size: 1.25rem !important;
}

section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 50%"][style*="width: 70px"] i {
    font-size: 1.25rem !important;
}

/* Stat Number - SMALLER */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="font-size: 2.25rem"],
section[style*="background: linear-gradient(135deg, rgba(10,10,20"] span[style*="font-weight: 800"],
.stat-number {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

/* Stat Label */
section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="font-weight: 600"][style*="color: #fff"],
.stat-label {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.3 !important;
}

/* Responsive Stats Grid */
@media (max-width: 900px) {
    section[style*="background: linear-gradient(135deg, rgba(10,10,20"]>div>div[style*="display: grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] {
        padding: 2rem 0 !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"]>div>div[style*="display: grid"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 20px"] {
        padding: 1rem !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="font-size: 2.25rem"],
    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] span[style*="font-weight: 800"] {
        font-size: 1.5rem !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 50%"][style*="width: 70px"] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.5rem !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="border-radius: 50%"][style*="width: 70px"] i {
        font-size: 1rem !important;
    }

    section[style*="background: linear-gradient(135deg, rgba(10,10,20"] [style*="font-weight: 600"][style*="color: #fff"] {
        font-size: 0.7rem !important;
    }
}