*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --pitch: #883CF0;
    --pitch-dark: #23133a;
    --pitch-light: #2e9e52;
    --gold: #883CF0;
    --gold-light: #883cf0e0;
    --charcoal: #191127;
    --off-white: #f2ebf5;
    --cream: #d6d6d6;
    --red-card: #e63946;
    --sky: #4da6c9;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--charcoal);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(170deg, #180f26 0%, #191127 40%, #3a1c63 70%, #180f26 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(255, 255, 255, 0.02) 58px, rgba(255, 255, 255, 0.02) 60px),
      radial-gradient(ellipse at 50% 120%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-pitch-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
  }

  .hero-pitch-lines .center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-pitch-lines .center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-pitch-lines .halfway-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
  }

  .hero-ball {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0.03;
    right: -100px;
    bottom: -100px;
    animation: floatBall 8s ease-in-out infinite;
  }

  @keyframes floatBall {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -30px) rotate(15deg); }
  }

  .hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
  }

  .hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--red-card);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 14rem);
    line-height: 0.85;
    letter-spacing: -2px;
    color: var(--off-white);
    text-shadow: 0 0 80px rgba(152, 67, 212, 0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
  }

  .hero h1 .dot-ms {
    color: var(--gold);
    font-size: 0.5em;
    vertical-align: middle;
  }

  .hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
  }

  .hero-cta {
    margin-top: 50px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
  }

  .btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(149, 67, 212, 0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid #5e309d;
  }

  .btn-outline:hover {
    border-color: var(--off-white);
    background: #1f1232;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 1.2s both;
  }

  .scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ========== NAV ========== */
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
  }

  .nav.scrolled {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 40px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--off-white);
    text-decoration: none;
  }

  .nav-logo .accent { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
  }

  .nav-links a:hover { color: var(--gold); }

  /* ========== SECTIONS ========== */
  section {
    padding: 100px 5%;
  }

  .section-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 40px;
  }

  /* ========== LIVE SCORES ========== */
  .scores-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, #180f26 100%);
  }

  .scores-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .league-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }

  .league-tab {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    background: #1f1232;
    border: 1px solid #3a1c63;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
  }

  .league-tab:hover { color: var(--off-white); border-color: #5e309d; }

  .league-tab.active {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
  }

  .scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
  }

  .match-card {
    background: #1f1232;
    border: 1px solid #3a1c63;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .match-card:hover {
    background: #2a1647;
    border-color: #5e309d;
    transform: translateY(-3px);
  }

  .match-status {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .match-status.live { color: var(--red-card); }
  .match-status.ft { color: rgba(255,255,255,0.4); }
  .match-status.upcoming { color: var(--sky); }

  .match-status .live-dot {
    width: 6px;
    height: 6px;
    background: var(--red-card);
    border-radius: 50%;
    animation: pulse 1s infinite;
  }

  .match-teams {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .match-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .team-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .team-crest {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .team-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .team-score {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    min-width: 30px;
    text-align: right;
  }

  .match-meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #3a1c63;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    justify-content: space-between;
  }

  /* ========== STANDINGS ========== */
  .standings-section {
    background: var(--charcoal);
  }

  .standings-table-wrapper {
    overflow-x: auto;
    border: 1px solid #3a1c63;
  }

  .standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
  }

  .standings-table th {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid #3a1c63;
    background: #2a1647;
    white-space: nowrap;
  }

  .standings-table th.num {
    text-align: center;
    width: 46px;
  }

  .standings-table td {
    padding: 14px;
    border-bottom: 1px solid #3a1c63;
    font-size: 0.9rem;
    transition: background 0.3s;
  }

  .standings-table td.num {
    text-align: center;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.5);
  }

  .standings-table tr:hover td {
    background: rgba(255,255,255,0.03);
  }

  .standings-table tr.champions-zone td {
    border-left: 3px solid var(--pitch-light);
  }

  .standings-table tr.europa-zone td {
    border-left: 3px solid var(--sky);
  }

  .standings-table tr.relegation-zone td {
    border-left: 3px solid var(--red-card);
  }

  .standings-pos {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: center;
  }

  .standings-team {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .standings-team .team-crest {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
  }

  .form-indicator {
    display: flex;
    gap: 3px;
  }

  .form-dot {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
  }

  .form-dot.w { background: var(--pitch-light); }
  .form-dot.d { background: rgba(255,255,255,0.2); }
  .form-dot.l { background: var(--red-card); }

  .pts-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
  }

  /* ========== PLAYER SPOTLIGHT ========== */
  .spotlight-section {
    background: linear-gradient(170deg, #180f26 0%, #191127 50%, #180f26 100%);
    position: relative;
    overflow: hidden;
  }

  .spotlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 67, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .players-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .player-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid #3a1c63;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }

  .player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .player-card:hover::before { opacity: 1; }
  .player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: #5e309d;
  }

  .player-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: #7c5cfc1f;
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
  }

  .player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    border: 2px solid #5e309d;
  }

  .player-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .player-position {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
  }

  .player-stat {
    text-align: center;
  }

  .player-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
  }

  .player-stat-label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
  }

  /* ========== INTERACTIVE QUIZ ========== */
  .quiz-section {
    background: linear-gradient(180deg, #191127 0%, var(--pitch-dark) 100%);
    text-align: center;
  }

  .quiz-container {
    max-width: 700px;
    margin: 0 auto;
  }

  .quiz-question {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 36px;
    min-height: 80px;
  }

  .quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .quiz-option {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 18px 20px;
    background: #23133a;
    border: 1px solid #3a1c63;
    color: var(--off-white);
    cursor: pointer;
    transition: all 0.3s;
  }

  .quiz-option:hover:not(.disabled) {
    background: #1f1232;
    border-color: var(--gold);
  }

  .quiz-option.correct {
    background: rgba(46,158,82,0.2);
    border-color: var(--pitch-light);
    color: var(--pitch-light);
  }

  .quiz-option.wrong {
    background: rgba(230,57,70,0.15);
    border-color: var(--red-card);
    color: var(--red-card);
  }

  .quiz-option.disabled { pointer-events: none; }

  .quiz-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
  }

  .quiz-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
  }

  .quiz-progress-dot.active { background: var(--gold); transform: scale(1.2); }
  .quiz-progress-dot.answered-correct { background: var(--pitch-light); }
  .quiz-progress-dot.answered-wrong { background: var(--red-card); }

  .quiz-score {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
  }

  .quiz-score-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .quiz-restart {
    margin-top: 24px;
  }

  /* ========== STATS COUNTER ========== */
  .stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: var(--pitch-dark);
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }

  .stat-item {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid #3a1c63;
    transition: background 0.3s;
  }

  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: #1f1232; }

  .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }

  /* ========== FORMATIONS ========== */
  .formations-section {
    background: var(--charcoal);
  }

  .formation-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .formation-picker {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .formation-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 18px;
    background: #1f1232;
    border: 1px solid #3a1c63;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
  }

  .formation-btn:hover { color: var(--off-white); border-color: #5e309d; }

  .formation-btn.active {
    background: #2a1647;
    border-color: var(--gold);
    color: var(--gold);
  }

  .pitch-display {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 3/4;
    max-height: 560px;
    background: linear-gradient(180deg, var(--pitch) 0%, var(--pitch-dark) 100%);
    border: 2px solid #3a1c63;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }

  .pitch-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 11%, rgba(255,255,255,0.03) 11%, rgba(255,255,255,0.03) 11.5%);
    pointer-events: none;
  }

  .pitch-markings {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .pitch-markings .half-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255,255,255,0.2);
  }

  .pitch-markings .center-circle-pitch {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .pitch-markings .penalty-box-top {
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 18%;
    border: 2px solid rgba(255,255,255,0.2);
    border-top: none;
  }

  .pitch-markings .penalty-box-bottom {
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 18%;
    border: 2px solid rgba(255,255,255,0.2);
    border-bottom: none;
  }

  .pitch-markings .goal-top {
    position: absolute;
    top: 0;
    left: 38%;
    right: 38%;
    height: 6%;
    border: 2px solid rgba(255,255,255,0.2);
    border-top: none;
  }

  .pitch-markings .goal-bottom {
    position: absolute;
    bottom: 0;
    left: 38%;
    right: 38%;
    height: 6%;
    border: 2px solid rgba(255,255,255,0.2);
    border-bottom: none;
  }

  .player-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--charcoal);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    cursor: default;
    z-index: 2;
  }

  .player-dot.gk {
    background: var(--sky);
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 60px 5% 40px;
    background: #060606;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
  }

  .footer-brand {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--off-white);
  }

  .footer-brand .accent { color: var(--gold); }

  .footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-links-group a {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-weight: 300;
  }

  .footer-links-group a:hover { color: var(--off-white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
  }

  /* ========== ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .scores-grid { grid-template-columns: 1fr; }
    .quiz-options { grid-template-columns: 1fr; }
    .formation-wrapper { flex-direction: column; }
    .formation-picker { flex-direction: row; flex-wrap: wrap; }
    .formation-picker .formation-btn { flex: 1; min-width: 80px; text-align: center; }
    .stats-banner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    section { padding: 60px 5%; }
  }