/*
 * Bundesligatabell.se - premium dark sports command center.
 * Dark by default. Red accents. Glass panels.
 */

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */

:root {
  --radius: 0.75rem;

  /* Bundesliga dark palette */
  --bg-0: #070707;
  --bg-1: #0d0d0d;
  --bg-2: #121214;

  --brand: #d20515;
  --brand-deep: #a30410;
  --brand-glow: rgba(210, 5, 21, 0.35);

  --ink: #f5f5f6;
  --surface: #0d0d0d;
  --surface-2: #121214;
  --panel: rgba(12, 12, 14, 0.60);
  --panel-strong: rgba(12, 12, 14, 0.68);

  --background: #070707;
  --foreground: #f5f5f6;

  --card: rgba(255, 255, 255, 0.035);
  --card-foreground: #f5f5f6;
  --popover: #121214;
  --popover-foreground: #f5f5f6;

  --primary: #d20515;
  --primary-foreground: #ffffff;

  --secondary: rgba(255, 255, 255, 0.06);
  --secondary-foreground: #f5f5f6;

  --muted: rgba(255, 255, 255, 0.05);
  --muted-foreground: #a1a1aa;

  --accent: rgba(210, 5, 21, 0.12);
  --accent-foreground: #f5f5f6;

  --destructive: #e5484d;
  --destructive-foreground: #ffffff;

  --border: rgba(255, 255, 255, 0.08);
  --input: rgba(255, 255, 255, 0.1);
  --ring: #d20515;

  --win: #1fbf75;
  --draw: #c9a227;
  --loss: #e5484d;

  --font-display: "Anton", "Oswald", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-panel: 0 30px 60px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 0 1px rgba(210, 5, 21, 0.4), 0 20px 50px -10px rgba(210, 5, 21, 0.35);
  --shadow-elev-1: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-elev-2: 0 8px 30px rgba(0,0,0,0.6);
}

/* =========================================
   RESET & BASE
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  background: var(--bg-0);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-0);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

::selection {
  background-color: var(--brand);
  color: white;
}

.tabular {
  font-variant-numeric: tabular-nums;
}

/* =========================================
   LAYOUT SHELL
   ========================================= */

.site-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  position: relative;
  z-index: 10;
}

/* =========================================
   ATMOSPHERE BACKGROUND
   ========================================= */

.blt-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -10%, rgba(210, 5, 21, 0.22), transparent 60%),
    radial-gradient(800px 600px at 92% 110%, rgba(210, 5, 21, 0.12), transparent 60%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
}

.blt-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

.blt-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.025 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* =========================================
   GLASS PANEL UTILITIES
   ========================================= */

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-panel);
  border-radius: var(--radius);
}

.panel-strong {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-panel);
  border-radius: var(--radius);
}

.hairline {
  border: 1px solid var(--border);
}

/* =========================================
   ANIMATIONS
   ========================================= */

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

.blt-live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--brand);
  animation: blt-pulse 1.4s ease-out infinite;
}

@keyframes blt-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.blt-reveal {
  opacity: 0;
  animation: blt-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blt-reveal-visible {
  animation: blt-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blt-reveal-delay-1 { animation-delay: 0.08s; }
.blt-reveal-delay-2 { animation-delay: 0.16s; }
.blt-reveal-delay-3 { animation-delay: 0.24s; }
.blt-reveal-delay-4 { animation-delay: 0.32s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* =========================================
   CONTAINER
   ========================================= */

.blt-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .blt-container { padding-left: 2rem; padding-right: 2rem; }
}

.blt-container-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .blt-container-wide { padding-left: 2rem; padding-right: 2rem; }
}

/* =========================================
   SECTION
   ========================================= */

.blt-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
  .blt-section { padding-top: 5rem; padding-bottom: 5rem; }
}

.blt-section--muted {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =========================================
   SECTION HEADING
   ========================================= */

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-heading__left {}

.section-heading__kicker {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-heading__kicker::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--brand);
}

.section-heading__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.1;
}

.section-heading__desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(245,245,246,0.6);
  max-width: 52ch;
  line-height: 1.65;
}

.section-heading__action {
  flex-shrink: 0;
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
  transition: border-color 0.2s;
  white-space: nowrap;
}

.btn-outline-sm:hover {
  border-color: rgba(255,255,255,0.3);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(7,7,7,0.35);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(7,7,7,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
  transition: height 0.3s;
}

.site-header.scrolled .site-header__inner {
  height: 56px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1;
}

.site-logo__text span {
  color: var(--brand);
}

/* Desktop Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1280px) {
  .site-nav { display: flex; }
}

.site-nav__link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(245,245,246,0.65);
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link:hover {
  color: var(--foreground);
  background: rgba(255,255,255,0.03);
}

.site-nav__link.active {
  color: var(--foreground);
  background: rgba(255,255,255,0.04);
}

.site-nav__link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  height: 2px;
  width: 1.5rem;
  background: var(--brand);
  border-radius: 9999px;
}

/* Dropdown button */
.site-nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(245,245,246,0.65);
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav__dropdown-btn:hover,
.site-nav__dropdown-btn.active {
  color: var(--foreground);
  background: rgba(255,255,255,0.03);
}

.site-nav__dropdown-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  color: rgba(245,245,246,0.5);
}

.site-nav__dropdown-wrapper:hover .site-nav__dropdown-btn svg,
.site-nav__dropdown-wrapper.open .site-nav__dropdown-btn svg {
  transform: rotate(180deg);
}

/* Dropdown wrapper */
.site-nav__dropdown-wrapper {
  position: relative;
}

.site-nav__dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  width: 260px;
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}

.site-nav__dropdown-wrapper:hover .site-nav__dropdown,
.site-nav__dropdown-wrapper:focus-within .site-nav__dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.site-nav__dropdown-inner {
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
  overflow: hidden;
}

.site-nav__dropdown-overview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.2s, color 0.2s;
}

.site-nav__dropdown-overview:hover {
  background: rgba(255,255,255,0.05);
  color: var(--brand);
}

.site-nav__dropdown-list {
  padding: 0.25rem 0;
}

.site-nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  font-size: 13px;
  color: rgba(245,245,246,0.8);
  transition: background-color 0.2s, color 0.2s;
}

.site-nav__dropdown-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--brand);
}

.site-nav__dropdown-item-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.site-nav__dropdown-item-dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(210,5,21,0.7);
  flex-shrink: 0;
}

.site-nav__dropdown-item-arrow {
  color: rgba(245,245,246,0.3);
  transition: transform 0.2s, color 0.2s;
  font-size: 0.85rem;
}

.site-nav__dropdown-item:hover .site-nav__dropdown-item-arrow {
  color: var(--brand);
  transform: translateX(2px);
}

/* Mobile toggle */
.site-header__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.site-header__mobile-toggle:hover {
  background: rgba(255,255,255,0.06);
}

@media (min-width: 1280px) {
  .site-header__mobile-toggle { display: none; }
}

/* Mobile drawer */
.site-mobile-nav {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(7,7,7,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.site-mobile-nav.open {
  max-height: 85vh;
  opacity: 1;
  overflow-y: auto;
}

.site-mobile-nav__inner {
  padding: 1rem 1.25rem;
}

.site-mobile-nav__item {
  padding: 0.125rem 0;
}

.site-mobile-nav__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: color 0.2s;
}

.site-mobile-nav__link:hover {
  color: var(--brand);
}

/* Mobile details/summary for dropdowns */
.site-mobile-nav__details {
  border: none;
}

.site-mobile-nav__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  -webkit-appearance: none;
}

.site-mobile-nav__summary::-webkit-details-marker { display: none; }

.site-mobile-nav__summary svg {
  width: 16px;
  height: 16px;
  color: rgba(245,245,246,0.5);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.site-mobile-nav__details[open] .site-mobile-nav__summary svg {
  transform: rotate(180deg);
}

.site-mobile-nav__children {
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(210,5,21,0.4);
  margin-left: 0.25rem;
}

.site-mobile-nav__child-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 13.5px;
  color: rgba(245,245,246,0.75);
  transition: color 0.2s;
}

.site-mobile-nav__child-link:hover {
  color: var(--brand);
}

/* WordPress nav menu overrides */
.site-nav .menu { display: flex; align-items: center; gap: 0.125rem; list-style: none; margin: 0; padding: 0; }
.site-nav .menu-item { position: relative; }
.site-nav .menu-item a { position: relative; padding: 0.5rem 0.75rem; font-size: 13px; font-weight: 500; color: rgba(245,245,246,0.65); border-radius: 0.375rem; transition: color 0.2s, background-color 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem; white-space: nowrap; }
.site-nav .menu-item a:hover, .site-nav .menu-item.current-menu-item > a, .site-nav .menu-item.current-page-ancestor > a { color: var(--foreground); background: rgba(255,255,255,0.04); }
.site-nav .menu-item.current-menu-item > a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -7px; height: 2px; width: 1.5rem; background: var(--brand); border-radius: 9999px; }
.site-nav .menu-item-has-children > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.5; }
.site-nav .sub-menu { position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(4px); padding-top: 0.75rem; width: 260px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 100; list-style: none; margin: 0; padding: 0; padding-top: 0.75rem; }
.site-nav .menu-item-has-children:hover > .sub-menu, .site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.site-nav .sub-menu li { }
.site-nav .sub-menu li a { display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; font-size: 13px; color: rgba(245,245,246,0.8); border-radius: 0; width: 100%; }
.site-nav .sub-menu li a:hover { background: rgba(255,255,255,0.04); color: var(--brand); }
.site-nav .sub-menu li:first-child a { border-radius: 0.75rem 0.75rem 0 0; }
.site-nav .sub-menu li:last-child a { border-radius: 0 0 0.75rem 0.75rem; }
.site-nav .sub-menu { background: rgba(10,10,12,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8); overflow: hidden; padding: 0.25rem 0; }

/* Mobile WP menu */
.site-mobile-nav .menu { list-style: none; margin: 0; padding: 0; }
.site-mobile-nav .menu-item { padding: 0.125rem 0; }
.site-mobile-nav .menu-item > a { display: block; padding: 0.75rem 0; font-size: 14px; font-family: var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; color: var(--foreground); }
.site-mobile-nav .menu-item > a:hover { color: var(--brand); }
.site-mobile-nav .menu-item-has-children > a { display: flex; justify-content: space-between; align-items: center; }
.site-mobile-nav .sub-menu { list-style: none; padding: 0.5rem 0 0.5rem 0.75rem; border-left: 2px solid rgba(210,5,21,0.4); margin-left: 0.25rem; display: none; }
.site-mobile-nav .menu-item-has-children.mobile-open > .sub-menu { display: block; }
.site-mobile-nav .sub-menu .menu-item > a { font-size: 13.5px; color: rgba(245,245,246,0.75); font-family: var(--font-sans); text-transform: none; letter-spacing: normal; padding: 0.5rem 0; }

/* =========================================
   LIVE BADGE
   ========================================= */

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgba(210,5,21,0.4);
  background: rgba(210,5,21,0.1);
  padding: 0.25rem 0.625rem;
  font-size: 10.5px;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.live-badge__dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--brand);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: -20;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient-1 {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(to bottom, rgba(7,7,7,0.15), rgba(7,7,7,0.3), var(--background));
}

.hero__gradient-2 {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(to right, rgba(7,7,7,0.6), transparent, transparent);
}

.pitch-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__pitch-overlay {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0.15;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero__glow {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 25%;
  width: 600px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(210,5,21,0.1);
  filter: blur(120px);
}

.hero__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero__inner { padding-top: 3.5rem; padding-bottom: 2.5rem; }
}

.hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 5fr 7fr; }
}

.hero__editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.45);
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--brand);
}

.hero__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--foreground);
}

.hero__title span {
  color: var(--brand);
}

.hero__desc {
  margin-top: 1.25rem;
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(245,245,246,0.65);
}

.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  background: var(--brand);
  padding: 0.75rem 1.25rem;
  font-size: 13.5px;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s;
  box-shadow: 0 10px 30px -10px rgba(210,5,21,0.7);
  text-decoration: none;
}

.btn-primary:hover { background: var(--brand-deep); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  padding: 0.75rem 1.25rem;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.btn-secondary:hover { background: rgba(255,255,255,0.07); }

/* Hero match panel */
.hero__right { }

.hero__match-panel {
  position: relative;
  overflow: hidden;
}

.hero__panel-glow-line {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(210,5,21,0.6), transparent);
}

.hero__match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.55);
}

.hero__match-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--brand);
}

.hero__match-score-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.hero__team-block { }
.hero__team-block--left { display: flex; flex-direction: column; gap: 0.625rem; align-items: flex-start; }
.hero__team-block--right { display: flex; flex-direction: column; gap: 0.625rem; align-items: flex-end; text-align: right; }

.hero__team-inner { display: flex; align-items: center; gap: 0.625rem; }
.hero__team-inner--right { flex-direction: row-reverse; }

.hero__team-crest {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.hero__team-name {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245,245,246,0.7);
}

.hero__team-name--winner { color: var(--foreground); }

.hero__team-form {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

.hero__team-form--right { justify-content: flex-end; }

.form-pip {
  width: 16px;
  height: 6px;
  border-radius: 2px;
}

.form-pip--w { background: var(--win); }
.form-pip--d { background: var(--draw); }
.form-pip--l { background: var(--loss); }

.hero__score {
  text-align: center;
}

.hero__score-digits {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
}

.hero__score-sep {
  color: rgba(245,245,246,0.25);
  margin: 0 0.5rem;
}

.hero__score-label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.45);
}

.hero__match-stats {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.45);
}

.hero__stat-values {
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.hero__stat-sep { color: rgba(245,245,246,0.25); }
.hero__stat-away { color: rgba(245,245,246,0.6); }

/* Hero mini table strip */
.hero__mini-table {
  margin-top: 1rem;
}

.hero__mini-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hero__mini-table-title {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.55);
}

.hero__mini-table-link {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--brand);
}

.hero__mini-table-link:hover { text-decoration: underline; }

.hero__mini-table-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.375rem;
}

.hero__mini-team {
  border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 0.5rem;
}

.hero__mini-team-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__mini-pos {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--brand);
}

.hero__mini-pts {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero__mini-pts-label {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.45);
}

/* =========================================
   TEAM CREST
   ========================================= */

/* Real logo from API */
.team-crest--logo {
  background: transparent;
  object-fit: contain;
  border-radius: 2px;
}

.team-crest {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* =========================================
   LEAGUE TABLE
   ========================================= */

.league-table-wrap {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-elev-1);
}

.league-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.league-table thead tr {
  font-size: 10.5px;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.55);
}

.league-table th {
  background: var(--card);
  padding: 0.75rem 0.5rem;
  font-weight: 500;
}

.league-table th:first-child { padding-left: 1rem; text-align: left; width: 40px; }
.league-table th:nth-child(2) { text-align: left; padding-left: 0.5rem; }
.league-table th:last-child { padding-right: 1rem; text-align: right; }
.league-table th.center { text-align: center; }

.league-table td {
  padding: 0.875rem 0.5rem;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}

.league-table td:first-child { padding-left: 1rem; }
.league-table td:last-child { padding-right: 1rem; text-align: right; }
.league-table td.center { text-align: center; color: rgba(245,245,246,0.7); }

.league-table tbody tr {
  transition: background-color 0.15s;
}

.league-table tbody tr:hover td {
  background: var(--card);
}

.league-table tbody tr.highlighted td {
  background: rgba(210,5,21,0.05);
}

.league-table__pos-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.league-table__zone-bar {
  height: 20px;
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.zone-cl { background: #15803d; }
.zone-el { background: #0ea5e9; }
.zone-conf { background: #f59e0b; }
.zone-rel-play { background: #fb923c; }
.zone-rel { background: #dc2626; }
.zone-none { background: rgba(245,245,246,0.15); }

.league-table__pos-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--foreground);
}

.league-table__team-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.league-table__team-link {
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.league-table__team-link:hover .league-table__team-name {
  color: var(--brand);
}

.league-table__team-name {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.league-table__pts {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--foreground);
}

.form-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.form-badge {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 10px;
  font-family: var(--font-display);
  color: white;
}

.form-badge--w { background: #15803d; }
.form-badge--d { background: rgba(245,245,246,0.15); color: var(--foreground); }
.form-badge--l { background: #dc2626; }

.league-table__legend {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--background);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  font-size: 11px;
  color: rgba(245,245,246,0.6);
}

.league-table__legend-wrap {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1.25rem 1rem 1rem;
}

.league-table__legend-title {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground);
  margin: 0 0 1rem;
}

.league-table__legend--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (min-width: 768px) {
  .league-table__legend--cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.legend-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--card);
  min-height: 88px;
}

.legend-card__bar {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  margin-bottom: 0.15rem;
}

.legend-card--ucl .legend-card__bar { background: #15803d; }
.legend-card--uel .legend-card__bar { background: #0ea5e9; }
.legend-card--conf .legend-card__bar { background: #f59e0b; }
.legend-card--rel .legend-card__bar { background: #dc2626; }

.legend-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
}

.legend-card__desc {
  font-size: 0.75rem;
  color: rgba(245, 245, 246, 0.55);
  line-height: 1.35;
}

.league-table__legend-wrap .league-table__full-link {
  display: inline-block;
  margin-top: 1rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.league-table__full-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
}

.league-table__full-link:hover { text-decoration: underline; }

/* Hidden columns by breakpoint */
@media (max-width: 639px) { .hide-sm { display: none !important; } }
@media (max-width: 767px) { .hide-md { display: none !important; } }
@media (max-width: 1023px) { .hide-lg { display: none !important; } }

/* =========================================
   MATCH CARD
   ========================================= */

.match-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.match-card:hover {
  border-color: rgba(245,245,246,0.2);
  box-shadow: var(--shadow-elev-2);
  transform: translateY(-2px);
}

.match-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.6);
}

.match-card__header-date {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.match-card__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.match-card__team {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.match-card__team--away {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.match-card__team-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-card__score-area {
  text-align: center;
  min-width: 64px;
}

.match-card__score {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
}

.match-card__score-sep {
  color: rgba(245,245,246,0.3);
  margin: 0 0.375rem;
}

.match-card__time {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
}

.match-card__status-label {
  margin-top: 0.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,245,246,0.5);
}

.match-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: rgba(245,245,246,0.6);
}

.match-card__venue {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.match-card__details-link {
  font-weight: 500;
  color: var(--brand);
}

.match-card__details-link:hover { text-decoration: underline; }

/* Fixtures list */
.fixtures-list { }

.fixtures-list__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.fixtures-list__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.fixtures-list__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .fixtures-list__grid { grid-template-columns: 1fr 1fr; }
}

.fixtures-list__empty {
  font-size: 0.875rem;
  color: rgba(245,245,246,0.6);
}

/* =========================================
   TEAMS GRID
   ========================================= */

.teams-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.teams-grid > div {
  display: flex;
}

@media (min-width: 640px) { .teams-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .teams-grid { grid-template-columns: 1fr 1fr 1fr; } }

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.team-card:hover {
  border-color: rgba(245,245,246,0.25);
  box-shadow: var(--shadow-elev-2);
  transform: translateY(-2px);
}

.team-card__color-bar {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 4px;
}

.team-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.team-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-card__info {}

.team-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--foreground);
  line-height: 1.2;
}

.team-card__city {
  font-size: 12px;
  color: rgba(245,245,246,0.55);
  margin-top: 2px;
}

.team-card__arrow {
  color: rgba(245,245,246,0.3);
  font-size: 1rem;
  transition: transform 0.2s, color 0.2s;
}

.team-card:hover .team-card__arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.team-card__stats {
  margin-top: auto;
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 12px;
}

.team-card__stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.team-card__stat-label {
  font-size: 10px;
  color: rgba(245,245,246,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.2;
}

.team-card__stat-value {
  margin: 0;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.35;
  width: 100%;
}

/* =========================================
   ARTICLE CARD
   ========================================= */

.articles-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.articles-grid__item {
  display: flex;
  min-height: 100%;
}

@media (min-width: 768px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: 1fr 1fr 1fr; } }

.articles-grid--empty {
  display: block;
  padding: 2rem 0;
}

.articles-grid__empty-message {
  color: rgba(245, 245, 246, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42ch;
}

.article-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.article-card:hover {
  border-color: rgba(245,245,246,0.2);
  box-shadow: var(--shadow-elev-2);
  transform: translateY(-2px);
}

.article-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--card);
}

.article-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-card__image-wrap img {
  transform: scale(1.03);
}

.article-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245,245,246,0.05), var(--surface-2), rgba(210,5,21,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__placeholder-text {
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(245,245,246,0.15);
}

.article-card__cat-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  background: rgba(12,12,14,0.95);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.5rem;
  font-size: 10.5px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11.5px;
  color: rgba(245,245,246,0.55);
}

.article-card__meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(245,245,246,0.2);
}

.article-card__title {
  margin-top: 0.625rem;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--foreground);
  line-height: 1.25;
}

.article-card__excerpt {
  margin-top: 0.5rem;
  font-size: 13.5px;
  color: rgba(245,245,246,0.65);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
}

.article-card__cta-arrow {
  transition: transform 0.2s;
}

.article-card:hover .article-card__cta-arrow {
  transform: translateX(2px);
}

/* Skeleton */
.article-skeleton {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.skeleton-img {
  aspect-ratio: 16/10;
  background: var(--card);
  animation: pulse 1.5s infinite;
}

.skeleton-body { padding: 1.25rem; }

.skeleton-line {
  background: var(--card);
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

/* =========================================
   QUICK FACTS
   ========================================= */

.quick-facts {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12,12,14,0.85);
  color: var(--foreground);
  padding: 2rem;
}

@media (min-width: 768px) {
  .quick-facts { padding: 3rem; }
}

.quick-facts__glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 256px;
  height: 256px;
  border-radius: 9999px;
  background: rgba(210,5,21,0.3);
  filter: blur(64px);
  pointer-events: none;
}

.quick-facts__inner { position: relative; }

.quick-facts__kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.quick-facts__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.quick-facts__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .quick-facts__grid { grid-template-columns: repeat(4, 1fr); }
}

.quick-facts__item {
  border-left: 2px solid rgba(210,5,21,0.6);
  padding-left: 1rem;
}

.quick-facts__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.quick-facts__label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* =========================================
   RSS NEWS SECTION
   ========================================= */

.rss-section { }

.rss-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) { .rss-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .rss-grid { grid-template-columns: 1fr 1fr 1fr; } }

.rss-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}

.rss-card:hover {
  border-color: rgba(245,245,246,0.2);
  box-shadow: var(--shadow-elev-2);
  transform: translateY(-2px);
}

.rss-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(245, 245, 246, 0.04);
}

.rss-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rss-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245,245,246,0.04), rgba(210,5,21,0.08));
}

.rss-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.rss-card__source {
  font-size: 10.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.625rem;
}

.rss-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rss-card__excerpt {
  margin: 0.625rem 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 245, 246, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rss-card__date {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 11px;
  color: rgba(245,245,246,0.45);
}

/* =========================================
   SEO CONTENT
   ========================================= */

.seo-content-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 1rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(245, 245, 246, 0.92);
}

.seo-content-section .wp-prose,
.seo-content-section .wp-prose p,
.seo-content-section .wp-prose li,
.seo-content-section .wp-prose td,
.seo-content-section .wp-prose th,
.seo-content-section .wp-prose span,
.seo-content-section .wp-prose div {
  color: rgba(245, 245, 246, 0.88);
}

.seo-content-section .wp-prose h1,
.seo-content-section .wp-prose h2,
.seo-content-section .wp-prose h3,
.seo-content-section .wp-prose h4,
.seo-content-section .wp-prose h5,
.seo-content-section .wp-prose h6,
.page-bottom-seo .wp-prose h1,
.page-bottom-seo .wp-prose h2,
.page-bottom-seo .wp-prose h3,
.page-bottom-seo .wp-prose h4,
.page-bottom-seo .wp-prose h5,
.page-bottom-seo .wp-prose h6 {
  color: var(--foreground);
}

.seo-content-section #ez-toc-container,
.seo-content-section .ez-toc-v2_0_69,
.seo-content-section .ez-toc-title-container,
.seo-content-section nav.ez-toc,
.page-bottom-seo #ez-toc-container,
.page-bottom-seo .ez-toc-v2_0_69,
#ez-toc-container,
.ez-toc-widget-container,
#ez-toc-widget-container,
.ez-toc-sticky,
nav.ez-toc,
.ez-toc-title-container {
  display: none !important;
}

.seo-content-preview {
  margin-bottom: 0;
}

.seo-content-full {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-content-full[hidden] {
  display: none !important;
}

.seo-content-section .wp-prose > *:first-child {
  margin-top: 0;
}

.seo-content-section .wp-prose a,
.page-bottom-seo .wp-prose a,
.page-intro a {
  color: var(--brand) !important;
}

.seo-content-section .wp-prose [style*="color"],
.page-bottom-seo .wp-prose [style*="color"] {
  color: inherit !important;
}

.seo-content-section .wp-prose h2,
.seo-content-section .wp-prose h3,
.page-bottom-seo .wp-prose h2,
.page-bottom-seo .wp-prose h3 {
  text-transform: uppercase;
}

.seo-content-section .wp-prose ul a,
.page-bottom-seo .wp-prose ul a {
  color: var(--brand) !important;
  text-decoration: none;
}

.page-header__subtitle {
  margin: 0.75rem 0 0;
  max-width: 62ch;
  color: rgba(245, 245, 246, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.page-intro > *:first-child {
  margin-top: 0;
}

.seo-content-section .wp-prose [style*="color"],
.page-bottom-seo .wp-prose [style*="color"] {
  color: rgba(245, 245, 246, 0.88) !important;
}

.seo-content-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand);
  background: rgba(210, 5, 21, 0.08);
  border: 1px solid rgba(210, 5, 21, 0.25);
  border-radius: 9999px;
  cursor: pointer;
  padding: 0.55rem 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.seo-read-more:hover {
  background: rgba(210, 5, 21, 0.14);
  border-color: rgba(210, 5, 21, 0.4);
}

.seo-read-more__icon {
  font-size: 0.75rem;
  line-height: 1;
}

/* =========================================
   FAQ
   ========================================= */

.faq-section { }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--foreground);
  flex: 1;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(245,245,246,0.4);
  transition: transform 0.2s;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 1.25rem;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245,245,246,0.75);
}

.faq-item.open .faq-item__answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  position: relative;
  margin-top: 6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #070707;
}

.site-footer__glow-line {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(210,5,21,0.6), transparent);
}

.site-footer__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.site-footer__brand {}

.site-footer__brand-desc {
  margin-top: 1.25rem;
  font-size: 13.5px;
  color: rgba(245,245,246,0.55);
  line-height: 1.65;
  max-width: 22rem;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.4);
  margin-bottom: 1rem;
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col__link {
  font-size: 13.5px;
  color: rgba(245,245,246,0.75);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-col__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: transparent;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.footer-col__link:hover { color: var(--brand); }
.footer-col__link:hover::before { background: var(--brand); }

/* WordPress nav menu in footer */
.site-footer .menu { list-style: none; margin: 0; padding: 0; }
.site-footer .menu li { margin-bottom: 0.625rem; }
.site-footer .menu li a { font-size: 13.5px; color: rgba(245,245,246,0.75); transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.site-footer .menu li a::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 9999px; background: transparent; transition: background-color 0.2s; flex-shrink: 0; }
.site-footer .menu li a:hover { color: var(--brand); }
.site-footer .menu li a:hover::before { background: var(--brand); }

.site-footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 11.5px;
  color: rgba(245,245,246,0.45);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__copyright {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* =========================================
   PAGE CONTENT (PROSE)
   ========================================= */

.wp-prose {
  color: rgba(245, 245, 246, 0.85);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.wp-prose > * + * { margin-top: 1.1em; }

.wp-prose h1, .wp-prose h2, .wp-prose h3, .wp-prose h4 {
  font-family: var(--font-display);
  color: var(--foreground);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-top: 2em;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

.wp-prose h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  border-top: 1px solid var(--border);
  padding-top: 1.4em;
  letter-spacing: 0.01em;
}

.wp-prose h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); }
.wp-prose h4 { font-size: 1.125rem; }
.wp-prose p { color: rgba(245, 245, 246, 0.92); }

.wp-prose a {
  color: var(--brand);
  text-decoration: none;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.wp-prose a:hover { background-size: 100% 1px; }
.wp-prose strong { color: var(--foreground); font-weight: 600; }
.wp-prose ul, .wp-prose ol { padding-left: 1.4em; }
.wp-prose ul { list-style: none; }
.wp-prose ul > li { position: relative; padding-left: 1.25em; }

.wp-prose ul > li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 0.5em; height: 2px;
  background: var(--brand);
}

.wp-prose ol { list-style: decimal; }
.wp-prose ol > li::marker { color: var(--brand); font-weight: 700; }

.wp-prose blockquote {
  border-left: 3px solid var(--brand);
  padding: 0.2em 0 0.2em 1.2em;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--foreground);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.wp-prose table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  margin: 1.5em 0;
  font-size: 0.95rem;
}

.wp-prose th {
  text-align: left;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.85em 0.9em;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
  color: rgba(245, 245, 246, 0.6);
}

.wp-prose td {
  padding: 0.85em 0.9em;
  border-bottom: 1px solid var(--border);
  color: rgba(245, 245, 246, 0.85);
}

.wp-prose tr:hover td { background: rgba(255, 255, 255, 0.02); }

.wp-prose img, .wp-prose figure {
  border-radius: var(--radius);
  overflow: hidden;
}

.wp-prose figure { margin: 1.6em 0; }

.wp-prose figcaption {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.6em;
}

.wp-prose iframe { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); border: 0; }
.wp-prose hr { border: 0; border-top: 1px solid var(--border); margin: 2em 0; }

.wp-prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--foreground);
}

/* =========================================
   BREADCRUMBS
   ========================================= */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 12px;
  color: rgba(245,245,246,0.45);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: rgba(245,245,246,0.55);
  transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--brand); }

.breadcrumbs__sep {
  color: rgba(245,245,246,0.25);
}

/* =========================================
   PAGE LAYOUT
   ========================================= */

.page-header {
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-header__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.page-content-wrap {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* =========================================
   SINGLE POST
   ========================================= */

.single-post-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-radius: 1rem;
  margin-bottom: 2rem;
  background: var(--surface-2);
}

.single-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-header {
  margin-bottom: 2rem;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 12.5px;
  color: rgba(245,245,246,0.5);
  margin-bottom: 1rem;
}

.single-post-cat {
  display: inline-flex;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: rgba(210,5,21,0.15);
  border: 1px solid rgba(210,5,21,0.3);
  color: var(--brand);
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* =========================================
   ARCHIVE
   ========================================= */

.archive-header {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.archive-header__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.archive-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* =========================================
   SEARCH
   ========================================= */

.search-header {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 640px;
  margin-top: 1.5rem;
}

.search-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 15px;
  color: var(--foreground);
  transition: border-color 0.2s;
  outline: none;
}

.search-input:focus { border-color: var(--brand); }

.search-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--brand);
  color: white;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-btn:hover { background: var(--brand-deep); }

/* =========================================
   404
   ========================================= */

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 1.25rem;
}

.not-found__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: rgba(210,5,21,0.25);
  letter-spacing: -0.02em;
}

.not-found__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-top: -1rem;
}

.not-found__desc {
  margin-top: 1rem;
  font-size: 15px;
  color: rgba(245,245,246,0.6);
  max-width: 42ch;
}

/* =========================================
   PROMO SLOTS (Ads Manager — neutral class names avoid ad-blocker hiding)
   ========================================= */

.bt-promo-slot {
  padding: 1rem 0;
  text-align: center;
  width: 100%;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bt-promo-slot--site-top-all-pages,
.bt-promo-slot--site-top-non-home {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.bt-promo-slot--homepage-after-hero {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.bt-promo-slot--homepage-between-sections {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.bt-promo-unit {
  display: block;
  text-align: center;
}

.bt-promo-unit a {
  display: block;
  line-height: 0;
}

.bt-promo-unit img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bt-promo-unit--728x90,
.bt-promo-unit--970x250 {
  max-width: 100%;
  overflow-x: hidden;
}

.bt-promo-unit--160x600,
.bt-promo-unit--300x600 {
  display: none;
}

@media (min-width: 1280px) {
  .bt-promo-unit--160x600,
  .bt-promo-unit--300x600 { display: block; }
}

.bt-promo-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.5rem;
  text-align: center;
  display: none;
}

.bt-promo-sticky.active { display: block; }

.bt-promo-sticky__close {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 4px;
  color: var(--foreground);
  font-size: 12px;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .bt-promo-hide--desktop { display: none !important; }
  .bt-promo-img--mobile   { display: none !important; }
  .bt-promo-img--desktop  { display: block !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bt-promo-hide--tablet  { display: none !important; }
}
@media (max-width: 767px) {
  .bt-promo-hide--mobile  { display: none !important; }
  .bt-promo-img--mobile   { display: block !important; }
  .bt-promo-img--desktop  { display: none !important; }
}

.bt-promo-debug {
  background: #fffbe5;
  border: 1px solid #f0c040;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 11px;
  font-family: monospace;
  color: #555;
  text-align: left;
  margin: 4px 0;
  line-height: 1.5;
}

/* Side rail ads */
.bt-side-rail {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  max-width: 160px;
  transition: opacity 0.3s ease;
}

.bt-side-rail--left  { left: 12px; }
.bt-side-rail--right { right: 12px; }

.bt-side-rail.bt-rail--footer-visible {
  opacity: 0;
  pointer-events: none;
}

.bt-side-rail .bt-promo-slot {
  padding: 0;
  background: transparent;
  border: 0;
  min-height: 0;
}

.bt-side-rail .blt-container-wide {
  padding: 0;
  max-width: 160px;
}

/* =========================================
   SEASON FINISHED NOTICE
   ========================================= */

.bt-season-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(210,5,21,0.08);
  border: 1px solid rgba(210,5,21,0.25);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 13.5px;
  color: rgba(245,245,246,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.bt-season-notice__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bt-season-notice strong {
  color: var(--foreground);
}

/* =========================================
   RESPONSIBLE GAMBLING SECTION
   ========================================= */

.footer-grb {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  margin-bottom: 1rem;
}

.footer-grb__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-grb__text {
  flex: 1 1 240px;
  min-width: 200px;
}

.footer-grb__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.4rem;
}

.footer-grb__desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  margin: 0;
  max-width: 380px;
}

.footer-grb__logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-grb__badge18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d32f2f;
  border: 2.5px solid rgba(255,255,255,0.8);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.footer-grb__logo-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
  border-radius: 5px;
  text-decoration: none;
}

.footer-grb__logo-link:hover,
.footer-grb__logo-link:focus {
  opacity: 1;
}

.footer-grb__logo-img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 5px;
}

@media (max-width: 640px) {
  .footer-grb__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-grb__logos {
    gap: 0.5rem;
  }
  .footer-grb__logo-img {
    height: 36px;
  }
  .footer-grb__badge18 {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* =========================================
   ADMIN NOTICES
   ========================================= */

.blt-admin-notice {
  display: none;
}

.logged-in .blt-admin-notice {
  display: block;
  background: rgba(210,5,21,0.1);
  border: 1px solid rgba(210,5,21,0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: rgba(245,245,246,0.8);
  margin-bottom: 1rem;
}

/* =========================================
   TEAM STANDING PAGE
   ========================================= */

.team-page-hero {
  padding: 3rem 0 2rem;
}

.team-page-hero__color-bar {
  height: 4px;
  width: 48px;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.team-page-hero__crest-large {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  margin-bottom: 1.25rem;
}

.team-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.team-page-hero__position {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.team-page-hero__position-label {
  color: rgba(245, 245, 246, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 600;
}

.team-page-hero__position-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  line-height: 1;
}

.team-page-hero__position-sep {
  color: rgba(245, 245, 246, 0.35);
}

.team-page-hero__position-pts {
  color: rgba(245, 245, 246, 0.75);
}

.team-page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 13px;
  color: rgba(245,245,246,0.6);
}

.team-summary-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--card);
  overflow: hidden;
}

.team-summary-card__accent {
  height: 3px;
  width: 100%;
}

.team-summary-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
}

.team-summary-card__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.team-summary-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
  line-height: 1.15;
}

.team-summary-card__meta {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 246, 0.6);
}

.team-summary-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, auto));
  gap: 1rem 1.5rem;
  margin: 0;
}

.team-summary-card__stats dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.45);
  margin-bottom: 0.2rem;
}

.team-summary-card__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--foreground);
  line-height: 1;
}

.team-standing-detail {
  margin-top: 2rem;
}

.team-standing-detail__card {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--card);
  overflow: hidden;
}

.team-standing-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.team-standing-detail__header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.team-standing-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .team-standing-detail__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-standing-detail__grid dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.45);
  margin-bottom: 0.25rem;
}

.team-standing-detail__grid dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
}

.team-standing-detail__pts {
  color: var(--brand);
}

.team-standing-detail__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
}

.team-standing-detail__form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.45);
}

/* =========================================
   PAGINATION
   ========================================= */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13px;
  color: var(--foreground);
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.pagination .page-numbers:hover { border-color: rgba(255,255,255,0.25); }
.pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: white; }
.pagination .page-numbers.dots { border: none; background: none; }

/* =========================================
   UTILITY
   ========================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.text-brand { color: var(--brand); }
.text-muted { color: var(--muted-foreground); }
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.uppercase { text-transform: uppercase; }

/* Prevent horizontal scroll */
body, html { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }
table { max-width: 100%; }

/* =========================================
   WORDPRESS ALIGNMENT CLASSES
   ========================================= */

.alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; text-align: center; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; margin-left: -1.25rem; margin-right: -1.25rem; }

/* =========================================
   PAGE WITH SIDEBAR
   ========================================= */

.page-with-sidebar {
  display: block;
}

.page-with-sidebar__main {
  min-width: 0;
}

.page-sidebar {
  display: none !important;
}

.page-sidebar__widget {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  padding: 1.25rem;
}

.page-sidebar__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.55);
  margin: 0 0 1rem;
}

.page-sidebar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-sidebar__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: rgba(245, 245, 246, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.page-sidebar__nav li:last-child a {
  border-bottom: 0;
}

.page-sidebar__nav a:hover {
  color: var(--brand);
}

.page-sidebar__nav-arrow {
  color: rgba(245, 245, 246, 0.35);
  font-size: 0.875rem;
}

.page-sidebar__top3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-sidebar__top3 li {
  display: grid;
  grid-template-columns: 1.75rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9375rem;
}

.page-sidebar__pos {
  color: rgba(245, 245, 246, 0.45);
  font-size: 0.8125rem;
}

.page-sidebar__team {
  color: rgba(245, 245, 246, 0.92);
}

.page-sidebar__pts {
  color: var(--brand);
  font-weight: 600;
}

.page-sidebar__ad-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.45);
  margin-bottom: 0.75rem;
}

.page-sidebar__widget--ad .bt-promo-slot {
  margin: 0;
}

/* =========================================
   BETTING OFFERS
   ========================================= */

.betting-offers {
  margin-top: 0.5rem;
}

.betting-offers__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.betting-offer {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem minmax(140px, 1.1fr) minmax(160px, 1.4fr) auto auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.betting-offer:hover {
  border-color: rgba(245, 245, 246, 0.18);
  box-shadow: var(--shadow-elev-2);
  transform: translateY(-1px);
}

.betting-offer__badge {
  position: absolute;
  top: -0.55rem;
  left: 1rem;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.betting-offer__rank {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: rgba(245, 245, 246, 0.35);
  text-align: center;
}

.betting-offer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.betting-offer__logo {
  width: 56px;
  height: 56px;
  border-radius: 0.65rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.betting-offer__logo--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand);
}

.betting-offer__name {
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.2;
}

.betting-offer__bonus-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 246, 0.45);
  margin-bottom: 0.25rem;
}

.betting-offer__bonus-text {
  display: block;
  color: rgba(245, 245, 246, 0.92);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.betting-offer__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.betting-offer__star {
  font-size: 0.95rem;
  line-height: 1;
}

.betting-offer__star--full,
.betting-offer__star--half {
  color: #f5c518;
}

.betting-offer__star--empty {
  color: rgba(245, 245, 246, 0.18);
}

.betting-offer__rating-value {
  margin-left: 0.45rem;
  font-size: 0.8125rem;
  color: rgba(245, 245, 246, 0.65);
}

.betting-offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 132px;
  padding: 0.7rem 1rem;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.betting-offer__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.betting-offers--empty,
.betting-offers__empty-message {
  color: rgba(245, 245, 246, 0.6);
}

@media (max-width: 900px) {
  .betting-offer {
    grid-template-columns: 2rem 1fr;
    grid-template-areas:
      "rank brand"
      "bonus bonus"
      "rating cta";
    gap: 0.85rem 1rem;
  }

  .betting-offer__rank { grid-area: rank; }
  .betting-offer__brand { grid-area: brand; }
  .betting-offer__bonus { grid-area: bonus; }
  .betting-offer__rating-wrap { grid-area: rating; }
  .betting-offer__cta-wrap { grid-area: cta; justify-self: end; }
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.35rem); margin-top: 0.75rem; line-height: 1; }
  .hero__desc { margin-top: 0.75rem; font-size: 14px; line-height: 1.5; max-width: none; }
  .hero__actions { margin-top: 1rem; gap: 0.5rem; }
  .hero__match-panel { padding: 0.875rem 1rem !important; }
  .hero__match-header { font-size: 10px; margin-bottom: 0.75rem; }
  .hero__score-digits { font-size: 1.75rem; }
  .hero__team-name { font-size: 12px; }
  .hero__team-crest { width: 28px; height: 28px; }
  .hero__mini-table { display: none !important; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .league-table__legend { flex-direction: column; align-items: flex-start; }
  .hero__match-stats { gap: 0.5rem; }
  .quick-facts { padding: 1.5rem; }
}

@media (max-width: 479px) {
  .hero__match-stats { display: none; }
  .hero__team-form { display: none; }
}
