/* --- About Us / Infographic Styles --- */
.infographic-wrapper {
    position: relative;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.infographic-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.infographic-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.infographic-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 1. HERO STATS ROW */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-box {
    background: #ce0000;
    /* Fallback */
    background: linear-gradient(135deg, var(--primary-color, #ce0000) 0%, #a00000 100%);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(206, 0, 0, 0.2);
    transition: transform 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Ensure text pops */
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* 2. CATEGORIES / INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(206, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    background: rgba(206, 0, 0, 0.05);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.info-card:hover i {
    background: var(--primary-red);
    color: #fff;
}

.info-card h4 {
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
}

/* 3. GEO DISTRIBUTION (Tags) */
.geo-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.geo-section h3 {
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.geo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.geo-tag {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #555;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.geo-tag:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.geo-count {
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 0.8rem;
    margin-right: 10px;
    text-align: center;
}

/* 4. SECTIONS & LISTS */
.section-box {
    margin-bottom: 50px;
}

.section-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.section-title-bar h3 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 15px;
    border-left: 4px solid var(--primary-red);
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.compact-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compact-label {
    font-weight: 600;
    color: #444;
}

.compact-val {
    color: var(--primary-red);
    font-weight: 700;
}

/* 5. SPLIT LAYOUT (Timeline & Sports) */
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .info-split {
        grid-template-columns: 1fr;
    }
}

.timeline-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.history-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.history-item {
    position: relative;
    padding: 0 20px 20px 0;
    border-right: 2px solid #eee;
    margin-right: 10px;
}

.history-item::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
}

.history-year {
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.membership-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    font-weight: 600;
}