/* Realz Casino - Static HTML Export Styles */
/* Complete CSS converted from Tailwind + Custom */

/* ============================================= */
/* RESET & BOX SIZING */
/* ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

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

/* ============================================= */
/* CSS VARIABLES (Design Tokens) */
/* ============================================= */
:root {
  /* Core Colors */
  --background: hsl(0, 0%, 5%);
  --foreground: hsl(45, 10%, 90%);
  
  /* Card/Surface */
  --card: hsl(0, 0%, 8%);
  --card-foreground: hsl(45, 10%, 90%);
  
  /* Popover */
  --popover: hsl(0, 0%, 10%);
  --popover-foreground: hsl(45, 10%, 90%);
  
  /* Primary - Gold */
  --primary: hsl(45, 90%, 55%);
  --primary-foreground: hsl(0, 0%, 5%);
  
  /* Secondary - Dark Gold */
  --secondary: hsl(40, 70%, 25%);
  --secondary-foreground: hsl(45, 90%, 85%);
  
  /* Muted */
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 55%);
  
  /* Accent - Cyan/Turquoise */
  --accent: hsl(185, 80%, 50%);
  --accent-foreground: hsl(0, 0%, 5%);
  
  /* Destructive */
  --destructive: hsl(0, 70%, 50%);
  --destructive-foreground: hsl(0, 0%, 98%);
  
  /* Border & Input */
  --border: hsl(45, 50%, 25%);
  --input: hsl(0, 0%, 15%);
  --ring: hsl(45, 90%, 55%);
  
  --radius: 0.5rem;
  
  /* Sidebar */
  --sidebar-background: hsl(0, 0%, 7%);
  --sidebar-foreground: hsl(45, 10%, 80%);
  --sidebar-primary: hsl(45, 90%, 55%);
  --sidebar-accent: hsl(0, 0%, 12%);
  --sidebar-border: hsl(45, 30%, 20%);
  
  /* Custom Tokens */
  --gold: hsl(45, 90%, 55%);
  --gold-dark: hsl(40, 70%, 35%);
  --gold-light: hsl(45, 85%, 70%);
  --cyan: hsl(185, 80%, 50%);
  --cyan-dark: hsl(185, 70%, 35%);
  --surface-dark: hsl(0, 0%, 10%);
  --surface-darker: hsl(0, 0%, 6%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45, 90%, 55%) 0%, hsl(35, 80%, 45%) 100%);
  --gradient-cyan: linear-gradient(135deg, hsl(185, 80%, 50%) 0%, hsl(195, 70%, 40%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 10%) 0%, hsl(0, 0%, 5%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(185, 60%, 40%) 0%, hsl(200, 50%, 30%) 50%, hsl(0, 0%, 8%) 100%);
  
  /* Shadows */
  --shadow-gold: 0 4px 20px -5px hsla(45, 90%, 55%, 0.3);
  --shadow-cyan: 0 4px 20px -5px hsla(185, 80%, 50%, 0.3);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================= */
/* UTILITY CLASSES */
/* ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }

/* Font sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================= */
/* CUSTOM COMPONENT STYLES */
/* ============================================= */

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, hsl(45, 90%, 65%) 0%, hsl(35, 80%, 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold Border */
.gold-border {
  border: 1px solid hsla(45, 90%, 55%, 0.5);
  box-shadow: inset 0 0 10px hsla(45, 90%, 55%, 0.1);
}

/* Glow Effects */
.gold-glow {
  box-shadow: 0 0 20px hsla(45, 90%, 55%, 0.3), 0 0 40px hsla(45, 90%, 55%, 0.1);
}

.cyan-glow {
  box-shadow: 0 0 20px hsla(185, 80%, 50%, 0.3), 0 0 40px hsla(185, 80%, 50%, 0.1);
}

/* Buttons */
.btn-gold {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  background-color: hsla(45, 90%, 55%, 0.9);
  box-shadow: 0 6px 25px -5px hsla(45, 90%, 55%, 0.5);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, hsl(185, 80%, 50%) 0%, hsl(195, 70%, 45%) 100%);
  color: hsl(0, 0%, 5%);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-cyan:hover {
  box-shadow: 0 6px 30px -5px hsla(185, 80%, 50%, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================= */
/* HEADER */
/* ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 5%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.header-search {
  display: none;
  flex: 1;
  max-width: 400px;
  margin: 0 32px;
}

.header-search input {
  width: 100%;
  padding: 8px 12px 8px 40px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

.header-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: color 0.2s;
}

.header-lang-btn:hover {
  color: var(--foreground);
}

.header-lang-btn img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.mobile-menu-btn {
  display: flex;
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
}

/* Mobile Search */
.mobile-search {
  display: block;
  padding: 0 16px 12px;
}

.mobile-search input {
  width: 100%;
  padding: 8px 12px 8px 40px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

/* ============================================= */
/* SIDEBAR */
/* ============================================= */
.sidebar {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: 224px;
  background-color: var(--sidebar-background);
  border-right: 1px solid var(--sidebar-border);
  z-index: 40;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar-promo {
  margin: 16px 8px;
  padding: 12px;
  border-radius: 0.5rem;
  background: linear-gradient(to right, hsla(40, 70%, 20%, 0.3), hsla(40, 70%, 15%, 0.2));
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.sidebar-promo:hover {
  border-color: hsla(45, 90%, 55%, 0.5);
}

.sidebar-promo-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  background-color: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sidebar-promo-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
}

.sidebar-section-title {
  padding: 0 16px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: 0 8px;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
}

.sidebar-item:hover {
  color: var(--primary);
  background-color: var(--sidebar-accent);
}

.sidebar-item.active {
  color: var(--primary);
  background-color: var(--sidebar-accent);
  border-left: 3px solid var(--primary);
}

.sidebar-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-badge {
  margin-left: auto;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  background-color: hsl(142, 76%, 36%);
  color: white;
  border-radius: 0.25rem;
}

.sidebar-divider {
  margin: 16px 8px;
  border-top: 1px solid var(--sidebar-border);
}

.sidebar-bottom {
  border-top: 1px solid var(--sidebar-border);
  padding: 12px;
}

.sidebar-lang-switcher {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background-color: hsla(45, 90%, 55%, 0.1);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-lang-switcher:hover {
  background-color: hsla(45, 90%, 55%, 0.2);
  border-color: hsla(45, 90%, 55%, 0.5);
}

.sidebar-lang-switcher img {
  width: 28px;
  height: 20px;
  border-radius: 2px;
}

.sidebar-lang-switcher span {
  flex: 1;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ============================================= */
/* MAIN CONTENT AREA */
/* ============================================= */
.main-content {
  flex: 1;
  padding-top: 96px;
  padding-bottom: 80px;
}

.main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 5%, 0.95), hsla(0, 0%, 5%, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 200px;
  padding: 24px 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 9999px;
  background-color: hsla(0, 0%, 8%, 0.6);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  backdrop-filter: blur(4px);
}

.hero-badge svg {
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.hero h1 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  max-width: 320px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  max-width: 280px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 9999px;
  background-color: hsla(0, 0%, 8%, 0.6);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(4px);
}

.hero-feature svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.hero-feature span {
  font-size: 10px;
  font-weight: 500;
  color: var(--foreground);
}

.hero-dots {
  position: absolute;
  bottom: 8px;
  left: 16px;
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: hsla(0, 0%, 100%, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-dot.active {
  width: 20px;
  background-color: var(--primary);
}

/* ============================================= */
/* GAME CATEGORIES */
/* ============================================= */
.game-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.game-categories::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.category-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-pill.active {
  border-color: var(--primary);
  background-color: hsla(45, 90%, 55%, 0.1);
  color: var(--primary);
}

.category-pill svg {
  width: 16px;
  height: 16px;
}

/* ============================================= */
/* GAME GRID */
/* ============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-arrows {
  display: flex;
  gap: 4px;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--card);
  cursor: pointer;
  transition: all 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px hsla(45, 90%, 55%, 0.3);
}

.game-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.5rem;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-number {
  position: absolute;
  bottom: 4px;
  left: 8px;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsla(255, 255, 255, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border-radius: 0.25rem;
}

.game-badge.exclusive {
  background-color: hsl(270, 70%, 50%);
}

.game-badge.new {
  background-color: hsl(142, 76%, 36%);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

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

.game-play-btn svg {
  color: var(--primary-foreground);
  margin-left: 2px;
}

.game-info {
  padding: 6px 8px;
}

.game-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-provider {
  font-size: 10px;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================= */
/* SPORTS CATEGORIES */
/* ============================================= */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.sport-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(to top, var(--card), hsla(0, 0%, 8%, 0.8), transparent);
  cursor: pointer;
}

.sport-card:hover .sport-image img {
  transform: scale(1.05);
}

.sport-image {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.sport-image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
  transition: transform 0.3s;
}

.sport-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to top, var(--card), transparent);
}

.sport-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
}

.sport-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--foreground);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sport-subtitle {
  font-size: 10px;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================= */
/* PROMO BANNERS */
/* ============================================= */
.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  height: 140px;
  cursor: pointer;
}

.promo-banner:hover .promo-bg img {
  transform: scale(1.05);
}

.promo-bg {
  position: absolute;
  inset: 0;
}

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 5%, 0.95), hsla(0, 0%, 5%, 0.7), transparent);
}

.promo-overlay.reverse {
  background: linear-gradient(to left, hsla(0, 0%, 5%, 0.95), hsla(0, 0%, 5%, 0.7), transparent);
}

.promo-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 12px 16px;
}

.promo-content.reverse {
  align-items: flex-end;
  text-align: right;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  margin-bottom: 6px;
  border-radius: 9999px;
  background-color: hsla(45, 90%, 55%, 0.2);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  width: fit-content;
}

.promo-badge svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.promo-title {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2px;
  max-width: 140px;
  line-height: 1.2;
}

.promo-subtitle {
  font-size: 10px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
  max-width: 130px;
}

.promo-btn {
  padding: 6px 12px;
  font-size: 10px;
}

/* Large Promo Banners */
.promo-banner-lg {
  height: 160px;
}

.promo-banner-lg .promo-title {
  font-size: 1.125rem;
}

.promo-banner-lg .promo-subtitle {
  font-size: 0.75rem;
  max-width: 200px;
}

/* ============================================= */
/* FEATURES SECTION */
/* ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 0.5rem;
  background-color: hsla(0, 0%, 8%, 0.5);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: hsla(45, 90%, 55%, 0.3);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================= */
/* REVIEWS BLOCK */
/* ============================================= */
.review-rating-card {
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--card), var(--card), hsla(45, 90%, 55%, 0.05));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.review-rating-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background-color: hsla(45, 90%, 55%, 0.1);
  transform: rotate(45deg) translate(64px, -64px);
}

.review-rating-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-score {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  border: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
}

.review-score-value {
  font-family: 'Cinzel', serif;
  font-size: 1.875rem;
  font-weight: 700;
}

.review-score-max {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-info {
  flex: 1;
}

.review-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-title {
  font-size: 1.25rem;
}

.review-badge {
  padding: 2px 8px;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  background-color: hsla(142, 76%, 36%, 0.2);
  color: hsl(142, 76%, 46%);
  border: 1px solid hsla(142, 76%, 36%, 0.3);
}

.review-verdict {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.review-verdict svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.review-verdict p {
  font-size: 0.875rem;
  color: var(--foreground);
  font-style: italic;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pros-card, .cons-card {
  padding: 20px;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.pros-card {
  background-color: hsla(142, 76%, 36%, 0.05);
  border: 1px solid hsla(142, 76%, 36%, 0.2);
}

.cons-card {
  background-color: hsla(25, 95%, 53%, 0.05);
  border: 1px solid hsla(25, 95%, 53%, 0.2);
}

.pros-card::before, .cons-card::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
}

.pros-card::before {
  background-color: hsla(142, 76%, 36%, 0.1);
}

.cons-card::before {
  background-color: hsla(25, 95%, 53%, 0.1);
}

.pros-header, .cons-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.pros-icon, .cons-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-icon {
  background-color: hsla(142, 76%, 36%, 0.2);
  color: hsl(142, 76%, 46%);
}

.cons-icon {
  background-color: hsla(25, 95%, 53%, 0.2);
  color: hsl(25, 95%, 53%);
}

.pros-title, .cons-title {
  font-weight: 600;
  color: var(--foreground);
}

.pros-list, .cons-list {
  list-style: none;
  position: relative;
  z-index: 10;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.pros-list li span:first-child {
  color: hsl(142, 76%, 46%);
  margin-top: 2px;
}

.cons-list li span:first-child {
  color: hsl(25, 95%, 53%);
  margin-top: 2px;
}

.pros-list li span:last-child, .cons-list li span:last-child {
  color: var(--muted-foreground);
}

/* Player Reviews */
.player-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.player-review-card {
  padding: 16px;
  border-radius: 0.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.player-review-card:hover {
  border-color: hsla(45, 90%, 55%, 0.3);
}

.player-review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.player-info {
  flex: 1;
}

.player-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

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

.player-stars svg {
  width: 10px;
  height: 10px;
}

.player-stars svg.filled {
  color: var(--primary);
  fill: var(--primary);
}

.player-stars svg.empty {
  color: var(--muted-foreground);
}

.player-review-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.player-review-date {
  font-size: 0.75rem;
  color: hsla(0, 0%, 55%, 0.6);
}

/* ============================================= */
/* CHANGELOG BLOCK */
/* ============================================= */
.changelog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.changelog-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.changelog-title {
  font-size: 1.25rem;
}

.changelog-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.changelog-timeline {
  position: relative;
}

.changelog-line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: var(--border);
}

.changelog-entry {
  position: relative;
  display: flex;
  gap: 16px;
  padding-left: 24px;
  margin-bottom: 16px;
}

.changelog-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 9999px;
  background-color: var(--card);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.changelog-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: var(--primary);
}

.changelog-content {
  flex: 1;
  padding: 12px;
  border-radius: 0.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.changelog-content:hover {
  border-color: hsla(45, 90%, 55%, 0.2);
}

.changelog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.changelog-date {
  font-size: 0.75rem;
  color: hsla(0, 0%, 55%, 0.7);
  font-weight: 500;
}

.changelog-category {
  padding: 2px 8px;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}

.changelog-category.bonuses {
  background-color: hsla(270, 70%, 50%, 0.2);
  color: hsl(270, 70%, 60%);
  border-color: hsla(270, 70%, 50%, 0.3);
}

.changelog-category.payouts {
  background-color: hsla(142, 76%, 36%, 0.2);
  color: hsl(142, 76%, 46%);
  border-color: hsla(142, 76%, 36%, 0.3);
}

.changelog-category.games {
  background-color: hsla(210, 100%, 50%, 0.2);
  color: hsl(210, 100%, 60%);
  border-color: hsla(210, 100%, 50%, 0.3);
}

.changelog-category.withdrawals {
  background-color: hsla(185, 80%, 50%, 0.2);
  color: hsl(185, 80%, 60%);
  border-color: hsla(185, 80%, 50%, 0.3);
}

.changelog-category.verification {
  background-color: hsla(25, 95%, 53%, 0.2);
  color: hsl(25, 95%, 63%);
  border-color: hsla(25, 95%, 53%, 0.3);
}

.changelog-desc {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ============================================= */
/* ARTICLE/CONTENT STYLES */
/* ============================================= */
.article {
  max-width: 100%;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.article h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--foreground);
  scroll-margin-top: 80px;
}

.article h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--foreground);
}

.article p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  line-height: 1.7;
}

.article ul, .article ol {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  padding-left: 24px;
}

.article li {
  margin-bottom: 8px;
}

.article strong {
  color: var(--foreground);
  font-weight: 600;
}

.article a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.article a:hover {
  opacity: 0.8;
}

/* Author Block */
.author-block {
  padding: 16px;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.author-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  padding: 2px 8px;
  font-size: 0.75rem;
  background-color: hsla(45, 90%, 55%, 0.2);
  color: var(--primary);
  border-radius: 0.25rem;
}

.author-bio {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.author-experience {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.75rem;
  color: hsl(142, 76%, 46%);
}

.author-dates {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

.author-date svg {
  width: 12px;
  height: 12px;
}

.author-date.muted {
  color: var(--muted-foreground);
}

.author-date.primary svg {
  color: var(--primary);
}

.author-date.primary span {
  color: var(--foreground);
  font-weight: 500;
}

.author-date.verified {
  color: hsl(142, 76%, 46%);
}

/* Info Cards */
.info-card {
  padding: 16px;
  border-radius: 0.5rem;
  margin-bottom: 24px;
}

.info-card.primary {
  background-color: hsla(45, 90%, 55%, 0.05);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
}

.info-card.success {
  background-color: hsla(142, 76%, 36%, 0.05);
  border: 1px solid hsla(142, 76%, 36%, 0.2);
}

.info-card.warning {
  background-color: hsla(25, 95%, 53%, 0.1);
  border: 1px solid hsla(25, 95%, 53%, 0.3);
}

.info-card.danger {
  background-color: hsla(0, 70%, 50%, 0.05);
  border: 1px solid hsla(0, 70%, 50%, 0.2);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.info-card-header svg {
  width: 16px;
  height: 16px;
}

.info-card.primary .info-card-header svg {
  color: var(--primary);
}

.info-card.success .info-card-header svg {
  color: hsl(142, 76%, 46%);
}

.info-card.warning .info-card-header svg {
  color: hsl(25, 95%, 53%);
}

.info-card.danger .info-card-header svg {
  color: hsl(0, 70%, 50%);
}

.info-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.info-card p, .info-card ul {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.info-card ul {
  padding-left: 16px;
  margin-top: 8px;
}

.info-card li {
  margin-bottom: 4px;
}

/* Data Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 24px 0;
}

.data-table th {
  text-align: left;
  padding: 8px;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 8px;
  color: var(--muted-foreground);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
}

.data-table .success {
  color: hsl(142, 76%, 46%);
}

.data-table .warning {
  color: hsl(25, 95%, 53%);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.comparison-card {
  padding: 20px;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.comparison-card.featured {
  background: linear-gradient(to bottom right, hsla(45, 90%, 55%, 0.1), var(--card));
  border-color: hsla(45, 90%, 55%, 0.3);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.comparison-card-title {
  font-weight: 700;
  color: var(--foreground);
}

.comparison-card-badge {
  padding: 2px 8px;
  font-size: 0.75rem;
  background-color: hsla(45, 90%, 55%, 0.2);
  color: var(--primary);
  border-radius: 0.25rem;
}

.comparison-card-value {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 4px 0;
}

/* CTA Section */
.cta-section {
  margin: 40px 0;
  padding: 24px;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, hsla(45, 90%, 55%, 0.1), var(--card), hsla(185, 80%, 50%, 0.1));
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  text-align: center;
}

.cta-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 12px;
}

/* FAQ Section */
.faq-section {
  margin-top: 40px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-question h2 {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  line-height: 1.7;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsible Gambling */
.responsible-section {
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.affiliate-disclaimer {
  padding: 12px;
  border-radius: 0.5rem;
  background-color: hsla(0, 0%, 15%, 0.3);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.affiliate-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin: 0;
}

.responsible-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.responsible-header svg {
  color: hsl(25, 95%, 53%);
}

.responsible-header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.responsible-warning {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(25, 95%, 53%);
  font-weight: 500;
  margin-bottom: 16px;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.responsible-card {
  text-align: center;
  padding: 12px;
  border-radius: 0.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
}

.responsible-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.responsible-icon.danger {
  background-color: hsla(0, 70%, 50%, 0.2);
  color: hsl(0, 70%, 50%);
}

.responsible-icon.primary {
  background-color: hsla(45, 90%, 55%, 0.2);
  color: var(--primary);
}

.responsible-icon.success {
  background-color: hsla(142, 76%, 36%, 0.2);
  color: hsl(142, 76%, 46%);
}

.responsible-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.responsible-card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.responsible-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.responsible-link svg {
  width: 10px;
  height: 10px;
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background-color: hsla(0, 0%, 8%, 0.3);
}

.footer-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.footer-section:last-child {
  border-bottom: none;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  text-align: center;
}

.footer-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-provider {
  font-size: 0.75rem;
  color: hsla(0, 0%, 55%, 0.7);
  transition: color 0.2s;
  cursor: default;
}

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

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-payment {
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background-color: hsla(0, 0%, 15%, 0.5);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  border-radius: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-responsible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-age-badge {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 2px solid hsl(0, 70%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 70%, 50%);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-age-text {
  text-align: left;
}

.footer-age-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-age-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-disclaimer {
  max-width: 768px;
  text-align: center;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.footer-external-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-external-link {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-license {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.75rem;
  color: hsla(0, 0%, 55%, 0.7);
}

.footer-links span {
  cursor: default;
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsla(0, 0%, 55%, 0.5);
  margin-top: 8px;
}

.footer-updated {
  margin-top: 24px;
}

.footer-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  background-color: hsla(0, 0%, 15%, 0.3);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
}

.footer-updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: hsl(142, 76%, 46%);
}

.footer-updated-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================= */
/* COOKIE BANNER */
/* ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================= */
/* SCROLL TO TOP */
/* ============================================= */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================= */
/* FORMS */
/* ============================================= */
.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input.error {
  border-color: hsl(0, 70%, 50%);
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 16px;
  height: 16px;
}

.form-error {
  font-size: 0.75rem;
  color: hsl(0, 70%, 50%);
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-checkbox input {
  margin-top: 4px;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Tabs */
.tabs {
  display: flex;
  padding: 4px;
  background-color: var(--muted);
  border-radius: 0.5rem;
  margin-bottom: 24px;
}

.tab-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: var(--foreground);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Auth Form Card */
.auth-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
}

.auth-switch {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.auth-switch button {
  background: none;
  border: none;
  font-size: 0.875rem;
  color: var(--primary);
  cursor: pointer;
}

.auth-switch button:hover {
  text-decoration: underline;
}

.auth-age-notice {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-age-badge {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 2px solid hsl(0, 70%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 70%, 50%);
  font-weight: 700;
  font-size: 0.75rem;
}

.auth-age-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted-foreground);
}

.breadcrumbs a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumbs li:last-child {
  color: var(--foreground);
}

/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 5%, 0.95), hsla(0, 0%, 5%, 0.7), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  min-height: 180px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 9999px;
  background-color: var(--card);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  width: fit-content;
}

.page-hero-badge svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.page-hero-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.page-hero h1 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  max-width: 320px;
  line-height: 1.3;
}

.page-hero-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  max-width: 280px;
}

.page-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Safety Card (Reviews page) */
.safety-card {
  width: 100%;
  padding: 16px;
  border-radius: 0.75rem;
  background-color: hsla(0, 0%, 8%, 0.8);
  border: 1px solid hsla(45, 90%, 55%, 0.3);
  text-align: center;
  backdrop-filter: blur(4px);
  margin-top: 16px;
}

.safety-card svg {
  margin: 0 auto 8px;
  color: var(--primary);
}

.safety-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.safety-score {
  font-family: 'Cinzel', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.safety-max {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.safety-badge {
  margin-top: 8px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  background-color: hsla(142, 76%, 36%, 0.2);
  border: 1px solid hsla(142, 76%, 36%, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(142, 76%, 46%);
}

/* ============================================= */
/* MOBILE MENU */
/* ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background-color: var(--sidebar-background);
  border-left: 1px solid var(--sidebar-border);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--sidebar-border);
}

.mobile-menu-close {
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
}

.mobile-menu-nav {
  padding: 16px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
  color: var(--primary);
  background-color: var(--sidebar-accent);
}

.mobile-menu-item svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-divider {
  margin: 16px 0;
  border-top: 1px solid var(--sidebar-border);
}

.mobile-menu-lang {
  padding: 0 16px;
}

/* ============================================= */
/* LANGUAGE DROPDOWN */
/* ============================================= */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  margin-top: 8px;
  padding: 8px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 100;
}

.lang-dropdown.open .lang-dropdown-content {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--foreground);
}

.lang-option:hover {
  background-color: var(--muted);
}

.lang-option.active {
  background-color: hsla(45, 90%, 55%, 0.1);
  color: var(--primary);
}

.lang-option img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.lang-option-name {
  flex: 1;
  font-size: 0.875rem;
}

.lang-option-code {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-foreground);
}

/* ============================================= */
/* METHODOLOGY BLOCK */
/* ============================================= */
.methodology-section {
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology-header {
  text-align: center;
  margin-bottom: 16px;
}

.methodology-title {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.methodology-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.methodology-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border-radius: 0.5rem;
  background-color: hsla(0, 0%, 8%, 0.5);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
}

.methodology-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background-color: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.methodology-icon svg {
  width: 16px;
  height: 16px;
}

.methodology-item-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

.methodology-item-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

/* Accordion animations */
@keyframes accordion-down {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--radix-accordion-content-height, auto);
    opacity: 1;
  }
}

@keyframes accordion-up {
  from {
    height: var(--radix-accordion-content-height, auto);
    opacity: 1;
  }
  to {
    height: 0;
    opacity: 0;
  }
}

/* Fade animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Scale animations */
@keyframes scale-in {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Slide animations */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

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

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

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 hsla(45, 90%, 55%, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px hsla(45, 90%, 55%, 0);
  }
}

/* Animation Classes */
.animate-accordion-down {
  animation: accordion-down 0.2s ease-out;
}

.animate-accordion-up {
  animation: accordion-up 0.2s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.animate-fade-out {
  animation: fade-out 0.3s ease-out;
}

.animate-scale-in {
  animation: scale-in 0.2s ease-out;
}

.animate-scale-out {
  animation: scale-out 0.2s ease-out;
}

.animate-slide-in-left {
  animation: slide-in-left 0.4s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.3s ease-out;
}

.animate-slide-out-right {
  animation: slide-out-right 0.3s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, hsla(45, 90%, 55%, 0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* Combined Animations */
.animate-enter {
  animation: fadeIn 0.3s ease-out, scale-in 0.2s ease-out;
}

.animate-exit {
  animation: fade-out 0.3s ease-out, scale-out 0.2s ease-out;
}

/* Interactive Elements */
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.story-link {
  position: relative;
  display: inline-block;
}

.story-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.story-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-transform {
  transition: transform 0.2s ease;
}

.transition-opacity {
  transition: opacity 0.2s ease;
}

/* ============================================= */
/* SCROLLBAR */
/* ============================================= */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(45, 90%, 55%, 0.5);
}

/* ============================================= */
/* MEDIA QUERIES */
/* ============================================= */
@media (min-width: 640px) {
  .hero-content {
    min-height: 240px;
    padding: 24px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    max-width: 400px;
  }
  
  .hero-subtitle {
    font-size: 0.875rem;
    max-width: 320px;
  }
  
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .sport-image {
    height: 160px;
  }
  
  .promo-banner {
    height: 160px;
  }
  
  .promo-title {
    font-size: 1rem;
    max-width: 180px;
  }
  
  .promo-subtitle {
    font-size: 0.75rem;
    max-width: 160px;
  }
  
  .cookie-inner {
    flex-direction: row;
  }
  
  .page-hero h1 {
    font-size: 1.5rem;
  }
  
  .auth-inner {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .header-search {
    display: flex;
  }
  
  .mobile-search {
    display: none;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero {
    border-radius: 0.75rem;
  }
  
  .hero-content {
    min-height: 280px;
    padding: 32px 40px;
  }
  
  .hero h1 {
    font-size: 1.875rem;
    max-width: 512px;
  }
  
  .hero-subtitle {
    max-width: 400px;
  }
  
  .hero-buttons {
    gap: 12px;
  }
  
  .hero-features {
    gap: 8px;
  }
  
  .hero-feature span {
    font-size: 0.75rem;
  }
  
  .hero-dots {
    bottom: 12px;
    left: 40px;
  }
  
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  
  .game-number {
    font-size: 3rem;
    bottom: 8px;
  }
  
  .game-info {
    padding: 8px;
  }
  
  .game-name {
    font-size: 0.875rem;
  }
  
  .game-provider {
    font-size: 0.75rem;
  }
  
  .sport-image {
    height: 220px;
  }
  
  .sport-gradient {
    height: 96px;
  }
  
  .sport-content {
    padding: 16px;
  }
  
  .sport-name {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .sport-subtitle {
    font-size: 0.75rem;
  }
  
  .promo-banner {
    height: 180px;
    border-radius: 0.75rem;
  }
  
  .promo-content {
    padding: 16px 24px;
  }
  
  .promo-title {
    font-size: 1.125rem;
    margin-bottom: 4px;
  }
  
  .promo-subtitle {
    margin-bottom: 12px;
  }
  
  .promo-banner-lg {
    height: 200px;
  }
  
  .promo-banner-lg .promo-content {
    padding: 24px 40px;
  }
  
  .promo-banner-lg .promo-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .promo-banner-lg .promo-subtitle {
    font-size: 0.875rem;
    max-width: 280px;
    margin-bottom: 16px;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .review-rating-inner {
    flex-direction: row;
    align-items: center;
  }
  
  .pros-cons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .player-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .responsible-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .author-inner {
    flex-direction: row;
  }
  
  .author-dates {
    text-align: right;
    border-left: 1px solid var(--border);
    padding-left: 16px;
  }
  
  .author-date {
    justify-content: flex-end;
  }
  
  .page-hero {
    border-radius: 0.75rem;
  }
  
  .page-hero-content {
    min-height: 200px;
    padding: 24px 40px;
  }
  
  .page-hero h1 {
    font-size: 1.875rem;
    max-width: 400px;
  }
  
  .page-hero-subtitle {
    font-size: 0.875rem;
    max-width: 400px;
  }
  
  .methodology-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .sidebar {
    display: flex;
  }
  
  .main-content {
    padding-top: 64px;
    margin-left: 224px;
  }
  
  .footer {
    margin-left: 224px;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    min-height: 320px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .sport-image {
    height: 260px;
  }
  
  .promo-banner-lg {
    height: 220px;
  }
  
  .page-hero-content {
    min-height: 240px;
  }
  
  .page-hero h1 {
    font-size: 2.25rem;
    max-width: 512px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.125rem;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
  }
  
  .hero-buttons .btn-cyan {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .hero-feature span {
    font-size: 9px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-cyan {
    width: 100%;
  }
  
  .page-hero h1 {
    font-size: 1.125rem;
  }
  
  .page-hero-buttons .btn-cyan {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ============================================= */
/* EXHAUSTIVE FAQ (Bruce Clay Style) */
/* ============================================= */
.exhaustive-faq {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.faq-header svg {
  color: var(--primary);
}

.faq-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ============================================= */
/* RESPONSIBLE GAMBLING BLOCK */
/* ============================================= */
.responsible-gambling-block {
  margin: 2rem 0;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.affiliate-disclaimer {
  padding: 0.75rem;
  background: hsla(0, 0%, 100%, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.affiliate-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.responsible-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.responsible-header svg {
  color: hsl(35, 90%, 50%);
}

.responsible-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.responsible-warning {
  text-align: center;
  color: hsl(35, 90%, 50%);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.responsible-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.responsible-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.responsible-icon svg {
  color: var(--primary);
}

.responsible-icon.destructive {
  background: hsla(0, 70%, 50%, 0.2);
}

.responsible-icon.destructive svg {
  color: var(--destructive);
}

.responsible-icon.success {
  background: hsla(142, 70%, 45%, 0.2);
}

.responsible-icon.success svg {
  color: hsl(142, 70%, 45%);
}

.responsible-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.responsible-desc {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.help-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.help-links a:hover {
  color: var(--primary);
}

.help-links a svg {
  width: 10px;
  height: 10px;
}

/* ============================================= */
/* METHODOLOGY BLOCK (compact) */
/* ============================================= */
.methodology-block {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology-header {
  text-align: center;
  margin-bottom: 1rem;
}

.methodology-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.methodology-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

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

.methodology-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(45, 50%, 25%, 0.5);
  border-radius: var(--radius);
}

.methodology-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: var(--radius);
  background: hsla(45, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.methodology-icon svg {
  color: var(--primary);
}

.methodology-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

.methodology-desc {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}