/* ===================================
   ABOUT FEDERATION PAGE - NEW DESIGN
   =================================== */

   :root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --secondary: #F59E0B;
    --secondary-dark: #D97706;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #cbd5e1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   BREADCRUMBS
   =================================== */

.breadcrumbs {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumbs__item:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.breadcrumbs__link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__link:hover {
    color: var(--primary-dark);
}

.breadcrumbs__current {
    color: var(--text-secondary);
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: clamp(1rem, 4vw, 2rem) 0;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.achievement-item--gold {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), transparent);
    border-left-color: var(--secondary);
}

.achievement-icon {
    font-size: 1.5rem;
}

/* Olympic Highlight */
.olympic-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    color: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.olympic-highlight__icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.olympic-highlight h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #F59E0B; /* Gold/Bronze color */
}

.olympic-highlight p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* War Context */
.history-card--war {
    border-color: #ef4444; /* Red border */
}

.war-context {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ef4444;
}

.war-context p {
    margin: 0;
    font-size: 0.9375rem;
    color: #7f1d1d;
}

/* Stats Update */
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ===================================
   HERO SECTION
   =================================== */

.about-hero {
    padding: clamp(1rem, 6vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.about-hero__content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-hero__label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 1.25rem;
}

.about-hero__accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero__description {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Stats */
.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-card__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-card__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===================================
   INTRO TEXT
   =================================== */

.about-intro {
    padding: clamp(1rem, 4vw, 2rem) 0;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-intro__text {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.about-intro__text p {
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

.about-intro__text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   HISTORY SECTION
   =================================== */

.history-section {
    padding: clamp(1rem, 6vw, 2rem) 0;
}

.history-grid {
    display: grid;
    gap: 2rem;
}

.history-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.history-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.history-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.history-card:hover::before {
    transform: scaleY(1);
}

.history-card--highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(245, 158, 11, 0.03));
}

.history-card--highlight::before {
    transform: scaleY(1);
}

.history-card__period {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.history-card__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.history-card__content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.history-card__content p {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    margin: 0 0 1.25rem;
}

.history-card__content p:last-child {
    margin-bottom: 0;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.history-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
}

.history-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.history-list li strong {
    color: var(--primary);
    font-weight: 700;
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.large-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.5;
}

.info-box {
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0 0 0.75rem !important;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* History Images */
.history-image-wrapper {
    margin-top: 2rem;
}

.history-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.history-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.history-image-caption {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* ===================================
   PRESIDENTS SECTION
   =================================== */

.presidents-section {
    padding: clamp(1rem, 6vw, 2rem) 0;
}

.presidents-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.president-item {
    padding: 1.75rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.president-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.president-item--current {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(245, 158, 11, 0.08));
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.president-years {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.president-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.president-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   ACHIEVEMENTS SECTION
   =================================== */

.achievements-section {
    padding: clamp(1rem, 6vw, 2rem) 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-box {
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border: 3px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.achievement-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.achievement-box:hover::before {
    transform: scaleX(1);
}

.achievement-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.achievement-number {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.achievement-text {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.achievement-detail {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================
   LEADERSHIP SECTION
   =================================== */

.leadership-section {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.leader-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.leader-card--main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(245, 158, 11, 0.05));
    border: 3px solid var(--primary);
    padding: 3rem 2rem;
}

.leader-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.leader-card--main .leader-avatar {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
}

.leader-card:hover .leader-avatar {
    transform: scale(1.1) rotate(5deg);
}

.leader-role {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.leader-card--main .leader-role {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
}

.leader-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.leader-location {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (max-width: 1023px) */
@media (max-width: 1023px) {
    .about-hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .about-page {
        padding: 1.5rem 0;
    }
    
    .about-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .about-hero__label {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .about-intro {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .about-intro__text {
        padding: 1.75rem;
        border-radius: 20px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .history-section,
    .presidents-section,
    .achievements-section,
    .leadership-section {
        padding: 2.5rem 0;
    }
    
    .history-card {
        padding: 1.75rem;
        border-radius: 20px;
    }
    
    .history-card::before {
        width: 4px;
    }
    
    .history-list li {
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
    
    .history-image {
        border-radius: 12px;
    }
    
    .presidents-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .president-item {
        padding: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement-box {
        padding: 2rem 1.5rem;
    }
    
    .achievement-icon {
        font-size: 3rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leader-card {
        padding: 1.75rem;
    }
    
    .leader-card--main {
        padding: 2.5rem 1.75rem;
    }
    
    .leader-avatar {
        width: 90px;
        height: 90px;
        font-size: 1.75rem;
    }
    
    .leader-card--main .leader-avatar {
        width: 110px;
        height: 110px;
        font-size: 2.25rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .about-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .history-card {
        padding: 1.5rem;
    }
    
    .history-card__period {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }
    
    .info-box {
        padding: 1.25rem;
    }
    
    .achievement-box {
        padding: 1.75rem 1.25rem;
    }
    
    .leader-card {
        padding: 1.5rem;
    }
    
    .leader-card--main {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   INTRO SECTION - EXPANDED
   =================================== */

   .about-intro {
    padding: clamp(1rem, 4vw, 2rem) 0;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-intro__main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro__text {
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.about-intro__text p {
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

.about-intro__text strong {
    color: var(--primary);
    font-weight: 700;
}

/* President Info Box */
.president-info-box {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(245, 158, 11, 0.05));
    border: 3px solid var(--primary);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.president-info-box__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.president-info-box__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.president-info-box__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.president-info-box__subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.president-info-box__content {
    padding-left: clamp(0, 4vw, 80px);
}

.president-info-box__name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.president-info-box__description {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Leadership Overview */
.leadership-overview {
    padding: clamp(2rem, 4vw, 2.5rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
}

.leadership-overview__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    text-align: center;
}

.leadership-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.leadership-overview__card {
    padding: 1.5rem;
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.leadership-overview__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.leadership-overview__card--primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.08));
    border-color: var(--primary);
}

.leadership-overview__badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.leadership-overview__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Supervisory Board */
.supervisory-board {
    padding: clamp(2rem, 4vw, 2.5rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-left: 6px solid var(--secondary);
    border-radius: 24px;
}

.supervisory-board__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.supervisory-board__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.supervisory-board__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.supervisory-board__lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.supervisory-board__lead strong {
    color: var(--secondary);
}

.supervisory-board__members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.supervisory-board__member {
    padding: 1rem 1.25rem;
    background: var(--bg-lighter);
    border-left: 3px solid var(--secondary);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Honorary Member */
.honorary-member {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border: 2px solid var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.honorary-member__icon {
    font-size: 4rem;
    line-height: 1;
}

.honorary-member__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.honorary-member__name {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

/* Governance Note */
.governance-note {
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.governance-note svg {
    color: var(--primary);
    flex-shrink: 0;
}

.governance-note p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.governance-note strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   MISSION SECTION
   =================================== */

.about-mission {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.about-mission__header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-mission__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.about-mission__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    margin: 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    padding: clamp(2rem, 4vw, 2.5rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mission-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.08);
    line-height: 1;
}

.mission-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.mission-card__title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.mission-card__text {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 767px) {
    .about-intro__text {
        padding: 1.75rem;
    }
    
    .president-info-box {
        padding: 1.75rem;
    }
    
    .president-info-box__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .president-info-box__icon {
        width: 56px;
        height: 56px;
    }
    
    .president-info-box__content {
        padding-left: 0;
    }
    
    .leadership-overview {
        padding: 1.75rem;
    }
    
    .leadership-overview__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .supervisory-board {
        padding: 1.75rem;
    }
    
    .supervisory-board__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .supervisory-board__members {
        grid-template-columns: 1fr;
    }
    
    .honorary-member {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }
    
    .honorary-member__icon {
        font-size: 3rem;
    }
    
    .governance-note {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem 1.75rem;
    }
    
    .mission-card__number {
        font-size: 3rem;
    }
}
/* ===================================
   LEADERSHIP OVERVIEW - WITH PHOTOS
   =================================== */

   .leadership-overview {
    padding: clamp(2rem, 4vw, 2.5rem);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 24px;
}

.leadership-overview__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    text-align: center;
}

.leadership-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.leadership-overview__card {
    padding: 1.75rem 1.5rem;
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leadership-overview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.leadership-overview__card--primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.08));
    border-color: var(--primary);
    border-width: 3px;
}

/* Leadership Overview Photo */
.leadership-overview__photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--bg-light);
}

.leadership-overview__card--primary .leadership-overview__photo {
    border-color: var(--primary);
    border-width: 4px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.leadership-overview__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.leadership-overview__card:hover .leadership-overview__photo {
    transform: scale(1.1);
    border-color: var(--primary);
}

.leadership-overview__card:hover .leadership-overview__photo img {
    transform: scale(1.15);
}

.leadership-overview__badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.leadership-overview__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ===================================
   PRESIDENT INFO BOX - WITH PHOTO
   =================================== */

.president-info-box {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(245, 158, 11, 0.05));
    border: 3px solid var(--primary);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.president-info-box__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.president-info-box__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
    transition: var(--transition);
}

.president-info-box__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.president-info-box:hover .president-info-box__photo {
    transform: scale(1.05);
}

.president-info-box__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.president-info-box__subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.president-info-box__content {
    padding-left: clamp(0, 4vw, 116px);
}

.president-info-box__name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.president-info-box__description {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 767px) {
    .president-info-box {
        padding: 1.75rem;
    }
    
    .president-info-box__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .president-info-box__photo {
        width: 80px;
        height: 80px;
        align-self: center;
    }
    
    .president-info-box__content {
        padding-left: 0;
    }
    
    .leadership-overview {
        padding: 1.75rem;
    }
    
    .leadership-overview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .leadership-overview__card {
        padding: 1.5rem 1.25rem;
    }
    
    .leadership-overview__photo {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .leadership-overview__grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-overview__photo {
        width: 85px;
        height: 85px;
    }
    
    .president-info-box__photo {
        width: 90px;
        height: 90px;
    }
}
/* ===================================
   ENHANCED VISUAL ELEMENTS
   =================================== */

/* Card Headers with Icons */
.history-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.history-card__icon {
    font-size: 2.5rem;
    opacity: 0.15;
    position: absolute;
    right: 2rem;
    top: 2rem;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.hero-badge__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.hero-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-badge__text strong {
    font-size: 1.125rem;
    color: #78350F;
}

.hero-badge__text span {
    font-size: 0.875rem;
    color: #92400E;
}

/* Timeline */
.timeline-item {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--border);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 11px;
    height: 11px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
}

.timeline-item--victory::before {
    background: #F59E0B;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.timeline-date {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-month {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.timeline-content {
    flex: 1;
}

.timeline-location {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin-bottom: 0rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.location-icon {
    font-size: 1.25rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0rem;
}

/* Olympic Roster */
.olympic-roster {
    padding: 2rem;
    background: var(--bg-lighter);
    border-radius: 16px;
    margin: 2rem 0;
}

.roster-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
}

.roster-category {
    margin-bottom: 2rem;
}

.roster-category:last-child {
    margin-bottom: 0;
}

.roster-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

/* Athlete Result */
.athlete-result {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.athlete-result:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.athlete-result--best {
    border-color: #F59E0B;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), transparent);
}

.athlete-result__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.athlete-result__name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.athlete-weight {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.athlete-result__name strong {
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.athlete-result__final {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-lighter);
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
}

.athlete-result__final--top {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    font-size: 1rem;
}

/* Match Sequence (already defined, but ensure consistency) */
.match-sequence {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.match-result {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border-left: 3px solid;
}

.match-result--win {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: #10B981;
}

.match-result--loss {
    background: rgba(239, 68, 68, 0.06);
    border-left-color: #EF4444;
}

.match-round {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.match-result p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.athlete-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* Olympic Summary */
.olympic-summary {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    margin: 2rem 0 1.5rem;
}

.summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.summary-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.olympic-context {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .olympic-roster {
        padding: 1.5rem;
    }
    
    .athlete-result {
        padding: 1.25rem;
    }
    
    .athlete-result__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .olympic-summary {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .summary-stat {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .athlete-result__name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* Medal Cards */
.medal-cards {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.medal-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid;
    transition: var(--transition);
}

.medal-card--gold {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08), transparent);
    border-left-color: #F59E0B;
}

.medal-card--silver {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.08), transparent);
    border-left-color: #94A3B8;
}

.medal-card--bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.08), transparent);
    border-left-color: #CD7F32;
}

.medal-card:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.medal-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.medal-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.medal-card__category {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.medal-card__detail {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Award Banner */
.award-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    color: white;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.award-banner__icon {
    font-size: 2rem;
}

.award-banner__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.award-banner__text strong {
    font-size: 1rem;
}

.award-banner__text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Stats Box */
.stats-box {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.stats-box__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stats-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.highlight-card__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.highlight-card__content strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-card__content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Olympic Hero */
.olympic-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1F2937, #111827);
    color: white;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.olympic-rings {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.olympic-hero h4 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.olympic-tagline {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Context Box */
.context-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.context-box--info {
    background: rgba(59, 130, 246, 0.08);
    border-left-color: #3B82F6;
}

.context-box--warning {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: #F59E0B;
}

.context-box__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.context-box__text strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Olympic Achievement */
.olympic-achievement {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 16px;
    border: 3px solid #CD7F32;
    margin: 2rem 0;
}

.olympic-achievement__medal {
    font-size: 5rem;
    flex-shrink: 0;
}

.olympic-achievement__content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

/* Olympic Path */
.olympic-path {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
}

.path-step--win {
    border-color: #10B981;
}

.path-step--loss {
    border-color: #EF4444;
}

.path-step--bronze {
    border-color: #CD7F32;
    background: rgba(205, 127, 50, 0.05);
}

.path-round {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.path-result {
    font-size: 1.25rem;
}

.path-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Team Roster */
.team-roster {
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    margin: 2rem 0;
}

.roster-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.roster-athlete {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.roster-weight {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.roster-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* War Alert */
.war-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.war-alert__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.war-alert__content strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

/* Memorial Section */
.memorial-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.05), rgba(55, 65, 81, 0.05));
    border-radius: 16px;
    border: 2px solid #374151;
    margin: 2rem 0;
}

.memorial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.memorial-icon {
    font-size: 2rem;
}

.memorial-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.memorial-cards {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.memorial-card {
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid #374151;
}

.memorial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.memorial-card__age {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.memorial-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Tragic Stats */
.tragic-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
}

.tragic-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tragic-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #DC2626;
    line-height: 1;
}

.tragic-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Story Box */
.story-box {
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.story-box--rescue {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.08));
    border: 2px solid #10B981;
}

.story-box__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-box__content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.rescue-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.rescue-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    min-width: 120px;
}

.rescue-stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
}

.rescue-stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Victory Banner */
.victory-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.victory-banner__trophy {
    font-size: 4rem;
    flex-shrink: 0;
}

.victory-banner__text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.victory-banner__tagline {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

/* Protest Box */
.protest-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #EF4444;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.protest-box__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.protest-box__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Stars Grid */
.stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.star-card {
    padding: 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.star-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

/* Star Card Photo with Real Images */
.star-card__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

/* Real Image Styling */
.star-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.star-card:hover .star-card__image {
    transform: scale(1.1);
}

/* Fallback for Placeholder */
.star-card__placeholder {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

/* Add subtle overlay on hover */
.star-card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.star-card:hover .star-card__photo::after {
    opacity: 1;
}


.star-card__info h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.star-card__weight {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.star-card__medals {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1rem 0;
}

.star-card__rank {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.rank-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
}

.star-card__rank span:last-child {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Championship Info */
.championship-info {
    padding: 0.875rem 1.25rem;
    background: var(--bg-lighter);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary);
}

.championship-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 600;
}

/* Tournament Highlight */
.tournament-highlight {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent);
    border-radius: 12px;
    border: 2px solid #F59E0B;
    margin: 1.5rem 0;
}

.tournament-highlight h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

.tournament-highlight p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem;
}

/* Bilodid Titles */
.bilodid-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.title-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #78350F;
    background: linear-gradient(135deg, #FCD34D, #FDE68A);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* Medal Stats Box */
.medal-stats-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
    margin-top: 1.5rem;
}

.medal-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.stat-text strong {
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .bilodid-titles {
        flex-direction: column;
    }
    
    .title-badge {
        text-align: center;
    }
    
    .medal-stats-box {
        padding: 1rem;
    }
}


/* Young Lions - Enhanced */
.young-lions {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.05));
    border-radius: 16px;
    margin-top: 2rem;
}

.young-lions__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.young-lions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Featured Young Lion */
.young-lion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.young-lion--featured {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.young-lion:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.lion-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.young-lion strong {
    font-size: 1.0625rem;
    color: var(--text-primary);
    font-weight: 700;
}

.lion-category {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

/* Lion Achievement */
.lion-achievement {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.achievement-badge {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
}

.achievement-badge--gold {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.achievement-badge--bronze {
    background: linear-gradient(135deg, #CD7F32, #B86F28);
}

.achievement-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Rising Talents Section */
.rising-talents {
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.rising-talents__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text-primary);
    text-align: center;
}

.rising-talents__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.talent-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-lighter);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.talent-item:hover {
    background: var(--bg-white);
    transform: translateY(-4px);
}

.talent-icon {
    font-size: 1.75rem;
}

.talent-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.talent-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .young-lions__grid {
        grid-template-columns: 1fr;
    }
    
    .rising-talents__list {
        grid-template-columns: 1fr;
    }
}


/* Future Vision */
.future-vision {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    border-radius: 16px;
    margin-top: 2rem;
}

.future-vision__icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.future-vision__content h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.future-vision__content p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    color: white
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--bg-lighter);
    border-radius: 12px;
}

.result-item--dnf {
    opacity: 0.6;
}

.result-place {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.result-name {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding-left: 1.5rem;
    }
    
    .timeline-date {
        width: auto;
    }
    
    .olympic-achievement {
        flex-direction: column;
        text-align: center;
    }
    
    .olympic-path {
        justify-content: center;
    }
    
    .stats-box,
    .rescue-stats,
    .tragic-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .highlights-grid,
    .stars-grid {
        grid-template-columns: 1fr;
    }
    
    .roster-grid {
        grid-template-columns: 1fr;
    }
}
