@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/poppins-900.woff2') format('woff2'); }

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --tertiary: #0f3460;
  --accent: #e6a817;
  --accent-hover: #d49b12;
  --text-dark: #212121;
  --text-white: #FFFFFF;
  --bg-light: #F5F5F7;
  --bg-dark: #111122;
  --success: #28a745;
  --info: #007bff;
  --warning: #ffc107;
  --danger: #dc3545;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: #fff; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav { background: var(--primary); padding: 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.06); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.nav-logo-text { color: white; font-weight: 900; font-size: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-logo-text .logo-highlight { color: var(--accent); }
.nav-logo-flag { width: 28px; height: 4px; display: flex; gap: 0; margin-top: 2px; }
.nav-logo-flag span { flex: 1; height: 100%; }
.nav-logo-flag .flag-red { background: #c60b1e; }
.nav-logo-flag .flag-yellow { background: #ffc400; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-links li a { color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500; font-size: 13px; padding: 8px 16px; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links li a:hover, .nav-links li a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-search-btn, .nav-hamburger { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 8px; transition: color 0.2s; }
.nav-search-btn:hover, .nav-hamburger:hover { color: var(--accent); }
.nav-hamburger { display: block; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav { position: fixed; top: 64px; right: -300px; width: 300px; height: calc(100vh - 64px); background: var(--primary); z-index: 999; transition: right 0.3s ease; padding: 24px; overflow-y: auto; }
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.8); font-weight: 500; font-size: 15px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.mobile-nav a:hover { color: var(--accent); }

/* ============================================================
   HERO SECTION — mockup-inspirerad design
   ============================================================ */
.hero { position: relative; min-height: 680px; background: var(--bg-dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 20%; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,34,0.93) 0%, rgba(17,17,34,0.75) 40%, rgba(17,17,34,0.3) 70%, rgba(17,17,34,0.15) 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 340px; gap: 32px; max-width: 1280px; margin: 0 auto; padding: 0 32px; min-height: 680px; }
.hero-content { padding: 100px 0 60px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { color: var(--accent); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }
.hero h1 { color: white; font-weight: 900; font-size: 56px; line-height: 1.02; margin-bottom: 24px; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.75; max-width: 560px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-accent { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 14px; font-family: 'Poppins', sans-serif; transition: background 0.2s; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 8px; }
.btn-accent:hover { background: var(--accent-hover); color: var(--primary); text-decoration: none; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: transparent; color: white; font-weight: 600; font-size: 14px; font-family: 'Poppins', sans-serif; border: 2px solid rgba(255,255,255,0.25); transition: all 0.2s; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 8px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* Hero sidebar — nyhets-panel */
.hero-sidebar { display: flex; flex-direction: column; justify-content: center; padding: 40px 0; }
.hero-sidebar-inner { background: rgba(17,17,34,0.88); backdrop-filter: blur(16px); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.hero-sidebar-header { padding: 24px 28px 20px; }
.hero-sidebar-header h2 { color: white; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.hero-sidebar-header h2::after { content: ''; display: block; width: 44px; height: 3px; background: var(--accent); margin-top: 10px; }
.hero-news-list { }
.hero-news-item { display: flex; gap: 14px; padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; text-decoration: none; }
.hero-news-item:last-child { border-bottom: none; }
.hero-news-item:hover { background: rgba(255,255,255,0.05); }
.hero-news-thumb { width: 88px; height: 66px; object-fit: cover; flex-shrink: 0; border-radius: 6px; }
.hero-news-body { flex: 1; min-width: 0; }
.hero-news-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); margin-bottom: 5px; display: block; }
.hero-news-title { font-size: 14px; font-weight: 600; color: white; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; }
.hero-news-time { font-size: 11px; color: rgba(255,255,255,0.4); }
.hero-sidebar-footer { padding: 18px 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-sidebar-footer a { color: var(--accent); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hero-sidebar-footer a:hover { text-decoration: underline; }

/* Hero quickfacts bar */
.hero-quickfacts { position: relative; z-index: 3; margin: -36px auto 0; max-width: 1200px; padding: 0 20px; }
.quickfacts-inner { background: white; box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: grid; grid-template-columns: repeat(4, 1fr); max-width: 960px; border-radius: 12px; overflow: hidden; }
.quickfact { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid #eee; }
.quickfact:last-child { border-right: none; }
.quickfact-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.quickfact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #888; font-weight: 600; }
.quickfact-value { font-size: 15px; font-weight: 700; color: var(--primary); line-height: 1.3; }
.quickfact-sub { font-size: 12px; color: #888; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-padding { padding: 56px 0; }
.section-bg { background: var(--bg-light); }
.section-dark { background: var(--primary); color: white; }
.section-title { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.section-dark .section-title { color: white; }
.section-desc { color: #666; font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.section-dark .section-desc { color: rgba(255,255,255,0.6); }
.section-cta { text-align: right; margin-top: 24px; }
.section-cta-center { text-align: center; margin-top: 28px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs { padding: 14px 0; background: var(--bg-light); border-bottom: 1px solid #e9e9e9; }
.breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: 13px; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--tertiary); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: #ccc; }
.breadcrumbs .current { color: #666; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header { background: var(--primary); padding: 48px 0 40px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; font-weight: 900; font-size: 36px; margin-bottom: 8px; }
.page-header .subtitle { color: rgba(255,255,255,0.5); font-style: italic; font-size: 15px; }

/* ============================================================
   TEAM SUMMARY
   ============================================================ */
.team-summary { background: var(--tertiary); color: white; padding: 28px 0; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.summary-text { font-size: 15px; line-height: 1.7; }
.summary-text a { color: var(--accent); }
.summary-text a:hover { text-decoration: underline; }
.summary-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-box { background: rgba(255,255,255,0.08); padding: 16px; text-align: center; border-radius: 6px; }
.stat-box .stat-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-box .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ============================================================
   MATCH CARDS
   ============================================================ */
.match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.match-card { background: white; border: 1px solid #e0e0e0; padding: 20px; transition: transform 0.15s, box-shadow 0.15s; }
.match-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.match-teams { margin-bottom: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.match-vs { font-size: 12px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.5px; padding-left: 37px; }
.match-team { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.match-team img { width: 25px; height: 25px; object-fit: contain; }
.match-datetime { font-size: 14px; color: #555; font-weight: 500; }
.match-venue { font-size: 13px; color: #999; margin-top: 8px; }
.match-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.match-score { font-weight: 800; font-size: 18px; color: var(--primary); }
.match-meta { display: flex; justify-content: space-between; font-size: 13px; color: #888; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; }

/* ============================================================
   LINKS GRID (lag-sektioner)
   ============================================================ */
.links-section { padding: 48px 0; }
.links-section.alt-bg { background: var(--bg-light); }
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.link-card { background: white; border: 1px solid #e0e0e0; padding: 16px 20px; display: flex; align-items: center; gap: 12px; transition: transform 0.15s, box-shadow 0.15s; text-decoration: none; }
.link-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.link-badge-img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.link-card .link-info h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin: 0; }

/* ============================================================
   CROSS LINK BUTTON
   ============================================================ */
.cross-link-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--primary); color: white; font-weight: 600; font-size: 14px; transition: background 0.2s; text-decoration: none; font-family: 'Poppins', sans-serif; border: none; cursor: pointer; }
.cross-link-btn:hover { background: var(--tertiary); color: white; text-decoration: none; }
.cross-link-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   STANDINGS TABLE
   ============================================================ */
.table-section { padding: 40px 0; }
.table-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.standings-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.standings-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.08); font-size: 15px; }
.standings-table thead th { font-size: 12px; font-weight: 700; padding: 14px 12px; text-transform: uppercase; letter-spacing: 0.3px; background: var(--accent); color: var(--primary); border: none; white-space: nowrap; }
.standings-table thead th:first-child { text-align: center; width: 45px; }
.standings-table thead th.col-team { text-align: left; min-width: 180px; }
.standings-table thead th:not(:first-child):not(.col-team) { text-align: center; width: 50px; }
.standings-table thead th.col-pts { font-weight: 900; width: 55px; }
.standings-table tbody td { padding: 14px 12px; vertical-align: middle; border: none; border-bottom: 1px solid #f0f0f0; }
.standings-table tbody td:first-child { text-align: center; font-weight: 700; }
.standings-table tbody td.col-team { text-align: left; }
.standings-table tbody td:not(:first-child):not(.col-team) { text-align: center; }
.standings-table tbody td.col-pts { font-weight: 800; font-size: 16px; }
.standings-table tbody tr:nth-child(even) { background: #f8f9fa; }
.standings-table tbody tr:hover { background: rgba(230,168,23,0.06); }
.standings-table tbody tr.highlighted { background: rgba(230,168,23,0.12); font-weight: 600; }
.standings-table tbody tr.highlighted td { font-weight: 700; }
.standings-table a { color: var(--primary); text-decoration: none; font-weight: 600; }
.standings-table a:hover { text-decoration: underline; color: var(--tertiary); }

.standings-table .col-player { text-align: left; }
.standings-table .col-team-name { text-align: left; white-space: nowrap; }
.standings-table .col-team-name img { vertical-align: middle; margin-right: 6px; }
.standings-table thead th.col-player { text-align: left; width: auto; }
.standings-table thead th.col-team-name { text-align: left; width: auto; }

.team-link { color: var(--primary); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.team-link:hover { color: var(--accent); }
.team-badge { width: 22px; height: 22px; border-radius: 3px; object-fit: contain; flex-shrink: 0; }

.pos-champions { border-left: 3px solid var(--success); }
.pos-europe { border-left: 3px solid var(--info); }
.pos-conference { border-left: 3px solid #6f42c1; }
.pos-relegation { border-left: 3px solid var(--danger); }

.table-legend { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #666; }
.table-legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 4px; border-radius: 2px; }
.table-abbr { margin-top: 16px; padding: 16px 20px; background: var(--bg-light); border-radius: 8px; font-size: 13px; color: #666; line-height: 1.8; }
.table-abbr strong { color: var(--primary); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Standings hero section (startsidan) */
.standings-hero-section { padding: 72px 0 48px; background: #fff; }
.standings-hero-section h2 { font-weight: 900; font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.standings-hero-desc { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 28px; max-width: 640px; }
.standings-more-link { font-weight: 800; font-size: 15px; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.standings-more-link:hover { color: var(--accent); }

/* Form column */
.standings-table thead th.col-form { text-align: center; width: 140px; }
.standings-table tbody td.col-form { text-align: center; }
.form-icons { display: flex; gap: 4px; justify-content: center; }
.form-dot { width: 26px; height: 26px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; line-height: 1; }
.form-dot.form-V { background: var(--success); }
.form-dot.form-O { background: #adb5bd; }
.form-dot.form-F { background: var(--danger); }

/* ============================================================
   TABS
   ============================================================ */
.tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #e0e0e0; }
.tab-btn { padding: 12px 24px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: #888; background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.2s; }
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.table-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #e9e9e9; }
.table-tabs button { padding: 10px 24px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; border: none; background: none; color: #888; cursor: pointer; position: relative; transition: color 0.2s; }
.table-tabs button:hover { color: var(--primary); }
.table-tabs button.active { color: var(--primary); }
.table-tabs button.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--accent); }

/* ============================================================
   LAST UPDATED
   ============================================================ */
.last-updated { font-size: 12px; color: #999; text-align: right; margin: 4px 0 12px 0; }

/* ============================================================
   ABOUT / INFO SECTION
   ============================================================ */
.about-section { padding: 48px 0; }
.about-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 32px; }
.about-section h3 { font-weight: 700; font-size: 22px; color: var(--primary); margin: 24px 0 16px; }
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.about-row:last-child { margin-bottom: 0; }
.about-text { font-size: 16px; line-height: 1.7; color: #444; }
.about-text a { color: var(--accent); font-weight: 500; }
.about-text a:hover { text-decoration: underline; }
.about-image img { width: 100%; height: auto; display: block; }
.team-list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.team-list-cols ul { list-style: disc; padding-left: 20px; font-size: 15px; line-height: 2; color: #444; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section { padding: 48px 0; background: var(--bg-light); }
.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 12px; }
.news-header h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin: 0; }
.news-header-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.news-header-link:hover { color: var(--accent); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: white; border: 1px solid #e0e0e0; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.news-card-img { height: 180px; overflow: hidden; background: #e9e9e9; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.news-card-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); margin-bottom: 6px; }
.news-card-body h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.news-card-body p { font-size: 13px; color: #666; margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-meta { font-size: 12px; color: #999; margin-top: auto; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 48px 0; }
.cta-inner { background: var(--primary); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px); }
.cta-inner h2 { color: white; font-weight: 900; font-size: 28px; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; line-height: 1.6; }
.cta-inner .btn-accent { position: relative; z-index: 1; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 48px 0; background: var(--bg-light); }
.faq-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.faq-item { border: 1px solid #e0e0e0; background: white; margin-bottom: 8px; }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: var(--primary); border: none; background: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--accent); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: #555; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .icon-chevron { transform: rotate(180deg); }
.icon-chevron { transition: transform 0.2s; display: flex; }

/* ============================================================
   FACTS GRID
   ============================================================ */
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.fact-item { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #e0e0e0; padding: 12px 0; gap: 12px; }
.fact-label { font-size: 13px; color: #666; flex-shrink: 0; }
.fact-value { font-size: 14px; font-weight: 700; color: var(--text-dark); text-align: right; }

/* ============================================================
   CHANNEL GRID
   ============================================================ */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.channel-card { background: #fff; border: 1px solid #e0e0e0; padding: 24px; text-align: center; }
.channel-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin: 0 0 10px; }
.channel-card p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 40px 0 20px; }
.footer-top { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo-text { color: white; font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-logo-text .logo-highlight { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col .footer-heading { color: var(--accent); font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-disclaimer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); max-width: 700px; margin: 0 auto 24px; line-height: 1.6; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section { background: var(--tertiary); color: white; padding: 24px 0; font-size: 15px; line-height: 1.7; }
.intro-section a { color: var(--accent); }
.intro-section a:hover { text-decoration: underline; }

/* ============================================================
   SUB-NAV
   ============================================================ */
.sub-nav { padding: 24px 0 0; }
.sub-nav-tabs { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.sub-nav-tab { display: inline-block; padding: 10px 22px; border-radius: 8px; background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; border: none; white-space: nowrap; transition: all 0.2s; backdrop-filter: blur(4px); }
.sub-nav-tab:hover { background: rgba(255,255,255,0.95); color: var(--primary); }
.sub-nav-tab.active { background: #fff; color: var(--primary); font-weight: 700; }

/* ============================================================
   CONTENT SECTION (info pages)
   ============================================================ */
.content-section { padding: 48px 0; }
.content-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 16px; margin-top: 32px; }
.content-section h2:first-child { margin-top: 0; }
.content-section p { font-size: 16px; line-height: 1.7; color: #444; margin-bottom: 16px; }
.content-section a { color: var(--accent); font-weight: 500; }
.content-section a:hover { text-decoration: underline; }
.content-section ul { padding-left: 20px; margin-bottom: 16px; }
.content-section li { font-size: 15px; line-height: 1.8; color: #444; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.contact-box { background: var(--bg-light); padding: 24px; border-left: 4px solid var(--accent); }
.contact-box h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.contact-box p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.contact-box a { color: var(--tertiary); font-weight: 500; font-size: 14px; }
.contact-box a:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   SKIP TO CONTENT
   ============================================================ */
.skip-to-content { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; padding: 12px 24px; background: var(--accent); color: var(--primary); font-weight: 700; }
.skip-to-content:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; }

/* ============================================================
   MATCHER HUB
   ============================================================ */
.round-header { font-weight: 900; font-size: 18px; color: var(--primary); margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: flex; align-items: center; gap: 10px; }
.round-badge { background: var(--accent); color: var(--primary); font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 4px; }
.match-list { display: flex; flex-direction: column; gap: 8px; }
.match-list-item { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 12px; align-items: center; padding: 12px 16px; background: white; border: 1px solid #e0e0e0; font-size: 14px; }
.match-list-home { text-align: right; font-weight: 600; color: var(--primary); }
.match-list-score { font-weight: 800; font-size: 16px; color: var(--primary); min-width: 50px; text-align: center; }
.match-list-away { text-align: left; font-weight: 600; color: var(--primary); }
.match-list-info { font-size: 12px; color: #888; text-align: right; min-width: 120px; }
.match-list-item:hover { background: #f8f9fa; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 2000; background: #fff; color: var(--text-dark); border: 1px solid #e0e0e0; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); padding: 20px 24px; opacity: 0; transform: translateY(16px); transition: opacity 0.25s ease, transform 0.25s ease; }
.cookie-consent[hidden] { display: none; }
.cookie-consent.is-visible { opacity: 1; transform: translateY(0); }
.cookie-consent-inner { display: flex; align-items: center; gap: 24px; max-width: 1200px; margin: 0 auto; }
.cookie-consent-text { flex: 1; min-width: 0; }
.cookie-consent-title { font-size: 16px; font-weight: 700; color: var(--primary); margin: 0 0 4px; }
.cookie-consent-text p { font-size: 14px; line-height: 1.5; color: #444; margin: 0; }
.cookie-consent-text a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: background 0.2s; min-height: 44px; }
.cookie-btn-outline { background: #fff; color: var(--primary); border-color: #d8d8d8; }
.cookie-btn-outline:hover { border-color: var(--primary); }
.cookie-btn-primary { background: var(--primary); color: #fff; }
.cookie-btn-primary:hover { background: var(--tertiary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-sidebar { display: none; }
  .hero-content { padding: 60px 0 80px; }
  .hero h1 { font-size: 36px; }
  .quickfacts-inner { grid-template-columns: repeat(2, 1fr); }
  .match-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .about-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-content { padding: 40px 0 80px; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-quickfacts { margin: -24px 12px 0; }
  .quickfacts-inner { grid-template-columns: 1fr 1fr; }
  .quickfact { padding: 14px 16px; }
  .page-header h1 { font-size: 26px; }
  .match-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-list-cols { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
  .cta-inner h2 { font-size: 22px; }
  .match-meta { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .channel-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .standings-table { font-size: 13px; }
  .standings-table thead th, .standings-table tbody td { padding: 10px 8px; }
  .summary-stats { grid-template-columns: repeat(2, 1fr); }
  .match-list-item { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .match-list-home, .match-list-away { text-align: center; }
  .match-list-info { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .cookie-consent-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-btn { flex: 1; }
}
