/*
Theme Name: KoraNow24
Theme URI: https://koranow24.com
Author: KoraNow24 Team
Author URI: https://koranow24.com
Description: قالب رياضي احترافي عربي متخصص في كرة القدم وكأس العالم 2026 - RTL Dark Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: koranow24
Tags: rtl-language, dark, sports, football, arabic, responsive
*/

/* ============================================================
   KORANOW24 - DESIGN SYSTEM
   RTL Arabic Football Portal
   ============================================================ */

:root {
  /* Brand Colors */
  --brand-primary: #00D4FF;
  --brand-secondary: #FFD700;
  --brand-accent: #FF4444;
  --brand-green: #00E676;
  
  /* Dark Theme Base */
  --bg-darkest: #050810;
  --bg-dark: #080D1A;
  --bg-card: #0D1526;
  --bg-card-hover: #111D34;
  --bg-panel: #0A1220;
  --bg-glass: rgba(13, 21, 38, 0.85);
  
  /* Borders */
  --border-subtle: rgba(0, 212, 255, 0.1);
  --border-medium: rgba(0, 212, 255, 0.2);
  --border-strong: rgba(0, 212, 255, 0.4);
  
  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #94A3C0;
  --text-muted: #5A6B87;
  --text-accent: #00D4FF;
  
  /* World Cup Colors */
  --wc-gold: #C9A227;
  --wc-red: #BF2B1B;
  --wc-blue: #003087;
  
  /* Live Indicator */
  --live-red: #FF2244;
  
  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.7);
  
  /* Typography */
  --font-display: 'Tajawal', sans-serif;
  --font-body: 'Cairo', sans-serif;
  
  /* Spacing */
  --container-max: 1400px;
  --section-gap: 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
  flex-shrink: 0;
}

.see-all {
  font-size: 13px;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  transition: all 0.2s;
}

.see-all:hover {
  background: var(--brand-primary);
  color: var(--bg-darkest);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.badge-live {
  background: var(--live-red);
  color: white;
  animation: pulse-badge 1.5s infinite;
}

.badge-wc {
  background: linear-gradient(135deg, #8B1D1D, #C9A227);
  color: white;
}

.badge-new { background: var(--brand-green); color: var(--bg-darkest); }
.badge-transfer { background: var(--brand-secondary); color: var(--bg-darkest); }
.badge-breaking {
  background: var(--brand-accent);
  color: white;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--bg-darkest);
  border-bottom: 1px solid var(--border-subtle);
  padding: 6px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  flex: 1;
}

.ticker-label {
  background: var(--brand-accent);
  color: white;
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: scroll-rtl 40s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-rtl {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.ticker-item .dot {
  width: 4px; height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.top-bar-date { color: var(--text-muted); font-size: 12px; }
.top-bar-weather {
  display: flex; align-items: center; gap: 4px;
  color: var(--text-secondary);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-primary), #0066FF);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.logo-text .kora { color: var(--brand-primary); }
.logo-text .now { color: var(--text-primary); }
.logo-text .num { color: var(--brand-secondary); font-size: 16px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-item:hover { color: var(--text-primary); background: var(--bg-card); }

.nav-item.active {
  color: var(--brand-primary);
  background: rgba(0, 212, 255, 0.08);
}

.nav-item.nav-wc {
  color: var(--brand-secondary);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.nav-item.nav-wc:hover {
  background: rgba(201, 162, 39, 0.2);
}

.nav-badge {
  position: absolute;
  top: 4px; left: 8px;
  background: var(--live-red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  animation: pulse-badge 1.5s infinite;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-icon:hover {
  border-color: var(--border-medium);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.btn-login {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-theme-toggle {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  color: var(--brand-secondary);
}

/* ============================================================
   LIVE MATCH CENTER BAR
   ============================================================ */
.live-bar {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  overflow: hidden;
}

.live-bar-inner {
  display: flex;
  align-items: stretch;
  height: 70px;
}

.live-bar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: var(--live-red);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  writing-mode: horizontal-tb;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  padding-left: 28px;
}

.live-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: live-pulse 1s infinite;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.live-matches-scroll {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 0 16px;
  flex: 1;
  scrollbar-width: none;
}

.live-matches-scroll::-webkit-scrollbar { display: none; }

.live-match-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  min-width: 220px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  flex-shrink: 0;
}

.live-match-card:hover {
  border-color: var(--brand-primary);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.live-match-card.is-live {
  border-color: rgba(255, 34, 68, 0.4);
}

.live-match-card.is-live::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px; height: 6px;
  background: var(--live-red);
  border-radius: 50%;
  margin: 6px;
  animation: live-pulse 1s infinite;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 50px;
}

.team-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--border-subtle);
}

.team-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

.match-score-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.score-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 3px;
}

.match-time-live {
  font-size: 10px;
  font-weight: 700;
  color: var(--live-red);
}

.match-time-upcoming {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
}

.match-league-mini {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 32px 0;
  background: var(--bg-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

/* Main Story */
.hero-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 460px;
}

.hero-main-image {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  background: linear-gradient(135deg, #0D2137, #0A0F1E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.97) 0%, rgba(5, 8, 16, 0.6) 50%, transparent 100%);
}

.hero-main-content {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 28px;
}

.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--brand-primary);
  color: var(--bg-darkest);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-secondary);
}

.hero-meta span { display: flex; align-items: center; gap: 4px; }

/* Side Stories */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-story {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s;
  align-items: flex-start;
}

.side-story:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateX(-3px);
}

.side-story-image {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0D2137, #1A3050);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}

.side-story-content { flex: 1; }

.side-story-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.side-story-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.side-story-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Breaking Banner */
.breaking-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--brand-accent), #CC1122);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.breaking-banner:hover { transform: translateY(-2px); }

.breaking-icon { font-size: 24px; animation: shake 2s infinite; }
@keyframes shake {
  0%,100%{transform:rotate(0deg)} 10%{transform:rotate(-10deg)} 20%{transform:rotate(10deg)}
  30%{transform:rotate(-5deg)} 40%{transform:rotate(5deg)} 50%{transform:rotate(0deg)}
}

.breaking-label {
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.breaking-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   WORLD CUP 2026 HUB
   ============================================================ */
.wc-section {
  padding: var(--section-gap) 0;
  background: var(--bg-darkest);
  position: relative;
  overflow: hidden;
}

.wc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(191, 43, 27, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.wc-title-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wc-trophy-icon {
  font-size: 42px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}

.wc-title-text h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--wc-gold), #FFE680, var(--wc-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.wc-title-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 3px;
}

/* Countdown */
.wc-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 58px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--wc-gold);
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

.countdown-sep {
  font-size: 20px;
  font-weight: 900;
  color: var(--wc-gold);
  opacity: 0.5;
  margin-bottom: 10px;
}

/* WC Tabs */
.wc-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0;
}

.wc-tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.wc-tab:hover { color: var(--text-secondary); }
.wc-tab.active {
  color: var(--wc-gold);
  border-bottom-color: var(--wc-gold);
  background: rgba(201, 162, 39, 0.05);
}

/* WC Content Grid */
.wc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 20px;
}

/* Groups Table */
.wc-groups-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.group-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.group-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid var(--border-subtle);
}

.group-letter {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--wc-gold);
}

.group-country {
  font-size: 11px;
  color: var(--text-muted);
}

.group-teams {
  padding: 8px 0;
}

.group-team-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  font-size: 12px;
  transition: background 0.15s;
  cursor: pointer;
}

.group-team-row:hover { background: var(--bg-card-hover); }

.group-team-row .pos {
  width: 16px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 11px;
}

.group-team-row .flag { font-size: 18px; }

.group-team-row .name {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
}

.group-team-row .pts {
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 13px;
}

.team-qualified {
  border-right: 2px solid var(--brand-green);
}

/* WC Matches Today */
.wc-matches-list { display: flex; flex-direction: column; gap: 10px; }

.wc-match-row {
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.wc-match-row:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: var(--bg-card-hover);
}

.wc-match-teams {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wc-team-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.wc-team-info.away { flex-direction: row-reverse; text-align: left; }

.wc-flag { font-size: 24px; }

.wc-team-name {
  font-size: 14px;
  font-weight: 700;
}

.wc-match-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.wc-score-display {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 4px;
}

.wc-match-time {
  font-size: 11px;
  color: var(--text-muted);
}

.wc-group-badge {
  padding: 2px 8px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 6px;
  font-size: 11px;
  color: var(--wc-gold);
  font-weight: 700;
}

/* WC News Sidebar */
.wc-news-sidebar { display: flex; flex-direction: column; gap: 12px; }

.wc-news-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s;
}

.wc-news-item:hover { border-color: rgba(201, 162, 39, 0.3); }

.wc-news-emoji { font-size: 28px; flex-shrink: 0; }
.wc-news-text h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.4; }
.wc-news-text span { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   TODAY MATCHES
   ============================================================ */
.today-section {
  padding: var(--section-gap) 0;
  background: var(--bg-dark);
}

.today-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.today-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.filter-btn:hover { border-color: var(--border-medium); color: var(--text-primary); }
.filter-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--bg-darkest);
}

/* Today Matches Grid */
.today-matches-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.match-league-group { margin-bottom: 16px; }

.match-league-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.league-flag { font-size: 20px; }

.league-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.match-row-full {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 6px;
}

.match-row-full:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.match-team-home {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.match-team-away {
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-team-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--bg-panel);
  flex-shrink: 0;
}

.match-team-label {
  font-size: 14px;
  font-weight: 700;
}

.match-center-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 90px;
}

.match-center-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
}

.match-center-time {
  font-size: 11px;
  font-weight: 700;
}

.match-center-time.live { color: var(--live-red); }
.match-center-time.upcoming { color: var(--brand-primary); }
.match-center-time.finished { color: var(--text-muted); }

.match-side-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.match-channel {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-panel);
  padding: 2px 7px;
  border-radius: 4px;
}

.match-odds {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  gap: 5px;
}

.odd-val {
  padding: 1px 6px;
  background: var(--bg-panel);
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
}

/* ============================================================
   TOP STORIES
   ============================================================ */
.news-section {
  padding: var(--section-gap) 0;
  background: var(--bg-darkest);
}

.news-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* Featured Article */
.featured-article {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 350px;
  background: linear-gradient(135deg, #0A1F3D, #0D2137);
}

.featured-article-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #0A1F3D, #0D2137);
}

.featured-article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,16,0.98) 0%, rgba(5,8,16,0.4) 60%, transparent 100%);
}

.featured-article-content {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 24px;
}

.featured-article-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}

.featured-article-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* News List */
.news-list { display: flex; flex-direction: column; gap: 12px; }

.news-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s;
}

.news-item:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.news-item-img {
  width: 90px; height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--bg-panel);
}

.news-item-content { flex: 1; }
.news-item-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.news-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.news-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* News Bottom Grid */
.news-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.news-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.news-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.news-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: linear-gradient(135deg, #0A1F3D, #0D2137);
}

.news-card-body { padding: 14px; }
.news-card-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* ============================================================
   TRANSFERS CENTER
   ============================================================ */
.transfers-section {
  padding: var(--section-gap) 0;
  background: var(--bg-dark);
}

.transfers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 20px;
}

/* Transfer Card */
.transfer-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.transfer-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.transfer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.transfer-player-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A3050, #0D2137);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--border-medium);
}

.player-name { font-size: 15px; font-weight: 800; }
.player-position {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.transfer-fee {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-secondary);
}

.transfer-clubs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transfer-club {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.transfer-club.from { opacity: 0.6; }
.club-badge-icon {
  font-size: 24px;
}

.club-info { }
.club-name { font-size: 12px; font-weight: 700; }
.club-league { font-size: 10px; color: var(--text-muted); }

.transfer-arrow {
  font-size: 20px;
  color: var(--brand-green);
  font-weight: 900;
}

.transfer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.transfer-date { font-size: 11px; color: var(--text-muted); }
.transfer-type-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.type-official { background: rgba(0, 230, 118, 0.15); color: var(--brand-green); border: 1px solid rgba(0, 230, 118, 0.3); }
.type-rumor { background: rgba(255, 212, 0, 0.15); color: var(--brand-secondary); border: 1px solid rgba(255, 212, 0, 0.3); }
.type-loan { background: rgba(0, 212, 255, 0.15); color: var(--brand-primary); border: 1px solid rgba(0, 212, 255, 0.3); }

/* Hot Players Sidebar */
.hot-players { display: flex; flex-direction: column; gap: 10px; }

.hot-player-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s;
}

.hot-player-item:hover { border-color: var(--border-medium); background: var(--bg-card-hover); }

.hot-rank {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text-muted);
  width: 24px;
  text-align: center;
}

.hot-rank.top3 { color: var(--brand-secondary); }

.hot-player-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A3050, #0D2137);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hot-player-info { flex: 1; }
.hot-player-name { font-size: 13px; font-weight: 700; }
.hot-player-clubs { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.hot-player-trend {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ============================================================
   LEAGUES HUB
   ============================================================ */
.leagues-section {
  padding: var(--section-gap) 0;
  background: var(--bg-darkest);
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.league-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.league-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}

.league-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-medium); }
.league-card:hover::before { opacity: 1; }

.league-epl::before { background: linear-gradient(90deg, #3D195B, #E90052, #3D195B); }
.league-laliga::before { background: linear-gradient(90deg, #FF4B44, #FFD700, #FF4B44); }
.league-serie::before { background: linear-gradient(90deg, #1E4B9A, #FFFFFF, #1E4B9A); }
.league-bl::before { background: linear-gradient(90deg, #D20515, #FFE500, #D20515); }
.league-ligue::before { background: linear-gradient(90deg, #003087, #FFFFFF, #D20515); }
.league-ucl::before { background: linear-gradient(90deg, #003087, #FFD700, #003087); }
.league-wc::before { background: linear-gradient(90deg, #8B1D1D, #C9A227, #8B1D1D); }

.league-logo-area {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: var(--bg-panel);
  border-radius: 12px;
}

.league-name {
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  color: var(--text-secondary);
}

.league-count {
  font-size: 10px;
  color: var(--brand-primary);
  font-weight: 600;
}

/* Standings Table */
.standings-container {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.standings-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-panel);
}

.standings-tab {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.standings-tab.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  background: rgba(0, 212, 255, 0.05);
}

.standings-table { width: 100%; }

.standings-table th {
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-subtle);
}

.standings-table th:first-child { text-align: right; }

.standings-table td {
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.standings-table td:first-child { text-align: right; }

.standings-table tr:hover td { background: var(--bg-card-hover); }

.stand-pos {
  font-weight: 800;
  font-size: 13px;
  width: 28px;
  display: inline-block;
  text-align: center;
}

.pos-cl { color: var(--brand-primary); }
.pos-europe { color: var(--brand-secondary); }
.pos-relegation { color: var(--brand-accent); }

.stand-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.stand-form {
  display: flex;
  gap: 2px;
}

.form-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-w { background: var(--brand-green); color: var(--bg-darkest); }
.form-d { background: var(--text-muted); color: white; }
.form-l { background: var(--brand-accent); color: white; }

.stand-pts { font-weight: 900; color: var(--text-primary); font-size: 14px; }

/* ============================================================
   VIDEO HUB
   ============================================================ */
.video-section {
  padding: var(--section-gap) 0;
  background: var(--bg-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}

.video-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.video-card:hover { border-color: var(--border-medium); transform: translateY(-3px); box-shadow: var(--shadow-card); }

.video-thumbnail {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #0A1F3D, #0D2137);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.video-card.featured .video-thumbnail { height: 220px; }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}

.video-card:hover .play-overlay { background: rgba(0,0,0,0.5); }

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.video-card:hover .play-btn { transform: scale(1.1); }

.video-duration {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.video-type-badge {
  position: absolute;
  top: 8px;
  right: 8px;
}

.video-info { padding: 14px; }
.video-cat { font-size: 10px; font-weight: 700; color: var(--brand-primary); text-transform: uppercase; margin-bottom: 5px; }
.video-title { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.video-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 12px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #050D1E, #0A1630);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.newsletter-text h3 span { color: var(--brand-primary); }

.newsletter-text p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.newsletter-feature::before {
  content: '✓';
  color: var(--brand-green);
  font-weight: 900;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-row {
  display: flex;
  gap: 10px;
}

.nl-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}

.nl-input:focus { border-color: var(--brand-primary); }
.nl-input::placeholder { color: var(--text-muted); }

.nl-submit {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-primary), #0066FF);
  border: none;
  border-radius: 10px;
  color: var(--bg-darkest);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.nl-submit:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3); }

.nl-note { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darkest);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.social-btn:hover { border-color: var(--brand-primary); background: rgba(0, 212, 255, 0.08); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--brand-primary); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: var(--text-muted); text-decoration: none; }
.footer-bottom-link:hover { color: var(--brand-primary); }

.footer-api-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.api-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-green); animation: live-pulse 2s infinite; }

/* ============================================================
   AD SLOTS - Non-Intrusive
   ============================================================ */
.ad-slot {
  background: var(--bg-panel);
  border: 1px dashed var(--border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.ad-slot::before {
  content: 'إعلان';
  position: absolute;
  top: 4px; left: 6px;
  font-size: 9px;
  color: var(--text-muted);
  opacity: 0.5;
}

.ad-banner { height: 90px; margin: 16px 0; }
.ad-inline { height: 250px; border-radius: 12px; }
.ad-sidebar { height: 300px; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .leagues-grid { grid-template-columns: repeat(4, 1fr); }
  .wc-content-grid { grid-template-columns: 1fr 1fr; }
  .wc-content-grid .wc-news-sidebar { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: grid; grid-template-columns: 1fr 1fr; }
  .news-main-grid { grid-template-columns: 1fr; }
  .transfers-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .wc-groups-scroll { grid-template-columns: 1fr 1fr; }
  .news-bottom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 32px; }
  
  .top-bar { display: none; }
  
  .nav { display: none; }
  
  .logo-text { font-size: 18px; }

  .header-inner { height: 58px; }
  
  .hero-title { font-size: 20px; }
  .hero-side { grid-template-columns: 1fr; }
  
  .wc-countdown { display: none; }
  .wc-content-grid { grid-template-columns: 1fr; }
  .wc-groups-scroll { grid-template-columns: 1fr 1fr; }
  
  .match-row-full { grid-template-columns: 1fr auto 1fr; }
  .match-side-info { display: none; }
  
  .leagues-grid { grid-template-columns: repeat(4, 1fr); }
  
  .newsletter-input-row { flex-direction: column; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.4s ease forwards;
}

/* Shimmer loading effect */
.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Highlight section */
.highlights-section {
  padding: var(--section-gap) 0;
  background: var(--bg-darkest);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.highlight-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.highlight-card:hover { border-color: var(--border-medium); transform: translateY(-3px); box-shadow: var(--shadow-card); }

.highlight-thumb {
  height: 140px;
  background: linear-gradient(135deg, #0A1F3D, #1A3050);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.highlight-score-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,8,16,0.95), transparent);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hl-team {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
}

.hl-score {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  padding: 1px 10px;
  background: rgba(0,0,0,0.6);
  border-radius: 6px;
}

.highlight-body { padding: 12px; }
.highlight-league { font-size: 10px; color: var(--brand-primary); font-weight: 700; margin-bottom: 4px; }
.highlight-title { font-size: 13px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.highlight-meta { font-size: 11px; color: var(--text-muted); display: flex; justify-content: space-between; }

/* Trending Players Section */
.trending-section {
  padding: var(--section-gap) 0;
  background: var(--bg-dark);
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.trending-player-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trending-player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.2s;
}

.trending-player-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-medium); }
.trending-player-card:hover::before { opacity: 1; }

.tp-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A3050, #0D2137);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 2px solid var(--border-medium);
  position: relative;
}

.tp-flag {
  position: absolute;
  bottom: -2px; right: -2px;
  font-size: 16px;
  line-height: 1;
}

.tp-name { font-size: 13px; font-weight: 800; }
.tp-club { font-size: 11px; color: var(--text-muted); }

.tp-stats {
  display: flex;
  gap: 10px;
}

.tp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.tp-stat-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--brand-primary);
}

.tp-stat-label { font-size: 9px; color: var(--text-muted); }

.tp-news-count {
  font-size: 11px;
  color: var(--text-muted);
}

.tp-news-count span { color: var(--brand-primary); font-weight: 700; }

