/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:       #000000;
    --primary-dark:  #111111;
    --primary-light: #1a1a1a;
    --accent:        #ffffff;
    --accent-light:  #e8e8e8;
    --white:         #ffffff;
    --text-dark:     #ffffff;
    --text-gray:     #999999;
    --bg-light:      #0f0f0f;
    --border:        #2a2a2a;
    --border-light:  #333333;
    --win:           #4caf50;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--primary);
    color: var(--text-dark);
    line-height: 1.6;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.language-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-right: 0.75rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--accent-light);
}

html[dir="rtl"] .back-to-top,
body.rtl-mode .back-to-top {
    right: auto;
    left: 2rem;
}

.banner-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-gray);
    transition: color 0.2s;
}

.banner-icon:hover { color: var(--white); }

.banner-lang {
    background: transparent;
    color: var(--text-gray);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* ── MAIN HEADER ────────────────────────────────────────────– */
.main-header {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.club-logo { display: flex; align-items: center; }

.club-crest {
    width: 72px;
    height: 72px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.crest-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.crest-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: none;
}

.crest-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.main-nav {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
}

.nav-link {
    color: var(--text-gray);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.nav-link:hover { color: var(--white); }

.header-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
}

.search-btn, .menu-btn {
    color: var(--text-gray);
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.2s;
    display: none;
}

.search-btn:hover, .menu-btn:hover { color: var(--white); }


/* ── HERO ───────────────────────────────────────────────────– */
/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    background: #050505;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 24px 9rem;
}

/* Stadium green atmosphere rising from the pitch */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 110% 55% at 50% 105%, rgba(20,110,20,0.55) 0%, rgba(10,60,10,0.2) 45%, transparent 65%),
        radial-gradient(ellipse 70%  35% at 50%  90%, rgba(30,140,30,0.15) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle diagonal floodlight beams */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -22deg,
        transparent,
        transparent 140px,
        rgba(255,255,255,0.011) 140px,
        rgba(255,255,255,0.011) 141px
    );
    z-index: 1;
    pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; }

/* ── 3D FOOTBALL FIELD ─────────────────────────────────────── */
.hero-field-3d {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    perspective: 720px;
    perspective-origin: 50% 30%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform-style: preserve-3d;
}

.field-surface {
    position: relative;
    width: 1240px;
    height: 820px;
    flex-shrink: 0;
    transform: rotateX(61deg);
    transform-origin: bottom center;
    margin-bottom: -80px;

    /* Alternating mown-grass stripes along pitch length */
    background:
        /* near-edge lighting shimmer */
        linear-gradient(to top, rgba(60,160,60,0.1) 0%, transparent 18%),
        /* alternating stripes */
        repeating-linear-gradient(
            to right,
            #195a19 0px, #195a19 52px,
            #1c6420 52px, #1c6420 104px
        );

    /* White pitch border */
    outline: 2.5px solid rgba(255,255,255,0.88);
    outline-offset: -1px;
    transform-style: preserve-3d;
}

/* Corner arcs — far end (top of field-surface, far in perspective) */
.field-surface::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border: 2.5px solid rgba(255,255,255,0.82);
    border-top: none;
    border-left: none;
    border-radius: 0 0 100% 0;
    top: -1px;
    left: -1px;
}

.field-surface::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border: 2.5px solid rgba(255,255,255,0.82);
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 100%;
    top: -1px;
    right: -1px;
}

/* ── PITCH MARKINGS ────────────────────────────────────────── */
/* Field: 1240px wide (= pitch length 105m) × 820px tall (= pitch width 68m) */
/* All markings white at ~0.85 opacity                                         */

.field-center-line,
.field-center-circle-mark,
.field-center-spot-mark,
.field-penalty-left,
.field-goal-left,
.field-spot-left,
.field-penalty-right,
.field-goal-right,
.field-spot-right { position: absolute; }

/* Halfway line — vertical, at 50% of width (pitch length) */
.field-center-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2.5px;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
}

/* Center circle — r=9.15m → 9.15/68×820 ≈ 110px radius */
.field-center-circle-mark {
    width: 220px;
    height: 220px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Center spot */
.field-center-spot-mark {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* ── PENALTY AREAS ─────────────────────────────────────────── */
/* Penalty box: 16.5m deep → 16.5/105×1240 = 195px            */
/*              40.32m wide → 40.32/68×820  = 486px            */
/* Goal box:    5.5m deep  → 5.5/105×1240  = 65px             */
/*              18.32m wide → 18.32/68×820 = 221px             */
/* Penalty spot: 11m from line → 11/105×1240 = 130px           */

.field-penalty-left {
    left: 0;
    width: 195px;
    height: 486px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-left: none;
    top: 50%;
    transform: translateY(-50%);
}

.field-goal-left {
    left: 0;
    width: 65px;
    height: 221px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-left: none;
    top: 50%;
    transform: translateY(-50%);
}

.field-spot-left {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.88);
    border-radius: 50%;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
}

.field-penalty-right {
    right: 0;
    width: 195px;
    height: 486px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-right: none;
    top: 50%;
    transform: translateY(-50%);
}

.field-goal-right {
    right: 0;
    width: 65px;
    height: 221px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-right: none;
    top: 50%;
    transform: translateY(-50%);
}

.field-spot-right {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.88);
    border-radius: 50%;
    right: 130px;
    top: 50%;
    transform: translateY(-50%);
}

/* ── GOAL POSTS & NETS ─────────────────────────────────────── */
/* Goal opening: y=366..454 (88px = 7.32m), post height: 80px  */
/* Anchor (transform-origin: top) sits on field surface at post base */

.gpost, .gbar, .gnet { position: absolute; }

/* Posts — extend perpendicular to field surface (local +Z) */
.gpost {
    width: 4px;
    height: 80px;
    background: rgba(255,255,255,0.97);
    transform-origin: top center;
    transform: rotateX(90deg);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
/* Anchor at the goal-post base positions on the field */
.gp-lf { left: -2px; top: 366px; }
.gp-ln { left: -2px; top: 454px; }
.gp-rf { right: -2px; top: 366px; }
.gp-rn { right: -2px; top: 454px; }

/* Crossbar — elevated horizontally via translateZ (matches post height 80px) */
.gbar {
    width: 4px;
    height: 88px;
    background: rgba(255,255,255,0.97);
    transform: translateZ(80px);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.gb-l { left: -2px; top: 366px; }
.gb-r { right: -2px; top: 366px; }

/* Net — flat on field surface inside goal line */
.gnet {
    top: 366px;
    height: 88px;
    width: 44px;
    background:
        repeating-linear-gradient(0deg,   rgba(255,255,255,0.22) 0, rgba(255,255,255,0.22) 1.5px, transparent 1.5px, transparent 10px),
        repeating-linear-gradient(90deg,  rgba(255,255,255,0.22) 0, rgba(255,255,255,0.22) 1.5px, transparent 1.5px, transparent 10px);
}
.gn-l { left: 0; }
.gn-r { right: 0; }

/* ── HERO ANIMATIONS ────────────────────────────────────────── */
/*
 * Rules:
 * – Never animate opacity on elements with transform-style:preserve-3d
 *   (opacity < 1 flattens the 3D rendering context)
 * – Never animate transform on the perspective container (.hero-field-3d)
 * – Animate .field-surface transform only; both fill-mode handles the
 *   static rotateX(61deg) override cleanly
 */

@keyframes field-tilt-in {
    from { transform: rotateX(80deg) scale(0.88); }
    to   { transform: rotateX(61deg) scale(1);    }
}
/* Scaled-down variants for mobile — keeps all child elements proportional */
@keyframes field-tilt-in-sm {
    from { transform: rotateX(80deg) scale(0.54); }
    to   { transform: rotateX(61deg) scale(0.62); }
}
@keyframes field-tilt-in-xs {
    from { transform: rotateX(80deg) scale(0.35); }
    to   { transform: rotateX(61deg) scale(0.40); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.75; }
    50%       { opacity: 1;    }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes bar-expand {
    from { width: 0;    opacity: 0; }
    to   { width: 52px; opacity: 1; }
}

/* Field tilts forward from a steep angle and settles into place */
.field-surface {
    animation: field-tilt-in 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* Green atmosphere pulses slowly once the field has settled */
.hero::before {
    animation: glow-pulse 5s ease-in-out 2s infinite;
}

/* Text staggers in after the field has appeared */
.hero-title     { animation: fade-up    0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s  both; }
.hero-title-bar { animation: bar-expand 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.0s  both; }
.hero-subtitle  { animation: fade-up    0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.2s  both; }
.hero-buttons   { animation: fade-up    0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.4s  both; }

/* ── HERO OVERLAY & CONTENT ────────────────────────────────── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* Dark at top for text, clear in middle to show field, subtle vignette at bottom */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.62) 28%,
        rgba(0,0,0,0.18) 55%,
        rgba(0,0,0,0.38) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    text-align: center;
    margin-top: -40px; /* shift content up so field dominates lower half */
}

.hero-title {
    font-size: 4.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 0 2px 40px rgba(0,0,0,0.9), 0 0 80px rgba(0,0,0,0.5);
}

.hero-title-bar {
    width: 52px;
    height: 3px;
    background: rgba(255,255,255,0.55);
    margin: 1.2rem auto 1.4rem;
}

.hero-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2.6rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 0.8rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

.hero-btn.btn-white {
    background: var(--white);
    color: var(--primary);
}

.hero-btn.btn-white:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-btn.btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    background: rgba(255,255,255,0.04);
}

.hero-btn.btn-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ── SECTION TITLES ─────────────────────────────────────────– */
.section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* ── NEWS SECTION ───────────────────────────────────────────– */
.news-section {
    padding: 3.5rem 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 300px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.news-img {
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: flex-start;
}

.news-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

.news-img-1 { background: #111; }

.news-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    font-size: 0.78rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 1rem;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.2rem;
    transition: border-color 0.2s;
    width: fit-content;
}

.news-link:hover { border-color: var(--white); }

/* ── MATCHES SECTION ────────────────────────────────────────– */
.matches-section {
    padding: 3.5rem 0;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
}

/* Season Tabs */
.season-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.season-tab {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.season-tab.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.season-tab:hover:not(.active) {
    color: var(--accent-light);
}

.season-panel { display: none; }
.season-panel.active { display: block; }

/* Football App Match Card */
.match-app-card {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    margin-bottom: 1rem;
}

.match-app-card:hover { border-color: var(--border-light); }

.match-app-header {
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.match-competition-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.match-type-badge {
    background: var(--white);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.match-app-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 3rem;
    gap: 2rem;
}

.match-app-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.home-team { align-items: center; }
.away-team { align-items: center; }

.match-team-crest {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.match-team-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.match-team-crest.alt-crest {
    background: var(--primary-dark);
    border: 1px solid var(--border-light);
}

.crest-placeholder {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: none;
}

.alt-crest .crest-placeholder {
    color: var(--text-gray);
    display: flex;
}

.match-team-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--white);
}

.match-app-score-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.match-app-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
}

.score-sep {
    font-size: 2.5rem;
    color: var(--border-light);
    font-weight: 300;
}

.match-app-status {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.2rem 0.8rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.match-app-status.ft {
    background: var(--primary-dark);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
}

.match-app-status.live {
    background: #dc2626;
    color: var(--white);
}

.match-app-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.match-app-footer i { margin-right: 0.4rem; }

.match-details-link {
    margin-left: auto;
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s;
}

.match-details-link:hover { color: var(--white); }

/* Coming Soon — Matches */
.coming-soon-matches {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4rem 2rem;
    text-align: center;
}

.coming-soon-matches i {
    font-size: 2.5rem;
    color: var(--border-light);
    margin-bottom: 1.2rem;
    display: block;
}

.coming-soon-matches h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.coming-soon-matches p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ── MATCH DETAIL MODAL ─────────────────────────────────────– */
.match-detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.match-detail-modal.active { display: flex; }

.match-detail-content {
    background: var(--primary-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.4rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover { color: var(--white); }

/* Modal match header */
.modal-match-header {
    background: var(--primary-light);
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.modal-competition {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.modal-teams-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.modal-crest {
    width: 52px;
    height: 52px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-crest.home {
    background: transparent;
}

.modal-crest.away {
    background: transparent;
    border: none;
    color: var(--text-gray);
}

.modal-team-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.modal-score-block { text-align: center; }

.modal-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.modal-status {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray);
    background: var(--primary);
    border: 1px solid var(--border);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    display: inline-block;
}

.modal-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.modal-meta-row i { margin-right: 0.3rem; }

/* Modal Tabs */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.modal-tab {
    flex: 1;
    padding: 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.modal-tab.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.modal-tab:hover:not(.active) { color: var(--accent-light); }

.modal-tab-panel {
    display: none;
    padding: 1.5rem;
}

.modal-tab-panel.active { display: block; }

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child { border-bottom: none; }

.detail-label { font-size: 0.85rem; color: var(--text-gray); }
.detail-value { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.detail-value.winner { color: var(--win); }

.coming-soon-tab {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-gray);
}

.coming-soon-tab i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
    opacity: 0.5;
}

.coming-soon-tab p {
    font-size: 0.9rem;
}

/* ── GOALS TIMELINE ─────────────────────────────────────────── */
.goals-timeline { padding: 0.25rem 0; }

.goals-header-row {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    padding: 0.6rem 0 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
}

.goals-team-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--text-gray);
}

.goals-team-lbl.align-right { text-align: right; }

.goal-row {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.goal-time-col {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-gray);
    text-align: center;
}

.goal-home-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    padding-right: 0.5rem;
}

.goal-away-col {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-left: 0.5rem;
}

.goal-ball { font-size: 0.65rem; color: var(--white); }

.goal-score-pill {
    font-size: 0.73rem;
    font-weight: 700;
    background: var(--primary-light);
    border: 1px solid var(--border);
    padding: 0.12rem 0.45rem;
    border-radius: 20px;
    color: var(--white);
    white-space: nowrap;
}

.goal-scorer { font-size: 0.85rem; color: var(--white); }

/* ── LINEUP TAB ─────────────────────────────────────────────── */
.hidden { display: none !important; }

.lineup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lineup-player { border-bottom: 1px solid var(--border); }

.lineup-player-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.lineup-player-btn:hover .lineup-player-name { color: rgba(255,255,255,0.6); }

.lineup-player-name {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.lineup-chevron-right {
    font-size: 0.7rem;
    color: var(--text-gray);
}

/* ── PLAYER PROFILE ─────────────────────────────────────────── */
.player-profile-view { padding: 0; }

.profile-back-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0.75rem 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.profile-back-btn:hover { color: var(--white); }

.player-profile-card { padding: 0 0 1rem; }

.profile-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    padding-bottom: 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
}

.profile-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.profile-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--text-gray);
    text-transform: uppercase;
}

.profile-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* ── SQUAD SECTION ──────────────────────────────────────────– */
.teams-section {
    padding: 3.5rem 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
}

/* ── COMING SOON GENERIC ────────────────────────────────────– */
.coming-soon-section {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4.5rem 2rem;
    text-align: center;
}

.coming-soon-section i {
    font-size: 2.5rem;
    color: var(--border-light);
    margin-bottom: 1.2rem;
    display: block;
}

.coming-soon-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.coming-soon-section p {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 480px;
    margin: 0 auto;
}

/* ── TICKETS ────────────────────────────────────────────────– */
.tickets-section {
    padding: 3.5rem 0;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
}

/* ── SHOP ───────────────────────────────────────────────────– */
.shop-section {
    padding: 3.5rem 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
}

/* ── CLUB INFO ──────────────────────────────────────────────– */
.support-section {
    padding: 3.5rem 0;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
}

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

.info-box {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.8rem;
    transition: border-color 0.2s;
}

.info-box:hover { border-color: var(--border-light); }

.info-box h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.info-box h4 i { color: var(--text-gray); }

.info-box p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.2rem;
    transition: border-color 0.2s;
}

.info-link:hover { border-color: var(--white); }

.info-link.disabled {
    color: var(--text-gray);
    cursor: not-allowed;
    border-color: var(--border);
}

.contact-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.info-link.whatsapp { color: var(--text-gray); }
.info-link.whatsapp:hover { color: var(--white); }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.contact-details i { margin-right: 0.5rem; }

/* ── FOOTER ─────────────────────────────────────────────────– */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 24px 2rem;
    display: flex;
    gap: 5rem;
}

.footer-brand {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    flex: 0 0 260px;
}

.footer-crest {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-crest-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: none;
}

.footer-brand h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-gray);
}

.footer-email {
    margin-top: 0.6rem;
}

.footer-email a {
    font-size: 0.82rem;
    color: var(--text-gray);
    transition: color 0.2s;
}

.footer-email a:hover { color: var(--white); }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    flex: 1;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.social-list { gap: 0.9rem !important; }

.social-list a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.social-list i { width: 1rem; }

.fab.fa-x-twitter {
    color: var(--white) !important;
}

.fa-x-twitter {
    color: var(--white) !important;
}

/* Footer Social Icons Bar */
.footer-socials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    transition: color 0.2s;
    min-width: 80px;
    text-align: center;
}

.social-icon-link:hover { color: var(--white); }

.social-icon-link i { font-size: 1.5rem; }

.social-icon-link span {
    font-size: 0.72rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────– */
@media (max-width: 1100px) {
    .hero-title { font-size: 2.8rem; }

    .footer-main { flex-direction: column; gap: 2.5rem; }
    .footer-brand { flex: none; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .match-app-body { padding: 1.5rem; }
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }

    .main-nav.open { max-height: 400px; }

    .main-nav.open .nav-link {
        padding: 1rem 1.5rem;
        border-left: 2px solid transparent;
        border-bottom: 1px solid var(--border);
    }

    .main-nav.open .nav-link:hover {
        border-left-color: var(--white);
        background: var(--primary-light);
    }

    .search-btn, .menu-btn { display: block; }

    .header-inner { position: relative; }

    .hero { min-height: 480px; padding: 3.5rem 16px 6rem; }
    .hero-title { font-size: 2.6rem; letter-spacing: 2px; }
    .hero-content { margin-top: -20px; }
    /* Scale the whole surface down — child elements scale with it */
    .field-surface {
        width: 1240px; height: 820px;
        transform: rotateX(61deg) scale(0.62);
        animation: field-tilt-in-sm 2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-img { min-height: 200px; }

    .match-app-body {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1rem;
        text-align: center;
    }

    .match-app-score-block { order: -1; }
    .match-app-score { font-size: 2.5rem; }

    .match-app-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 1rem 1.5rem;
    }

    .match-details-link { margin-left: 0; }

    .season-tab { padding: 0.8rem 1.2rem; font-size: 0.8rem; }

    .modal-teams-row { grid-template-columns: 1fr auto 1fr; gap: 1rem; }
    .modal-score { font-size: 2rem; }

    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-socials { gap: 1.5rem; }

    .section-container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .hero { min-height: 400px; padding: 2.5rem 16px 5rem; }
    .hero-title { font-size: 1.9rem; letter-spacing: 1px; }
    .hero-content { margin-top: 0; }
    .hero-subtitle { font-size: 0.68rem; letter-spacing: 4px; }
    .hero-btn { padding: 0.65rem 1.4rem; font-size: 0.78rem; }
    /* Scale the whole surface down — child elements scale with it */
    .field-surface {
        width: 1240px; height: 820px;
        transform: rotateX(61deg) scale(0.40);
        animation: field-tilt-in-xs 2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .match-app-header { padding: 0.6rem 1rem; }
    .match-team-crest { width: 48px; height: 48px; }
    .match-team-name { font-size: 0.8rem; }

    .footer-cols { grid-template-columns: 1fr; }
    .footer-main { padding: 2rem 16px; }

    .season-tabs { overflow-x: auto; }
    .season-tab { white-space: nowrap; }
}

/* ── RTL (ARABIC) SUPPORT ─────────────────────────────────– */
html[dir="rtl"],
body.rtl-mode {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .header-inner,
body.rtl-mode .header-inner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-right,
body.rtl-mode .header-right {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .footer-brand,
body.rtl-mode .footer-brand {
    flex-direction: row-reverse;
}

html[dir="rtl"] .article-category,
body.rtl-mode .article-category {
    border-left: none;
    border-right: 3px solid var(--accent);
    padding-left: 0;
    padding-right: 0.8rem;
}

html[dir="rtl"] .article-lead,
body.rtl-mode .article-lead {
    border-left: none;
    border-right: 3px solid var(--accent);
    padding-left: 1.2rem;
    padding-right: 0;
}

html[dir="rtl"] .article-list li,
body.rtl-mode .article-list li {
    padding-left: 0;
    padding-right: 1.8rem;
}

html[dir="rtl"] .article-list li::before,
body.rtl-mode .article-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .match-details-link,
body.rtl-mode .match-details-link {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .news-card,
body.rtl-mode .news-card {
    grid-template-columns: 1fr 380px;
}

html[dir="rtl"] .news-category-badge,
body.rtl-mode .news-category-badge {
    left: auto;
    right: 1rem;
}

html[dir="rtl"] .sidebar-info-row,
body.rtl-mode .sidebar-info-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-links,
body.rtl-mode .contact-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .article-layout,
body.rtl-mode .article-layout {
    grid-template-columns: 320px 1fr;
}

@media (max-width: 1100px) {
    html[dir="rtl"] .article-layout,
    body.rtl-mode .article-layout {
        grid-template-columns: 1fr;
    }
}

html[dir="rtl"] .hero-buttons,
body.rtl-mode .hero-buttons {
    flex-direction: row-reverse;
}

/* ── FLOATING MAIN MENU ──────────────────────────────────── */
.float-menu-wrap {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 600;
}

.float-menu-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 1px solid var(--border-light);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.float-menu-btn:hover {
    background: var(--border-light);
    transform: scale(1.06);
}

.float-menu-panel {
    position: absolute;
    bottom: 64px;
    left: 0;
    background: var(--primary-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    width: 220px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}

.float-menu-panel.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.float-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.float-menu-header button {
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.float-menu-header button:hover { color: var(--white); }

.float-menu-links {
    padding: 0.5rem 0;
}

.float-menu-links li a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1.2rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.float-menu-links li a:hover {
    color: var(--white);
    background: var(--primary-light);
    padding-left: 1.5rem;
}

.float-menu-links i {
    width: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.float-menu-top {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-top: 1px solid var(--border);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s;
    text-align: left;
}

.float-menu-top:hover { background: var(--primary-light); }

/* RTL float menu */
html[dir="rtl"] .float-menu-wrap,
body.rtl-mode .float-menu-wrap {
    left: auto;
    right: 2rem;
}

html[dir="rtl"] .float-menu-panel,
body.rtl-mode .float-menu-panel {
    left: auto;
    right: 0;
}

html[dir="rtl"] .float-menu-links li a,
body.rtl-mode .float-menu-links li a {
    flex-direction: row-reverse;
}

html[dir="rtl"] .float-menu-links li a:hover,
body.rtl-mode .float-menu-links li a:hover {
    padding-left: 1.2rem;
    padding-right: 1.5rem;
}

html[dir="rtl"] .float-menu-top,
body.rtl-mode .float-menu-top {
    flex-direction: row-reverse;
    text-align: right;
}

/* ── X / TWITTER ICON FORCE WHITE ────────────────────────── */
.footer-socials .social-icon-link i.fa-x-twitter,
.footer-cols .social-list a i.fa-x-twitter,
.article-social-share a i.fa-x-twitter,
.sidebar-social a i.fa-x-twitter {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
}

/* Squad Grid */
.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.squad-card {
    background: var(--card-bg, #1a1a1a);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.squad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.squad-card-photo {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.squad-photo-placeholder i {
    font-size: 5rem;
    color: rgba(255,255,255,0.15);
}

.squad-card-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.squad-card-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent, #e8c84a);
    letter-spacing: 0.05em;
}

.squad-card-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.squad-card-position {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.squad-card-nationality {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.2rem;
}

.news-img-2 {
    background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 100%);
}
