*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blue: #3aaedc;
    --blue-dark: #1a7aaa;
    --blue-deeper: #0d5a82;
    --blue-light: #e0f4fc;
    --blue-xlight: #f0faff;
    --black: #111111;
    --near-black: #1a1a1a;
    --dark: #1c1c2a;
    --gray-50: #f7f8fa;
    --gray-100: #efefef;
    --gray-200: #e0e0e0;
    --gray-400: #999;
    --gray-600: #666;
    --white: #ffffff;
    --red: #d63031;
    --display: 'Barlow Condensed', Impact, sans-serif;
    --serif: 'Barlow Condensed', Impact, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
  }
  body { font-family: var(--body); background: var(--white); color: var(--black); line-height: 1.5; }

  .nav-social { display: flex; align-items: center; justify-content: space-between; margin-left: auto; width: 380px; flex-shrink: 0; }
  .nav-social-icons { display: flex; align-items: center; gap: 16px; }
  .nav-social-icons a { display: flex; align-items: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
  .nav-social-icons a:hover { color: var(--blue); }
  .nav-social-icons svg { width: 24px; height: 24px; fill: currentColor; }
  .nav-bpm-link { opacity: 0.75; transition: opacity 0.15s; display: flex; align-items: center; }
  .nav-bpm-link:hover { opacity: 1; }
  .nav-bpm-logo { height: 30px; width: auto; display: block; }

  /* HEADER */
  #site-header { position: sticky; top: 0; z-index: 200; }
  header { background: var(--black); border-bottom: 3px solid var(--blue); }
  .header-top { max-width: 1280px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 20px; }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
  .logo-img-wrap { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .logo-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .logo-wordmark { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
  .logo-main { font-family: var(--display); font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 1px; }
  .logo-sub { font-size: 10px; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
  .header-right { display: flex; align-items: center; gap: 20px; margin-left: auto; width: 380px; flex-shrink: 0; }
  .header-search { flex: 1; }
  .header-search input { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 8px 14px; font-family: var(--body); font-size: 13px; border-radius: 20px; outline: none; transition: border-color 0.15s; }
  .header-search input:focus { border-color: var(--blue); }
  .header-search input::placeholder { color: rgba(255,255,255,0.3); }
  .btn-follow { background: var(--blue); color: var(--black); border: none; padding: 9px 20px; font-family: var(--body); font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 20px; white-space: nowrap; transition: background 0.15s; }
  .btn-follow:hover { background: #5dc5ea; }

  /* NAV */
  nav { background: var(--near-black); border-bottom: 2px solid var(--gray-400); }
  .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; overflow-x: auto; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-inner a { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 15px 16px; white-space: nowrap; display: block; transition: color 0.15s; border-bottom: 3px solid transparent; }
  .nav-inner a:hover, .nav-inner a.active { color: #fff; border-bottom-color: var(--blue); }

  /* TICKER */
  .ticker { background: var(--blue); overflow: hidden; height: 32px; display: flex; align-items: center; }
  .ticker-label { background: var(--black); color: var(--blue); font-family: var(--display); font-size: 13px; font-weight: 700; padding: 0 14px; height: 100%; display: flex; align-items: center; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }
  .ticker-content { display: flex; align-items: center; gap: 32px; padding: 0 20px; font-size: 12px; font-weight: 600; color: var(--black); white-space: nowrap; overflow: hidden; }
  .ticker-sep { color: rgba(0,0,0,0.35); font-size: 10px; }

  /* HERO */
  .hero-wrap { max-width: 1280px; margin: 24px auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
  .hero-story { position: relative; aspect-ratio: 3/2; border-radius: 12px; overflow: hidden; background: var(--dark); }
  .hero-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #0d1a2a 0%, #1a3a5c 50%, #0d2a3a 100%); display: flex; align-items: center; justify-content: center; }
  .hero-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; transition: opacity 0.35s ease; }
  .hero-dots { display: flex; gap: 8px; margin-top: 14px; }
  .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
  .hero-dot.active { background: #fff; transform: scale(1.35); }
  .hero-tags { display: flex; gap: 8px; margin-bottom: 12px; }
  .tag { display: inline-block; font-family: var(--display); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 3px; letter-spacing: 1px; text-transform: uppercase; }
  .tag-blue { background: var(--blue); color: var(--black); }
  .tag-dark { background: rgba(255,255,255,0.15); color: #fff; }
  .tag-red { background: var(--red); color: #fff; }
  .hero-h1 { font-family: var(--display); font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; color: #fff; line-height: 0.95; letter-spacing: 1px; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5); }
.hero-foot { display: flex; align-items: center; gap: 16px; }
  .hero-foot time { font-size: 12px; color: rgba(255,255,255,0.45); }
  .btn-story { background: var(--blue); color: var(--black); text-decoration: none; padding: 9px 22px; border-radius: 6px; font-size: 13px; font-weight: 700; display: inline-block; transition: background 0.15s; }
  .btn-story:hover { background: #5dc5ea; }

  /* SCORES SIDE */
  .scores-side { display: flex; flex-direction: column; background: var(--gray-50); border-radius: 12px; border: 1px solid var(--gray-200); overflow: hidden; }
  .scores-mobile { display: none; }
  .scores-side-head { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; background: var(--black); }
  .scores-side-head h3 { font-family: var(--display); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 1px; }
  .scores-side-head a { font-size: 11px; color: var(--blue); text-decoration: none; font-weight: 600; }
  .score-comp-label { font-size: 10px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 1.5px; padding: 10px 16px 4px; background: var(--white); }
  .score-row { display: flex; align-items: center; padding: 10px 16px; gap: 6px; border-bottom: 1px solid var(--gray-100); background: var(--white); }
  .st { flex: 1; font-size: 12px; font-weight: 500; color: var(--black); }
  .st.right { text-align: right; }
  .sc { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--blue-deeper); text-align: center; min-width: 60px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
  .sc small { font-family: var(--body); font-size: 9px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
  .scores-side-foot { padding: 12px 16px; background: var(--blue-xlight); text-align: center; margin-top: auto; }
  .scores-side-foot a { font-size: 12px; font-weight: 700; color: var(--blue-dark); text-decoration: none; }

  /* SHORTCUT BAR */
  .comps-bar { background: var(--black); border-bottom: 3px solid var(--blue); position: relative; }
  .comps-bar::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 48px; background: linear-gradient(to right, transparent, var(--black)); pointer-events: none; z-index: 1; }
  .comps-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; overflow-x: auto; scrollbar-width: none; cursor: grab; }
  .comps-bar-inner:active { cursor: grabbing; }
  .comps-bar-inner::-webkit-scrollbar { display: none; }
  .comp-bar-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-right: 1px solid rgba(255,255,255,0.08); text-decoration: none; flex: 1; transition: background 0.15s; white-space: nowrap; text-align: center; }
  .comp-bar-card:hover { background: rgba(58,174,220,0.12); }
  .comp-bar-card .comp-icon { font-size: 22px; flex-shrink: 0; background: #fff; border-radius: 6px; padding: 4px; display: flex; align-items: center; justify-content: center; }
  .comp-bar-card .comp-icon img { display: block; }
  .comp-bar-name { font-family: var(--display); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.5px; line-height: 1.2; }
  .comp-bar-season { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 2px; }

  /* MAIN LAYOUT */
  /* LEADERBOARD AD */
  .leaderboard-ad { display: flex; justify-content: center; align-items: center; }
  .leaderboard-ad-link { display: block; line-height: 0; }
  .leaderboard-ad img { max-width: 100%; height: auto; display: block; }

  .page-wrap { max-width: 1280px; margin: 32px auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 284px; gap: 32px; }
  .main-col { display: flex; flex-direction: column; gap: 40px; }
  .aside-col { display: flex; flex-direction: column; gap: 24px; }

  /* SECTION TITLE */
  .sh { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .sh-bar { width: 5px; min-height: 22px; background: var(--blue); border-radius: 2px; }
  .sh h2 { font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--black); letter-spacing: 1px; }
  .sh a { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--blue-dark); text-decoration: none; }
  .sh a:hover { color: var(--blue); }
  .sh-jumps { flex: 1; display: flex; justify-content: center; align-items: center; gap: 20px; }
  .sh-jumps a { margin-left: 0; white-space: nowrap; }

  /* NEWS LAYOUT */
  .news-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .news-card-lg { border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); display: flex; flex-direction: column; transition: border-color 0.2s; }
  .news-card-lg:hover { border-color: var(--blue); }
  .ncl-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #0d2a3a, #1a4a6a); display: flex; align-items: center; justify-content: center; color: rgba(58,174,220,0.4); font-size: 11px; position: relative; overflow: hidden; }
  .ncl-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
  .nc-tag { font-family: var(--display); font-size: 11px; font-weight: 700; color: var(--blue-dark); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
  .nc-h { font-family: var(--serif); font-size: 18px; font-weight: 700; line-height: 1.25; color: var(--black); margin-bottom: 8px; }
  .nc-h a { text-decoration: none; color: inherit; }
  .nc-h a:hover { color: var(--blue-dark); }
  .nc-p { font-size: 13px; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 10px; }
  .nc-meta { font-size: 11px; color: var(--gray-400); font-weight: 500; }
  .news-aside-list { display: flex; flex-direction: column; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
  .nal-item { display: flex; gap: 12px; padding: 13px 14px; border-bottom: 1px solid var(--gray-100); align-items: start; transition: background 0.15s; text-decoration: none; }
  .nal-item:last-child { border-bottom: none; }
  .nal-item:hover { background: var(--blue-xlight); }
  .nal-img { width: 68px; height: 50px; background: linear-gradient(135deg, #0d2a3a, #1a4a6a); border-radius: 5px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: rgba(58,174,220,0.5); font-size: 9px; }
  .nal-item h4 { font-family: var(--serif); font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--black); margin-bottom: 4px; }
  .nal-item h4 a { text-decoration: none; color: inherit; }
  .nal-item h4 a:hover { color: var(--blue-dark); }

  /* SIDEBAR WIDGETS */
  .widget { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
  .widget-head { padding: 12px 16px; background: var(--black); display: flex; justify-content: space-between; align-items: center; }
  .widget-head h3 { font-family: var(--display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: 1px; }
  .widget-head a { font-size: 11px; color: var(--blue); text-decoration: none; font-weight: 600; }
  .tr-item { display: flex; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--gray-100); align-items: start; transition: background 0.15s; }
  .tr-item:last-child { border-bottom: none; }
  .tr-item:hover { background: var(--blue-xlight); }
  .tr-n { font-family: var(--display); font-size: 30px; font-weight: 800; color: var(--gray-200); line-height: 1; width: 26px; flex-shrink: 0; }
  .tr-txt h4 { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.3; margin-bottom: 3px; }
  .tr-txt h4 a { text-decoration: none; color: inherit; }
  .tr-txt h4 a:hover { color: var(--blue-dark); }
  .tr-txt span { font-size: 11px; color: var(--gray-400); }

  /* STANDINGS */
  .stbl { width: 100%; border-collapse: collapse; font-size: 12px; }
  .stbl th { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); padding: 5px 4px; text-align: center; border-bottom: 1px solid var(--gray-200); }
  .stbl th:nth-child(2) { text-align: left; }
  .stbl td { padding: 6px 4px; text-align: center; border-bottom: 1px solid var(--gray-100); font-size: 12px; color: var(--black); }
  .stbl td:nth-child(2) { text-align: left; font-weight: 600; }
  .stbl tr:last-child td { border-bottom: none; }
  .stbl tr.top td { background: var(--blue-xlight); }
  .stbl .pts { font-weight: 700; color: var(--blue-deeper); }

  /* FIXTURES */
  .fix-item { padding: 11px 14px; border-bottom: 1px solid var(--gray-100); }
  .fix-item:last-child { border-bottom: none; }
  .fix-comp { font-family: var(--display); font-size: 11px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
  .fix-teams { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
  .fix-date { font-size: 11px; color: var(--gray-600); }

  /* COMPETITIONS */
  .comps-section { background: var(--black); padding: 32px 24px; border-radius: 10px; }
  .comps-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .comps-sh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .comps-sh h2 { font-family: var(--display); font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 2px; }
  .comps-sh a { font-size: 12px; color: var(--blue); text-decoration: none; font-weight: 600; }
  .comps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .comp-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 22px 18px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all 0.2s; }
  .comp-card:hover { background: rgba(58,174,220,0.1); border-color: var(--blue); }
  .comp-icon { font-size: 30px; }
  .comp-name { font-family: var(--display); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: 0.5px; }
  .comp-season { font-size: 11px; color: rgba(255,255,255,0.4); }
  .comp-cta { font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 6px; }

  /* VIDEOS */
  .vids-wrap { max-width: 1280px; margin: 40px auto 48px; padding: 0 24px; }
  .home-vids-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
  .vc { border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); transition: border-color 0.2s; }
  .vc:hover { border-color: var(--blue); }
  .vc-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #0d2a3a, #1a4a6a); position: relative; display: flex; align-items: center; justify-content: center; color: rgba(58,174,220,0.3); font-size: 10px; }
  .vc-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .vc-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
  .vc-btn:hover { background: #5dc5ea; }
  .vc-btn svg { fill: var(--black); width: 14px; height: 14px; margin-left: 3px; }
  .vc-dur { position: absolute; bottom: 6px; right: 8px; background: rgba(0,0,0,0.75); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 3px; }
  .vc-body { padding: 12px; }
  .vc-body h4 { font-family: var(--serif); font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.3; margin-bottom: 5px; }
  .vc-body h4 a { text-decoration: none; color: inherit; }
  .vc-body h4 a:hover { color: var(--blue-dark); }
  .vc-meta { font-size: 11px; color: var(--gray-400); }

  /* MAGAZINE BANNER */
  .mag-banner-link { display: block; border-radius: 10px; overflow: hidden; margin-bottom: 20px; transition: opacity 0.15s; flex-shrink: 0; }
  .mag-banner-link:hover { opacity: 0.88; }
  .mag-banner-img { width: 100%; height: auto; display: block; }

  /* MAGAZINE PAGE */
  .mag-hero { background: var(--black); border-bottom: 3px solid var(--blue); padding: 32px 24px 24px; }
  .mag-hero-inner { max-width: 1280px; margin: 0 auto; }
  .mag-hero .sh { margin-bottom: 8px; }
  .mag-hero .sh h2 { color: #fff; }
  .mag-sub { font-family: var(--body); font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
  .mag-wrap { max-width: 1280px; margin: 40px auto 60px; padding: 0 24px; }
  .mag-issue { margin-bottom: 48px; }
  .mag-issue-label { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--blue-dark); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
  .mag-flipbook { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

  /* FOOTER */
  footer { background: var(--near-black); border-top: 3px solid var(--blue); padding: 44px 24px 28px; }
  .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .footer-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .footer-top .logo-img-wrap { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; }
  .footer-top .logo-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .footer-brand { font-family: var(--display); font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 2px; }
  .footer-est { font-size: 11px; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
  .footer-links a:hover { color: var(--blue); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-wrap { grid-template-columns: 1fr; }
.hero-h1 { font-size: clamp(18px, 5vw, 26px); }
    .hero-body { padding: 16px 20px; }
    .hero-tags { margin-bottom: 8px; }
    .btn-story { font-size: 11px; padding: 6px 14px; }
    .scores-side { display: none; }
    .scores-mobile { display: block; margin: 24px 16px 0; border-radius: 12px; border: 1px solid var(--gray-200); overflow: hidden; }
    .scores-side { flex-direction: row; flex-wrap: wrap; }
    .page-wrap { grid-template-columns: 1fr; }
    .aside-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .comps-grid { grid-template-columns: repeat(2, 1fr); }
    .home-vids-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .news-layout { grid-template-columns: 1fr; }
    .aside-col { grid-template-columns: 1fr; }
    .header-search { display: none; }
    .btn-follow { font-size: 11px; padding: 6px 12px; }
    .comps-grid { grid-template-columns: 1fr 1fr; }
    .header-top { flex-wrap: wrap; gap: 10px; }
  }
  @media (max-width: 480px) {
    .home-vids-grid { grid-template-columns: 1fr; }
    .hero-wrap, .page-wrap, .vids-wrap, .comps-inner, .comps-bar-inner, .home-vids-grid { padding: 0 16px; }
    .logo-main { font-size: 20px; }
  }

  /* ARTICLE PAGE */
  .article-hero-wrap { position: relative; width: 100%; border-radius: 6px; overflow: hidden; background: var(--gray-100); margin-bottom: 0; }
  .article-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .article-caption { font-size: 11px; color: var(--gray-600); padding: 6px 0 24px; font-style: italic; line-height: 1.5; }
  .article-tag-row { margin-bottom: 14px; }
  .article-title { font-family: var(--serif); font-size: 30px; font-weight: 700; line-height: 1.25; color: var(--black); margin-bottom: 12px; }
  .article-meta { font-size: 13px; color: var(--gray-600); margin-bottom: 28px; border-bottom: 1px solid var(--gray-200); padding-bottom: 18px; }
  .article-meta strong { color: var(--black); }
  .article-body p { font-family: var(--body); font-size: 16px; line-height: 1.75; color: #333; margin-bottom: 18px; }
  .article-body a { color: var(--blue-dark); text-decoration: underline; }
  .related-card { display: flex; gap: 10px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; }
  .related-card:last-child { border-bottom: none; }
  .related-card:hover .related-title { color: var(--blue-dark); }
  .related-card-img { width: 80px; height: 60px; object-fit: cover; object-position: top; border-radius: 4px; flex-shrink: 0; display: block; margin-left: 8px; }
  .related-card-placeholder { width: 80px; height: 60px; border-radius: 4px; flex-shrink: 0; background: var(--blue-xlight); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--blue); font-family: var(--display); font-weight: 700; text-align: center; padding: 4px; margin-left: 8px; }
  .related-card-body { flex: 1; min-width: 0; }
  .related-title { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.3; margin-top: 4px; }

  /* SPINNER */
  @keyframes af-spin { to { transform: rotate(360deg); } }
  .spinner { display: flex; align-items: center; justify-content: center; width: 100%; padding: 32px 0; }
  .spinner::after { content: ''; width: 28px; height: 28px; border: 3px solid rgba(58,174,220,0.2); border-top-color: var(--blue); border-radius: 50%; animation: af-spin 0.7s linear infinite; }
  .spinner-row td { padding: 20px; text-align: center; border-bottom: none; }

  /* NEWS PAGE */
  .news-page-title { max-width: 1280px; margin: 24px auto 0; padding: 0 24px; }
  .news-page-title .sh { margin-bottom: 0; }

  /* Country flag chips (nations.html) */
  #country-bar { justify-content: center; }
  .cty-flag-wrap { background: none; padding: 0; min-width: unset; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .cty-flag { width: 40px; height: 40px; object-fit: cover; display: block; border-radius: 50%; }

  /* Competition filter bar */
  .news-comps-bar { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); margin-top: 12px; position: relative; }
  .news-comps-bar::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 48px; background: linear-gradient(to right, transparent, var(--black)); pointer-events: none; z-index: 1; }
  .news-comps-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; overflow-x: auto; scrollbar-width: none; cursor: grab; }
  .news-comps-inner:active { cursor: grabbing; }
  .news-comps-inner::-webkit-scrollbar { display: none; }
  .ncb-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px 22px 10px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 3px solid transparent; cursor: pointer; flex-shrink: 0; text-align: center; transition: background 0.15s, border-bottom-color 0.15s; user-select: none; }
  .ncb-item:hover { background: rgba(58,174,220,0.1); }
  .ncb-item.active { border-bottom-color: var(--red); }
  .ncb-icon { background: #fff; border-radius: 6px; padding: 5px; display: flex; align-items: center; justify-content: center; min-width: 42px; height: 40px; overflow: hidden; }
  .ncb-icon img { width: 32px; height: 30px; object-fit: contain; display: block; }
  .ncb-name { font-family: var(--display); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; line-height: 1.2; white-space: nowrap; }
  .ncb-item.active .ncb-name { color: #fff; }

  /* News grid */
  .news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .ncl-feat-badge { position: absolute; top: 10px; left: 10px; background: var(--blue); color: var(--black); font-family: var(--display); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 3px; letter-spacing: 1px; z-index: 1; }
  .news-empty { grid-column: 1/-1; text-align: center; padding: 64px 24px; font-size: 14px; color: var(--gray-400); font-family: var(--display); letter-spacing: 0.5px; }

  @media (max-width: 1024px) { .news-grid-3 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px)  { .news-grid-3 { grid-template-columns: 1fr; } }

  /* FIXTURES & RESULTS PAGE */
  .fx-sticky { position: sticky; top: 0; z-index: 100; box-shadow: 0 3px 10px rgba(0,0,0,0.18); }
  .day-selector-wrap { background: var(--gray-50); border-bottom: 2px solid var(--gray-200); }
  .day-selector { max-width: 1280px; margin: 0 auto; padding: 10px 24px; display: flex; overflow-x: auto; scrollbar-width: none; gap: 6px; cursor: grab; }
  .day-selector::-webkit-scrollbar { display: none; }
  .day-selector:active { cursor: grabbing; }
  .day-chip { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 8px 14px; border-radius: 8px; cursor: pointer; flex-shrink: 0; border: 2px solid transparent; transition: all 0.15s; min-width: 60px; text-align: center; user-select: none; }
  .day-chip:hover { background: var(--blue-xlight); border-color: var(--blue); }
  .day-chip.today:not(.active) { border-color: var(--blue); }
  .day-chip.active { background: var(--black); border-color: var(--black); }
  .day-chip-label { font-family: var(--display); font-size: 10px; font-weight: 700; color: var(--blue); letter-spacing: 1px; line-height: 1; }
  .day-chip-num { font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--black); line-height: 1.1; }
  .day-chip-month { font-family: var(--display); font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 1px; line-height: 1; }
  .day-chip.today:not(.active) .day-chip-label,
  .day-chip.today:not(.active) .day-chip-month { color: var(--blue-dark); }
  .day-chip.active .day-chip-label,
  .day-chip.active .day-chip-month { color: var(--blue); }
  .day-chip.active .day-chip-num { color: #fff; }
  .day-gap { color: var(--gray-300); font-size: 11px; letter-spacing: 3px; align-self: center; padding: 0 2px; flex-shrink: 0; pointer-events: none; user-select: none; }

  .matches-wrap { max-width: 860px; margin: 28px auto 56px; padding: 0 24px; }

  /* Date group headers */
  .date-group { margin-bottom: 36px; }
  .date-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
  .date-heading.is-today { border-bottom-color: var(--blue); }
  .date-heading-bar { width: 4px; height: 18px; border-radius: 2px; background: var(--gray-200); flex-shrink: 0; }
  .date-heading-bar.is-today { background: var(--blue); }
  .date-heading-label { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--gray-400); letter-spacing: 2px; }
  .date-heading.is-today .date-heading-label { color: var(--black); font-size: 15px; }
  .today-pill { background: var(--blue); color: var(--black); font-family: var(--display); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 3px; letter-spacing: 1.5px; flex-shrink: 0; }
  .date-group .comp-group { margin-bottom: 12px; }
  .date-group .comp-group:last-child { margin-bottom: 0; }

  .comp-group { margin-bottom: 20px; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
  .comp-group-head { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--black); }
  .comp-group-logo { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 4px; padding: 3px; flex-shrink: 0; }
  .comp-group-name { font-family: var(--display); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 1px; }
  .match-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 13px 16px; border-bottom: 1px solid var(--gray-100); background: var(--white); transition: background 0.15s; }
  .match-row:last-child { border-bottom: none; }
  .match-row:hover { background: var(--blue-xlight); }
  .match-team { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--black); display: flex; align-items: center; gap: 8px; }
  .match-team.right { justify-content: flex-end; }
  .match-flag { width: 22px; height: 16px; object-fit: contain; flex-shrink: 0; border-radius: 2px; }
  .match-score { display: flex; flex-direction: column; align-items: center; min-width: 96px; padding: 0 12px; }
  .match-score-num { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--blue-deeper); line-height: 1; letter-spacing: 3px; }
  .match-score-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
  .match-time { display: flex; flex-direction: column; align-items: center; min-width: 96px; padding: 0 12px; }
  .match-time-num { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--black); line-height: 1; }
  .match-time-label { font-size: 10px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
  #matches-content { min-height: 600px; }
  .matches-empty { text-align: center; padding: 64px 24px; font-family: var(--display); font-size: 20px; color: var(--gray-400); letter-spacing: 1px; }

  @media (max-width: 600px) {
    .match-team { font-size: 13px; gap: 5px; }
    .match-score-num { font-size: 22px; letter-spacing: 2px; }
    .match-time-num { font-size: 18px; }
    .match-score, .match-time { min-width: 72px; padding: 0 6px; }
  }

  /* ── Standings page ───────────────────────────────────────────────────── */

  #st-sticky { position: sticky; z-index: 100; }

  .st-page-wrap { max-width: 1280px; margin: 0 auto; padding: 32px 24px 48px; }
  #standings-content { min-height: 600px; }

  .standings-section { margin-bottom: 40px; }

  .standings-tourn-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
  }
  .st-tourn-logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
  .standings-tourn-name {
    font-family: var(--display); font-size: 22px; font-weight: 800;
    letter-spacing: 1px; color: var(--black); text-transform: uppercase;
  }

  .standings-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
  }

  .standings-group {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    overflow-x: auto;
    min-width: 0;
  }

  .standings-group-title {
    font-family: var(--display); font-size: 13px; font-weight: 700;
    letter-spacing: 2px; color: var(--blue); text-transform: uppercase;
    padding-bottom: 10px; margin-bottom: 0;
    border-bottom: 2px solid var(--gray-100);
  }

  .standings-table-wrap { overflow-x: auto; }

  .standings-table {
    width: 100%; border-collapse: collapse;
    font-size: 13px; font-family: var(--body);
  }
  .standings-table thead th {
    font-family: var(--display); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; color: var(--gray-600);
    padding: 6px 4px; text-align: center; border-bottom: 2px solid var(--gray-100);
    white-space: nowrap;
  }
  .standings-table thead th.st-team { text-align: left; }
  .standings-table thead th.st-pos { width: 32px; }
  .standings-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background 0.1s; }
  .standings-table tbody tr:hover { background: var(--gray-50); }
  .standings-table tbody tr:last-child { border-bottom: none; }
  .standings-table td { padding: 8px 4px; text-align: center; }

  .st-pos { width: 32px; font-size: 12px; color: var(--gray-600); font-weight: 600; }
  .st-team { text-align: left !important; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 500; }
  .standings-table td.st-team { display: table-cell; }
  .standings-table td.st-team { min-width: 0; }

  .st-flag-wrap { display: inline-flex; align-items: center; flex-shrink: 0; margin-right: 8px; }
  .st-flag { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; display: block; }
  .st-flag-placeholder { display: inline-block; width: 22px; height: 15px; background: var(--gray-100); border-radius: 2px; }

  .st-gd { font-size: 12px; color: var(--gray-600); }
  .st-pts { font-weight: 700; color: var(--black); }

  .st-empty {
    text-align: center; padding: 64px 24px;
    font-family: var(--display); font-size: 20px;
    color: var(--gray-400); letter-spacing: 1px;
  }

  @media (max-width: 768px) {
    .standings-groups-grid { grid-template-columns: 1fr; }
    .st-page-wrap { padding: 24px 16px 40px; }
  }

  @media (max-width: 480px) {
    .standings-table { font-size: 12px; }
    .standings-table td { padding: 8px 5px; }
    .standings-table td.st-team { min-width: 130px; }
  }

  /* ── Videos page ─────────────────────────────────────────────────────── */

  .vids-page-wrap { max-width: 1280px; margin: 0 auto; padding: 32px 24px 48px; }

  .vids-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 400px;
  }

  .vid-card {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .vid-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
  .vid-card:hover .vid-play-btn { opacity: 1; }

  .vid-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--black); }
  .vid-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.2s ease; }
  .vid-card:hover .vid-thumb { transform: scale(1.03); }

  .vid-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35);
    opacity: 0; transition: opacity 0.15s ease;
  }
  .vid-play-btn svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

  .vid-info { padding: 12px 14px 14px; }
  .vid-title {
    font-family: var(--display); font-size: 15px; font-weight: 700;
    color: var(--black); line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .vid-date { font-size: 12px; color: var(--gray-400); margin-top: 6px; }

  .vids-more-wrap { text-align: center; margin-top: 36px; }
  .load-more-btn {
    background: var(--black); color: #fff;
    border: none; padding: 12px 36px;
    font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: 1px;
    border-radius: 6px; cursor: pointer; transition: background 0.15s;
  }
  .load-more-btn:hover { background: var(--blue-deeper); }

  .vids-load-more {
    background: var(--blue); color: var(--white);
    border: none; padding: 12px 36px;
    font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: 1px;
    border-radius: 4px; cursor: pointer; transition: background 0.15s;
  }
  .vids-load-more:hover:not(:disabled) { background: var(--blue-dark); }
  .vids-load-more:disabled { opacity: 0.6; cursor: default; }

  .vids-empty {
    grid-column: 1/-1; text-align: center; padding: 64px 24px;
    font-family: var(--display); font-size: 20px; color: var(--gray-400); letter-spacing: 1px;
  }

  /* Lightbox */
  .vids-lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.88);
    align-items: center; justify-content: center;
    padding: 24px;
  }
  .vids-lightbox.active { display: flex; }

  .vids-lb-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: #fff;
    font-size: 36px; line-height: 1; cursor: pointer; opacity: 0.7;
    transition: opacity 0.15s;
  }
  .vids-lb-close:hover { opacity: 1; }

  .vids-lb-inner { width: 100%; max-width: 900px; }
  .vids-lb-frame-wrap { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 6px; overflow: hidden; }
  .vids-lb-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

  .vids-lb-meta { margin-top: 14px; }
  .vids-lb-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }
  .vids-lb-date { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

  @media (max-width: 1024px) { .vids-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) {
    .vids-grid { grid-template-columns: 1fr; gap: 16px; }
    .vids-page-wrap { padding: 24px 16px 40px; }
    .vids-lb-inner { max-width: 100%; }
  }

  /* ── Tournament page ─────────────────────────────────────────────────── */

  .tourn-banner {
    background: var(--near-black);
    border-bottom: 3px solid var(--blue);
  }
  .tourn-banner-inner {
    max-width: 1280px; margin: 0 auto; padding: 24px 24px;
    display: flex; align-items: center; gap: 20px;
  }
  .tourn-banner-logo-wrap {
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
  }
  .tourn-banner-logo { width: 100%; height: 100%; object-fit: contain; display: block; }
  .tourn-banner-info { display: flex; flex-direction: column; gap: 6px; }
  .tourn-banner-name {
    font-family: var(--display); font-size: clamp(22px, 4vw, 36px);
    font-weight: 800; color: #fff; letter-spacing: 1px; line-height: 1;
  }
  .tourn-banner-meta {
    font-family: var(--display); font-size: 14px; font-weight: 600;
    color: var(--blue); letter-spacing: 1px; text-transform: uppercase;
  }

  .tourn-page-wrap {
    max-width: 1280px; margin: 32px auto 48px; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 284px; gap: 32px;
  }
  .tourn-main { display: flex; flex-direction: column; gap: 40px; }
  #tourn-matches-section, #tourn-standings-section { scroll-margin-top: 150px; }
  .tourn-aside { display: flex; flex-direction: column; }

  /* Fixtures & Results match rows */
  .tmx-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-200); gap: 12px; }
  .tmx-row:last-child { border-bottom: none; }
  .tmx-team { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--black); }
  .tmx-team.away { justify-content: flex-end; }
  .tmx-flag { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
  .tmx-centre { text-align: center; min-width: 110px; }
  .tmx-time { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--black); line-height: 1; }
  .tmx-score { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--black); line-height: 1; }
  .tmx-date { font-size: 11px; color: var(--gray-600); margin-top: 3px; }
  .tmx-stage { font-family: var(--display); font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  .news-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 4px;
  }

  .fix-empty {
    padding: 16px; font-size: 13px; color: var(--gray-400); text-align: center;
  }

  @media (max-width: 1024px) {
    .tourn-page-wrap { grid-template-columns: 1fr; }
    .news-grid-3 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .tourn-banner-logo { width: 52px; height: 52px; }
    .tourn-page-wrap { padding: 0 16px 40px; }
    .news-grid-3 { grid-template-columns: 1fr; }
    .tmx-team { font-size: 13px; }
    .tmx-time, .tmx-score { font-size: 18px; }
  }
  }

  /* ── FOLLOW DROPDOWN ──────────────────────────────────────────────────── */

  /* Transparent click-catcher behind the dropdown */
  .follow-backdrop {
    display: none;
    position: fixed; inset: 0; z-index: 999;
  }
  .follow-backdrop.open { display: block; }

  /* Dropdown panel */
  .follow-dropdown {
    position: fixed;
    z-index: 1000;
    width: 310px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 3px solid var(--blue);
    border-radius: 8px;
    padding: 22px 22px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    color: #fff;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    --caret-right: 20px;
  }
  .follow-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  /* Up-pointing caret arrow */
  .follow-dropdown::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: var(--caret-right);
    border: 7px solid transparent;
    border-bottom-color: var(--blue);
    border-top: 0;
  }

  .follow-modal-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.35); font-size: 20px; line-height: 1;
    transition: color 0.15s; padding: 2px 4px;
  }
  .follow-modal-close:hover { color: #fff; }

  .follow-modal-title {
    font-family: var(--display); font-size: 17px; font-weight: 800;
    letter-spacing: 1px; color: #fff; margin-bottom: 4px; padding-right: 24px;
  }
  .follow-modal-sub {
    font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 18px; line-height: 1.5;
  }

  .follow-field { margin-bottom: 12px; }
  .follow-field label {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; color: rgba(255,255,255,0.4);
    text-transform: uppercase; margin-bottom: 5px;
  }
  .follow-field input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 9px 12px;
    font-family: var(--body); font-size: 13px;
    border-radius: 6px; outline: none;
    transition: border-color 0.15s;
  }
  .follow-field input:focus { border-color: var(--blue); }
  .follow-field input::placeholder { color: rgba(255,255,255,0.22); }

  .follow-submit {
    width: 100%; margin-top: 6px;
    background: var(--blue); color: var(--black);
    border: none; padding: 10px;
    font-family: var(--display); font-size: 15px; font-weight: 800;
    letter-spacing: 1px; border-radius: 6px;
    cursor: pointer; transition: background 0.15s;
  }
  .follow-submit:hover { background: #5dc5ea; }
  .follow-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  .follow-msg {
    margin-top: 12px; padding: 9px 12px;
    border-radius: 6px; font-size: 12px; font-weight: 600;
    display: none; line-height: 1.4;
  }
  .follow-msg.success { background: rgba(58,174,220,0.15); color: var(--blue); display: block; }
  .follow-msg.exists  { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); display: block; }
  .follow-msg.error   { background: rgba(214,48,49,0.15); color: #e57373; display: block; }

  /* On small screens, stretch to full width and pin to bottom of header */
  @media (max-width: 480px) {
    .follow-dropdown {
      width: calc(100vw - 16px);
      right: 8px !important;
    }
  }
