/* SJJF Stats Module Styles */

.sjjf-stats-module {
    direction: rtl;
    padding: 60px 20px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: 
        radial-gradient(circle at 20% 0%, rgba(0, 255, 150, 0.15), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 255, 150, 0.08), transparent 40%),
        linear-gradient(135deg, #031a1c, #062d2f);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 60px rgba(0, 255, 150, 0.08);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
}

.sjjf-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sjjf-stats-head {
    text-align: center;
    margin-bottom: 40px;
}

.sjjf-stats-head h2 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

.sjjf-stats-head h2 span {
    color: #00ff9c;
}

.sjjf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sjjf-stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sjjf-stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 255, 150, 0.25);
}

.sjjf-counter-number {
    font-size: 55px;
    font-weight: 900;
    color: #00ff9c;
    line-height: 1;
}

.sjjf-stats-label {
    margin-top: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.sjjf-stats-bar {
    margin-top: 12px;
    height: 6px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.sjjf-stats-fill {
    height: 100%;
    background: #00ff9c;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

/* Responsive Grid */
@media (max-width: 900px) {
    .sjjf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .sjjf-stats-grid {
        grid-template-columns: 1fr;
    }
}
