/* ============================================================
   TournamentsRush WordPress Theme - Complete Stylesheet
   Pixel-perfect conversion from Lovable/React + Tailwind
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --background: 210 40% 96%;
  --foreground: 217 33% 12%;
  --card: 0 0% 100%;
  --card-foreground: 217 33% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 217 33% 12%;
  --primary: 214 83% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 32% 92%;
  --secondary-foreground: 217 33% 12%;
  --muted: 210 28% 94%;
  --muted-foreground: 216 14% 43%;
  --accent: 210 100% 54%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 100%;
  --border: 214 28% 87%;
  --input: 214 28% 87%;
  --ring: 214 83% 48%;
  --radius: 1.1rem;
  --header-bg: 214 64% 90%;
  --header-foreground: 217 39% 18%;
  --header-pill: 0 0% 100%;
  --header-pill-hover: 210 100% 97%;
  --header-pill-active: 82 100% 45%;
  --header-pill-active-foreground: 216 44% 11%;
  --header-soft: 0 0% 100%;
  --header-soft-hover: 210 100% 98%;
  --header-outline: 214 32% 82%;
  --header-muted: 216 16% 40%;
  --sidebar-bg: 214 64% 90%;
  --sidebar-foreground: 217 32% 22%;
  --sidebar-hover: 0 0% 100%;
  --sidebar-active: 214 83% 48%;
  --sidebar-icon: 217 39% 18%;
  --sidebar-frame: 210 45% 97%;
  --sidebar-frame-border: 214 36% 84%;
  --hero-bg: 217 34% 11%;
  --hero-foreground: 0 0% 100%;
  --hero-muted: 214 19% 72%;
  --hero-accent: 82 100% 45%;
  --surface-elevated: 0 0% 100%;
  --surface-tint: 210 100% 98%;
  --surface-soft: 214 67% 95%;
  --table-row-hover: 214 80% 97%;
  --odds-positive: 142 60% 38%;
  --odds-negative: 0 65% 50%;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  background-color: hsl(var(--background));
  background-image: radial-gradient(circle at top left, hsl(var(--surface-tint)) 0%, hsl(var(--background)) 52%, hsl(var(--header-bg)) 100%);
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
}

button, a, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

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

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

ul, ol {
  list-style: none;
}

/* ─── LAYOUT ─── */
.site-wrapper {
  display: flex;
  min-height: 100vh;
  background: transparent;
  max-width: 100vw;
}

.site-main-col {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  /* NO overflow-x here — it kills position:sticky on the header */
}

/* pt-5 = 1.25rem gap between header and first section (matches source) */
/* pb-28 = 7rem bottom padding on mobile for mobile nav bar */
.site-main-content {
  flex: 1;
  padding: 1.25rem 1rem 1rem;
  overflow-x: hidden; /* overflow control here instead — below the sticky header */
}

.site-main-content .sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── TEXT UTILITIES ─── */
.text-foreground { color: hsl(var(--foreground)); }
.text-white { color: #fff; }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-accent { color: hsl(var(--accent)); }
.text-hero-muted { color: hsl(var(--hero-muted)); }
.text-hero-accent { color: hsl(var(--hero-accent)); }
.text-hero-foreground { color: hsl(var(--hero-foreground)); }

.text-balance { text-wrap: balance; }

/* ─── SHELL PANEL (white card sections) ─── */
.shell-panel {
  background: hsl(var(--surface-elevated));
  box-shadow: 0 30px 80px -34px hsl(var(--primary) / 0.2);
  border-radius: 1.75rem;
  border: 1px solid hsl(var(--border));
}

.shell-panel-padding {
  padding: 1.5rem;
}

/* ─── HEADER ─── */
.site-shell-header {
  background: linear-gradient(135deg, hsl(var(--hero-bg)) 0%, hsl(214 70% 26%) 48%, hsl(var(--accent)) 100%);
  color: hsl(var(--hero-foreground));
  border-bottom: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 24px 60px -34px hsl(var(--primary) / 0.5);
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  height: 88px;
  flex-shrink: 0;
  align-items: center;
  /* Prevent clipping on scroll */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  overflow: visible;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
}

.header-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-align: left;
}

/* Logo text */
.tournament-rush-logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: 1.65rem;
}

.tournament-rush-t {
  color: white;
}

.tournament-rush-r {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(170 80% 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav pills */
.header-nav {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-pill {
  background: hsl(var(--surface-elevated));
  color: hsl(var(--header-foreground));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.62);
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-pill:hover {
  background: hsl(var(--surface-elevated));
  border-color: hsl(var(--border));
  color: hsl(var(--header-foreground));
  transform: none;
}

.nav-pill-active {
  background: hsl(var(--header-pill-active));
  color: hsl(var(--header-pill-active-foreground));
  box-shadow: 0 18px 36px -20px hsl(var(--header-pill-active) / 0.9);
}

/* Mobile menu button */
.mobile-menu-button {
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.16);
  color: hsl(var(--hero-foreground));
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: pointer;
}

.mobile-menu-button:hover {
  background: hsl(0 0% 100% / 0.14);
}

.mobile-menu-button:active {
  transform: scale(0.97);
}

.mobile-menu-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ─── MOBILE CATEGORY BAR ─── */
.mobile-category-bar {
  background: linear-gradient(180deg, hsl(var(--hero-bg) / 0.92) 0%, hsl(214 70% 26% / 0.94) 60%, hsl(var(--accent) / 0.92) 100%);
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  box-shadow: 0 -26px 60px -30px hsl(var(--primary) / 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  /* Prevent browser chrome from cropping */
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.mobile-category-button {
  color: hsl(var(--hero-muted));
  background: hsl(0 0% 100% / 0.08);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.12);
  display: flex;
  min-height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.625rem 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-category-icon-wrap {
  background: hsl(0 0% 100% / 0.12);
  color: hsl(var(--hero-foreground));
  box-shadow: 0 12px 24px -18px hsl(var(--primary) / 0.45), inset 0 1px 0 hsl(0 0% 100% / 0.2);
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.mobile-category-icon-wrap svg {
  width: 1rem;
  height: 1rem;
}

.mobile-category-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-category-button-active {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 16px 34px -22px hsl(var(--primary) / 0.7);
  transform: translateY(-3px);
  border-color: hsl(0 0% 100% / 0.15);
}

.mobile-category-button-active .mobile-category-icon-wrap {
  background: hsl(0 0% 100% / 0.18);
  color: hsl(var(--primary-foreground));
}

/* ─── SIDEBAR ─── */
.sport-sidebar {
  display: none;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 176px;
  flex-shrink: 0;
  overflow-y: auto;
  padding: 1rem 0.75rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sport-sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar-frame {
  background: hsl(var(--sidebar-frame));
  border: 1px solid hsl(var(--sidebar-frame-border));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.5);
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
  border-radius: 2rem;
  padding: 0.75rem;
}

.sidebar-item {
  color: hsl(var(--sidebar-foreground));
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1.65rem;
  padding: 1.25rem 1.25rem;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-item:hover {
  background: transparent;
  color: hsl(var(--sidebar-foreground));
  transform: none;
  box-shadow: none;
}

.sidebar-item-vertical {
  min-height: 7.6rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0.5rem;
  text-align: center;
}

.sidebar-item-active {
  background: linear-gradient(135deg, hsl(var(--sidebar-active)) 0%, hsl(var(--accent)) 100%);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 22px 45px -24px hsl(var(--accent) / 0.92);
}

.sidebar-icon-wrap {
  background: hsl(var(--surface-soft));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.65);
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.sidebar-icon-wrap img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.sidebar-item-active .sidebar-icon-wrap {
  background: hsl(var(--primary-foreground) / 0.16);
}

.sidebar-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-see-all .sidebar-label {
  font-size: 0.7rem;
}

.sidebar-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ─── HERO PANEL ─── */
.hero-panel {
  background: linear-gradient(135deg, hsl(var(--hero-bg)) 0%, hsl(214 70% 26%) 45%, hsl(210 100% 54%) 100%);
  color: hsl(var(--hero-foreground));
  box-shadow: 0 38px 90px -34px hsl(var(--primary) / 0.42);
  position: relative;
  overflow: visible;
  border-radius: 1rem;
  padding: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.hero-panel::before {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: -4rem;
  background: hsl(var(--hero-accent) / 0.18);
}

.hero-panel::after {
  width: 14rem;
  height: 14rem;
  right: 10rem;
  bottom: -7rem;
  background: hsl(0 0% 100% / 0.08);
}

.hero-panel .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-panel .hero-desc {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-panel h1 {
  margin-top: 1.25rem;
  text-wrap: balance;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.05;
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-panel .hero-desc {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--hero-muted));
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--muted-foreground));
}

.section-heading {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.section-desc {
  margin-top: 0.75rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.section-center {
  margin-bottom: 2rem;
  text-align: center;
}

/* ─── GRID UTILITIES ─── */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.grid-1-gap5 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.grid-2-gap4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* ─── CONTENT CARD ─── */
.content-card {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.5rem;
}

.content-card h3 {
  font-size: 0.875rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.content-card p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.content-card--lg p {
  font-size: 0.875rem;
}

/* ─── PILLAR CARDS ─── */
.pillar-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.5rem;
  transition: all 0.2s;
}

.pillar-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.pillar-card .pillar-desc {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.pillar-bullets {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.pillar-bullet svg {
  margin-top: 2px;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.pillar-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}

.pillar-link:hover {
  gap: 0.625rem;
}

.pillar-link svg {
  width: 1rem;
  height: 1rem;
}

.color-accent { color: hsl(var(--accent)); }
.color-hero-accent { color: hsl(var(--hero-accent)); }
.color-primary { color: hsl(var(--primary)); }

/* ─── CASINO LIST GRID ─── */
.casino-section {
  padding: 1.25rem;
}

.casino-section-header {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.casino-section-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.casino-section-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.casino-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--primary));
}

.casino-section-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
}

.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.casino-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(145deg, hsl(var(--hero-bg)) 0%, hsl(214 70% 26%) 100%);
  border: 1px solid hsl(0 0% 100% / 0.1);
  box-shadow: 0 20px 50px -20px hsl(var(--primary) / 0.35);
}

.casino-rank {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10;
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  background: hsl(var(--hero-accent));
  color: hsl(var(--hero-bg));
}

.casino-badge-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
}

.casino-badge {
  border-radius: 9999px;
  padding: 0.125rem 0.75rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.badge-green { background: #22c55e; }
.badge-sky { background: #0ea5e9; }
.badge-orange { background: #f97316; }
.badge-purple { background: #a855f7; }
.badge-red { background: #ef4444; }
.badge-amber { background: #f59e0b; }
.badge-teal { background: #14b8a6; }
.badge-indigo { background: #6366f1; }
.badge-emerald { background: #10b981; }
.badge-yellow { background: #eab308; }

.casino-logo-container {
  margin: 0.75rem auto 0;
  display: flex;
  height: 5rem;
  width: 85%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background: hsl(0 0% 0% / 0.35);
  border: 1px solid hsl(0 0% 100% / 0.1);
}

.casino-logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.casino-name-rating {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1rem;
}

.casino-name {
  font-size: 1rem;
  font-weight: 800;
  color: hsl(var(--hero-foreground));
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.star-rating .stars {
  display: flex;
  gap: 2px;
}

.star-rating .stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

.star-filled {
  fill: #fbbf24;
  color: #fbbf24;
}

.star-empty {
  fill: hsl(var(--muted));
  color: hsl(var(--muted));
}

.star-rating .rating-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: hsl(var(--hero-muted));
}

.casino-bonus {
  margin-top: 0.5rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: hsl(var(--hero-foreground));
}

.casino-info-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  padding: 0 0.75rem;
}

.casino-info-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  background: hsl(0 0% 100% / 0.07);
  border: 1px solid hsl(0 0% 100% / 0.08);
}

.casino-info-item svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--hero-muted));
  flex-shrink: 0;
}

.casino-info-item span {
  font-size: 11px;
  font-weight: 700;
  color: hsl(var(--hero-muted));
}

.casino-info-verified svg {
  color: hsl(var(--hero-accent));
}

.casino-info-verified span {
  color: hsl(var(--hero-accent));
  font-weight: 800;
}

.casino-bonus-features {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}

.casino-bonus-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.casino-bonus-feature svg {
  width: 0.875rem;
  height: 0.875rem;
}

.casino-bonus-feature span {
  font-size: 11px;
  font-weight: 800;
}

.bonus-feature-accent svg,
.bonus-feature-accent span {
  color: hsl(var(--hero-accent));
}

.bonus-feature-amber svg,
.bonus-feature-amber span {
  color: #fbbf24;
}

.casino-payment-icons {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}

.casino-payment-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.12);
}

.casino-payment-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--hero-foreground));
}

.casino-cta {
  margin-top: auto;
  padding: 0.75rem 0.75rem 1rem;
}

.casino-cta-button {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  color: hsl(var(--hero-foreground));
  box-shadow: 0 14px 34px -14px hsl(var(--accent) / 0.7);
  transition: all 0.2s;
}

.casino-cta-button:hover {
  filter: brightness(1.1);
}

.casino-cta-button:active {
  transform: scale(0.97);
}

/* ─── DARK HERO SECTION ─── */
.dark-hero-section {
  border-radius: 1.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--hero-bg));
  padding: 1.5rem;
}

.dark-hero-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.dark-hero-card h3 {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
}

.dark-hero-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--hero-muted));
}

/* ─── EXPLORE SPORTS SECTION ─── */
.explore-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
}

.explore-text { flex: 1; }

.sport-pills {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sport-pill {
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-elevated));
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.sport-pill-muted {
  color: hsl(var(--muted-foreground));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  flex-shrink: 0;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.25rem;
  text-align: center;
}

.stat-box .stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--accent));
}

.stat-box .stat-label {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
}

/* ─── ABOUT TEASER ─── */
.about-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.about-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.25rem;
  text-align: center;
}

.about-stat-box .stat-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: hsl(var(--foreground));
}

.about-stat-box .stat-label {
  margin-top: 0.125rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
}

/* ─── EDITORIAL PROCESS / TIMELINE ─── */
.timeline-wrapper {
  position: relative;
}

.timeline-line {
  display: none;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
}

.timeline-step-card {
  flex: 1;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.5rem;
}

.timeline-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-badge {
  border-radius: 0.375rem;
  background: hsl(var(--accent) / 0.1);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 900;
  color: hsl(var(--accent));
}

.timeline-step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.timeline-step-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.5rem;
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: hsl(var(--hero-accent));
  color: hsl(var(--hero-accent));
}

.testimonial-category {
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.1);
  padding: 0.125rem 0.625rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--accent));
}

.testimonial-quote {
  flex: 1;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.testimonial-author {
  margin-top: 1.25rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
}

.testimonial-author .author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.testimonial-author .author-loc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ─── RESPONSIBLE GAMBLING ─── */
.rg-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rg-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.875rem 1rem;
}

.rg-tip span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.rg-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--primary-foreground));
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
}

.btn-hero-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--hero-accent));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--hero-bg));
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hero-accent:hover {
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--accent));
  transition: all 0.2s;
}

.link-accent:hover {
  gap: 0.75rem;
}

.link-accent svg {
  width: 1rem;
  height: 1rem;
}

/* ─── FOOTER ─── */
.site-shell-footer {
  background: linear-gradient(135deg, hsl(var(--hero-bg)) 0%, hsl(214 70% 26%) 48%, hsl(var(--accent)) 100%);
  color: hsl(var(--hero-foreground));
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 28px 70px -34px hsl(var(--primary) / 0.38);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.site-shell-footer::before,
.site-shell-footer::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.site-shell-footer::before {
  width: 14rem;
  height: 14rem;
  top: -4rem;
  right: -3rem;
  background: hsl(var(--hero-accent) / 0.12);
}

.site-shell-footer::after {
  width: 10rem;
  height: 10rem;
  left: 16%;
  bottom: -4rem;
  background: hsl(0 0% 100% / 0.06);
}

.footer-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* ─── FAQs TEASER ─── */
.faq-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── MOBILE DRAWER OVERLAY ─── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 51;
  max-height: 84vh;
  border-radius: 2rem 2rem 0 0;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.drawer-panel.active {
  transform: translateY(0);
}

.drawer-header {
  padding: 1.25rem 1.25rem 0.5rem;
  text-align: left;
}

.drawer-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: hsl(var(--foreground));
}

.drawer-sport-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: calc(84vh - 5rem);
  padding: 0 1rem 2rem;
}

.drawer-sport-list .sidebar-item {
  padding: 1.25rem;
}

.drawer-sport-list .sidebar-item .sidebar-icon-wrap img,
.drawer-sport-list .sidebar-item .sidebar-icon-wrap svg {
  width: 2.25rem;
  height: 2.25rem;
}

.drawer-sport-list .sidebar-item span.sport-name {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

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

.animate-fade-in {
  animation: fadeInUp 0.5s ease-out;
}

/* ─── SVG ICON HELPERS ─── */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* SM: 640px+ */
@media (min-width: 640px) {
  .hero-panel h1 {
    font-size: 2.8rem;
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .rg-tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MD: 768px+ */
@media (min-width: 768px) {
  .site-shell-header {
    height: 96px;
    padding: 0 1.5rem;
  }

  .tournament-rush-logo {
    font-size: 1.9rem;
  }

  .site-main-content {
    padding: 1.25rem 1.25rem 1rem;
  }

  .hero-panel {
    border-radius: 1.25rem;
    padding: 2.5rem;
  }

  .hero-panel h1 {
    font-size: 3.4rem;
  }

  .hero-panel .hero-desc {
    font-size: 1.125rem;
    line-height: 2;
  }

  .shell-panel-padding {
    padding: 2.5rem;
  }

  .section-heading {
    font-size: 1.875rem;
  }

  .section-desc {
    max-width: 48rem;
  }

  .casino-section {
    padding: 1.5rem;
  }

  .dark-hero-section {
    padding: 2.5rem;
  }

  .explore-section-inner {
    padding: 2.5rem;
  }

  .site-shell-footer {
    border-radius: 1.25rem;
  }

  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    display: block;
    position: absolute;
    left: 1.75rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: hsl(var(--border));
  }

  .timeline-steps {
    padding-left: 5rem;
  }
}

/* LG: 1024px+ */
@media (min-width: 1024px) {
  .site-shell-header {
    height: 108px;
    padding: 0 2rem;
  }

  .header-inner {
    gap: 2rem;
  }

  .header-nav {
    display: flex;
  }

  .tournament-rush-logo {
    font-size: 2.2rem;
  }

  .mobile-menu-button {
    display: none;
  }

  .mobile-category-bar {
    display: none;
  }

  .sport-sidebar {
    display: block;
  }

  .site-main-col {
    padding-right: 1.25rem;
  }

  .hero-panel h1 {
    font-size: clamp(2.4rem, 3.2vw, 4rem);
    line-height: 0.96;
  }

  .casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .explore-section-inner {
    flex-direction: row;
    align-items: center;
  }

  .about-section-inner {
    flex-direction: row;
    align-items: center;
  }

  .about-stats {
    width: 18rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-section-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .rg-tips-grid {
    width: 16rem;
    grid-template-columns: 1fr;
  }

  .faq-teaser-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* XL: 1280px+ */
@media (min-width: 1280px) {
  .sport-sidebar {
    width: 188px;
  }

  .casino-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ═══════════════════════════════════════════════════════════
   CRITICAL: HEADER GAP FIX
   WordPress injects margin-top on <html> for the admin bar.
   We override everything to ensure header sticks to top.
   ═══════════════════════════════════════════════════════════ */

/* Reset all WP-injected spacing */
html,
html.wp-toolbar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* WP admin bar: move it, don't let it push content */
.admin-bar .site-shell-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-shell-header {
    top: 46px;
  }
  #wpadminbar {
    position: fixed !important;
  }
}

/* When logged out (no admin bar), header sits at absolute top */
.site-shell-header {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER ABOVE MOBILE NAV BAR
   On mobile/tablet the fixed bottom nav is ~82px.
   Footer must end right above it.
   ═══════════════════════════════════════════════════════════ */

/* Mobile/tablet: comprehensive overflow + layout fixes */
@media (max-width: 1023px) {
  .site-shell-footer {
    margin-bottom: 5rem;
  }

  /* Everything must stay inside its container */
  .site-main-content {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .sections-wrapper {
    overflow: hidden;
    max-width: 100%;
  }

  .shell-panel {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .hero-panel {
    overflow: visible;
    padding: 1.5rem 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-panel h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-panel .hero-inner {
    max-width: 100%;
  }

  .hero-panel .hero-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .article-panel,
  .faq-panel,
  .author-panel {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .article-panel {
    padding: 1rem;
  }

  .article-body {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .article-body h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .article-body h3 {
    font-size: 1.1rem;
  }

  .article-body p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Casino grid stays within bounds */
  .casino-section {
    padding: 0.75rem;
    max-width: 100%;
  }

  .casino-grid {
    max-width: 100%;
  }

  /* Author box mobile */
  .author-card {
    max-width: 100%;
  }

  .author-card-bio {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* FAQ mobile */
  .faq-panel {
    padding: 1rem;
  }

  .faq-panel .faq-block h3 {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Tournament pills scroll container */
  .tournament-pill {
    min-width: 240px;
  }
}

/* Desktop: no fixed nav */
@media (min-width: 1024px) {
  .site-shell-footer {
    margin-bottom: 0;
  }
}

/* ─── TABLET FIXES (768px - 1023px) incl. iPad Air (820px) ─── */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Global: keep everything inside viewport */
  .site-main-content {
    overflow-x: hidden;
    max-width: 100%;
  }

  .shell-panel {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .hero-panel {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 2rem 1.5rem;
  }

  .hero-panel .hero-inner {
    max-width: 100%;
  }

  /* Homepage sections */
  .hero-panel h1 {
    font-size: 2.4rem;
    line-height: 1.05;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .grid-lg-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-lg-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-section-inner {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-section-inner {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .rg-section-inner {
    flex-direction: column;
  }

  .rg-tips-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .faq-teaser-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .dark-hero-section {
    padding: 2rem;
  }

  .shell-panel-padding {
    padding: 2rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  /* ── Secondary/inner pages on tablet ── */
  .inner-page-content {
    max-width: 100%;
    padding: 2.5rem 2rem 2rem;
  }

  .inner-page-content--narrow {
    max-width: 100%;
  }

  .inner-page-content--wide {
    max-width: 100%;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero .page-hero-desc {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* About page: team cards side-by-side */
  .team-card {
    flex-direction: row;
    gap: 1.5rem;
  }

  .team-card--reverse {
    flex-direction: row-reverse;
  }

  .team-card-photo {
    width: 12rem;
  }

  .team-card-photo img {
    width: 8rem;
    height: 8rem;
  }

  /* Inner page grids */
  .ip-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials page grid */
  .tp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQs */
  .faq-section h2 {
    font-size: 1.25rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  /* Contact form */
  .form-card {
    padding: 2rem;
  }

  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact cards — 4 in a row on tablet */
  .ip-grid-4.contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-card h3 {
    font-size: 0.8rem;
  }

  .contact-card .contact-detail,
.contact-card .contact-card-detail {
    font-size: 0.75rem;
    word-break: break-word;
  }

  .contact-card .contact-sub,
.contact-card .contact-card-sub {
    font-size: 0.65rem;
  }

  /* Prose content (Terms, Privacy etc) */
  .prose-legal h2 {
    font-size: 1.375rem;
  }

  .prose-legal h3 {
    font-size: 1.125rem;
  }

  /* Value cards — horizontal on tablet */
  .value-card {
    flex-direction: row;
    gap: 1rem;
    padding: 1.25rem;
  }

  .ip-grid-2 .value-card {
    flex-direction: row;
  }

  /* Sports page */
  .sports-featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sports-more-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Tablet: header/menu anti-crop */
  .site-shell-header {
    overflow: visible;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .mobile-category-bar {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  /* Tablet: content overflow fixes */
  .article-panel {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .article-body {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .article-body p,
  .article-body h2,
  .article-body h3 {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .faq-panel,
  .author-panel {
    overflow: visible;
    max-width: 100%;
    word-wrap: break-word;
  }

  .hero-panel .hero-desc {
    max-width: 100%;
  }

  .casino-section {
    max-width: 100%;
  }
}

/* ─── INNER PAGE STYLES ─── */
.inner-page {
  min-height: 100vh;
  padding-bottom: 7rem;
}

.inner-page-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.inner-page-content--narrow {
  max-width: 100%;
}

.inner-page-content--wide {
  max-width: 100%;
}

/* Page hero */
.page-hero {
  margin-bottom: 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.page-hero .page-hero-desc {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2;
  color: hsl(var(--foreground) / 0.8);
}

.page-hero .page-hero-desc a {
  font-weight: 500;
  color: hsl(var(--primary));
}

.page-hero .page-hero-desc a:hover {
  text-decoration: underline;
}

/* Prose-style content (Terms, Privacy, Gamble Responsibly, Gambling Addiction) */
.prose-legal {
  margin-top: 2rem;
}

.prose-legal > * + * {
  margin-top: 1.5rem;
}

.prose-legal p {
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.85);
}

.prose-legal h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.prose-legal h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.prose-legal .last-updated {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Section headings for inner pages */
.inner-section-heading {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.inner-section-heading--center {
  text-align: center;
  margin-bottom: 2rem;
}

/* Card component for inner pages */
.ip-card {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}

.ip-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.ip-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.8);
}

.ip-card--small h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ip-card--small p {
  font-size: 0.75rem;
}

/* Grid for inner pages */
.ip-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ip-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ip-grid-4 { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* Value card with icon */
/* Mobile: stack icon + text vertically */
.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}

.value-card-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
}

.value-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.value-card h3 {
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.8);
}

/* Accuracy card (centered icon) */
.accuracy-card {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  text-align: center;
}

.accuracy-card-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  margin: 0 auto 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
}

.accuracy-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.accuracy-card h3 {
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.accuracy-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.8);
}

/* Team member card */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}

.team-card-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.team-card-photo img {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-card-photo h3 {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.team-card-photo .team-role {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.team-card-photo .team-location {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.team-card-bio {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.85);
}

/* Contact info cards */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  text-align: center;
}

.contact-card-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
}

.contact-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.contact-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.contact-card .contact-detail,
.contact-card .contact-card-detail {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.contact-card .contact-sub,
.contact-card .contact-card-sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Form styles */
.form-card {
  max-width: 42rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2rem;
}

.form-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary));
}

.form-group textarea {
  resize: none;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-submit {
  width: 100%;
  border-radius: 0.5rem;
  background: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.form-submit:hover {
  background: hsl(var(--primary) / 0.9);
}

.form-success {
  padding: 3rem 0;
  text-align: center;
}

.form-success-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  margin: 0 auto 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: hsl(142 60% 38% / 0.1);
}

.form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(142 60% 38%);
}

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.form-success p {
  margin-top: 0.5rem;
  color: hsl(var(--foreground) / 0.7);
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
}

.faq-question:hover {
  background: hsl(var(--surface-tint));
}

.faq-question svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: hsl(var(--muted-foreground));
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.8);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Testimonial page cards */
.tp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.tp-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tp-card .tp-quote-icon {
  margin-bottom: 0.75rem;
  color: hsl(var(--primary) / 0.3);
}

.tp-card .tp-quote-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tp-card .tp-highlight {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.tp-card .tp-text {
  flex: 1;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.75);
}

.tp-card .tp-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
  margin-top: auto;
}

.tp-card .tp-stars {
  display: flex;
  gap: 2px;
}

.tp-card .tp-stars svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.tp-card .tp-author {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.6);
}

/* Testimonials CTA */
.tp-cta {
  margin-top: 4rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2rem;
  text-align: center;
}

.tp-cta h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.tp-cta p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
}

.tp-cta .tp-email {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

/* Testimonial sections */
.tp-section {
  margin-bottom: 3.5rem;
}

.tp-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

/* All Sports page */
.sports-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.sport-featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1rem 0.75rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  overflow: hidden;
}

.sport-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.sport-featured-icon {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transition: all 0.2s;
}

.sport-featured-card:hover .sport-featured-icon {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.sport-featured-icon img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.sport-featured-card .sport-featured-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
  text-align: center;
  word-break: break-word;
}

.sport-featured-card .sport-arrow {
  opacity: 0;
  transition: opacity 0.2s;
}

.sport-featured-card:hover .sport-arrow {
  opacity: 1;
}

.sport-featured-card .sport-arrow svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
}

/* More sports grid — 1 column on mobile to prevent text cropping */
.sports-more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.sport-more-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  transition: all 0.2s;
  text-decoration: none;
  min-width: 0;
}

.sport-more-card:hover {
  transform: translateY(-2px);
  background: hsl(var(--primary) / 0.05);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
}

.sport-more-card span {
  flex: 1;
  min-width: 0;
}

.sport-more-card svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
}

/* ─── INNER PAGE RESPONSIVE ─── */

/* SM: 640px+ */
@media (min-width: 640px) {
  /* Value card: switch to horizontal layout */
  .value-card {
    flex-direction: row;
    gap: 1rem;
  }

  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sport-featured-card {
    padding: 1.25rem 1rem;
  }

  .sport-featured-card .sport-featured-name {
    font-size: 0.875rem;
  }
}

/* 768px+ inner page rules already covered by tablet block above */

@media (min-width: 1024px) {
  .inner-page {
    padding-bottom: 1.5rem;
  }

  /* Inner pages use 75% of page width on desktop */
  .inner-page-content {
    max-width: 75%;
    padding: 3rem 0;
  }

  .inner-page-content--narrow {
    max-width: 60%;
  }

  .inner-page-content--wide {
    max-width: 80%;
  }

  .ip-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tp-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-featured-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .sports-more-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1280px) {
  .sports-more-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ─── ARTICLE CONTENT (Category Pages) ─── */
.article-panel {
  padding: 1.25rem;
}

.article-panel .article-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-body p {
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.article-body a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.article-body a:hover {
  color: hsl(var(--primary) / 0.8);
}

.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ section on category pages */
.faq-panel {
  padding: 1.25rem 1.25rem 1.5rem;
}

.faq-panel h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.faq-panel .faq-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-panel .faq-block h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.faq-panel .faq-block p {
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* ─── AUTHOR BOX (Category Pages) ─── */
.author-panel {
  padding: 1.25rem;
}

.author-panel-header {
  margin-bottom: 1.5rem;
}

.author-panel-header .author-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--primary));
}

.author-panel-header h2 {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.author-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

/* Single author — always 1 column, full width */
.author-grid--single {
  grid-template-columns: 1fr !important;
}

.author-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-tint));
  padding: 1.25rem;
}

.author-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.author-avatar {
  position: relative;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--secondary));
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card-info .author-name {
  font-size: 0.875rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.author-card-info .author-role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
}

.author-card-bio {
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.author-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.author-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transition: all 0.2s;
}

.author-social-link:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.author-social-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* SM+: author card becomes horizontal */
@media (min-width: 640px) {
  .author-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .author-card-top {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .author-avatar {
    width: 5rem;
    height: 5rem;
  }

  .author-card-info {
    text-align: center;
  }
}

/* MD+: 2 columns */
@media (min-width: 768px) {
  .author-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-panel {
    padding: 2rem;
  }

  .author-panel-header h2 {
    font-size: 1.5rem;
  }

  .article-panel {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .faq-panel {
    padding: 1.5rem;
  }
}

/* ─── GUIDE SCREENSHOT ─── */
.guide-screenshot {
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 auto;
}

.guide-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .guide-screenshot {
    max-width: 1200px;
    max-height: 628px;
  }

  .guide-screenshot img {
    width: 1200px;
    height: 628px;
    max-width: 100%;
    object-fit: cover;
  }
}

/* ─── TIPS & GUIDES LISTING ─── */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.guide-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.guide-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: hsl(var(--muted));
}

.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.guide-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.guide-card-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--border));
}

.guide-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-card-author img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  object-fit: cover;
}

.guide-card-author span {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.guide-card-read {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--primary) / 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

/* Guides pagination */
.guides-pagination {
  margin-top: 2rem;
  text-align: center;
}

.guides-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

.guides-pagination a,
.guides-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  background: hsl(var(--card));
  transition: all 0.2s;
}

.guides-pagination a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.guides-pagination .current {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

/* Guides grid responsive */
@media (min-width: 640px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── PRINT ─── */
@media print {
  .sport-sidebar,
  .mobile-category-bar,
  .site-shell-header {
    display: none;
  }
}
