/**
 * Casinado Static Site Styles
 * Version: 1.0.0
 * Date: 2026-01-17
 * 
 * Complete CSS converted from Tailwind + React
 */

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

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Colors */
  --background: 220 50% 5%;
  --foreground: 0 0% 98%;
  --card: 220 45% 8%;
  --card-foreground: 0 0% 98%;
  --popover: 220 45% 8%;
  --popover-foreground: 0 0% 98%;
  --primary: 150 100% 50%;
  --primary-foreground: 220 50% 5%;
  --secondary: 220 40% 15%;
  --secondary-foreground: 0 0% 98%;
  --muted: 220 30% 12%;
  --muted-foreground: 220 10% 60%;
  --accent: 0 85% 55%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 30% 18%;
  --input: 220 30% 15%;
  --ring: 150 100% 50%;
  --radius: 0.5rem;

  /* Casino Custom Colors */
  --neon-green: 150 100% 50%;
  --neon-green-glow: 150 100% 60%;
  --casino-red: 0 85% 55%;
  --casino-gold: 45 100% 55%;
  --dark-blue: 220 50% 5%;
  --darker-blue: 220 55% 3%;
  --card-dark: 220 45% 8%;
  --card-hover: 220 40% 12%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

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

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

.text-destructive {
  color: hsl(var(--destructive));
}

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }

.tracking-wider { letter-spacing: 0.05em; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

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

.gradient-text {
  background: linear-gradient(90deg, hsl(var(--neon-green)) 0%, hsl(150 100% 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 10px hsl(var(--neon-green) / 0.6), 0 0 20px hsl(var(--neon-green) / 0.4);
}

.text-glow-strong {
  text-shadow: 0 0 15px hsl(var(--neon-green) / 0.8), 0 0 30px hsl(var(--neon-green) / 0.5), 0 0 45px hsl(var(--neon-green) / 0.3);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.grid { display: grid; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

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

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

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

@media (min-width: 640px) {
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}

.scroll-mt-20 { scroll-margin-top: 5rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.scroll-mt-28 { scroll-margin-top: 7rem; }

.text-muted {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ==========================================
   SPACING
   ========================================== */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.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; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-28 { padding-top: 7rem; }

.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-auto { margin-left: auto; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ==========================================
   SIZING
   ========================================== */
.w-full { width: 100%; }
.w-80 { width: 20rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }

.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }

.min-h-\[280px\] { min-height: 280px; }
.min-h-\[320px\] { min-height: 320px; }
.min-w-\[90px\] { min-width: 90px; }
.min-w-\[600px\] { min-width: 600px; }

.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-sm { max-width: 24rem; }

.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }

/* ==========================================
   BORDERS & ROUNDED
   ========================================== */
.border { border: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-l-4 { border-left-width: 4px; }
.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary\/50 { border-color: hsl(var(--primary) / 0.5); }
.border-yellow-500\/30 { border-color: hsl(45 100% 50% / 0.3); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }

.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ==========================================
   BACKGROUNDS
   ========================================== */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }
.bg-secondary\/20 { background-color: hsl(var(--secondary) / 0.2); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-primary\/30 { background-color: hsl(var(--primary) / 0.3); }
.bg-input { background-color: hsl(var(--input)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted\/20 { background-color: hsl(var(--muted) / 0.2); }
.bg-destructive\/20 { background-color: hsl(var(--destructive) / 0.2); }
.bg-yellow-500\/10 { background-color: hsl(45 100% 50% / 0.1); }
.bg-yellow-500\/20 { background-color: hsl(45 100% 50% / 0.2); }
.bg-emerald-500\/20 { background-color: hsl(160 84% 39% / 0.2); }
.bg-amber-500\/20 { background-color: hsl(38 92% 50% / 0.2); }
.bg-purple-500\/20 { background-color: hsl(270 91% 65% / 0.2); }
.bg-blue-500\/20 { background-color: hsl(217 91% 60% / 0.2); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }

.from-background { --tw-gradient-from: hsl(var(--background)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-background\/80 { --tw-gradient-from: hsl(var(--background) / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-background\/90 { --tw-gradient-from: hsl(var(--background) / 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-card { --tw-gradient-from: hsl(var(--card)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-primary\/20 { --tw-gradient-from: hsl(var(--primary) / 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-primary\/30 { --tw-gradient-from: hsl(var(--primary) / 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }

.via-background\/90 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / 0.9), var(--tw-gradient-to, transparent); }
.via-background\/50 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / 0.5), var(--tw-gradient-to, transparent); }
.via-card\/50 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--card) / 0.5), var(--tw-gradient-to, transparent); }
.via-primary\/10 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.1), var(--tw-gradient-to, transparent); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }

.to-transparent { --tw-gradient-to: transparent; }
.to-accent\/20 { --tw-gradient-to: hsl(var(--accent) / 0.2); }
.to-primary\/10 { --tw-gradient-to: hsl(var(--primary) / 0.1); }

.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* ==========================================
   CASINO CARD STYLES
   ========================================== */
.casino-card {
  background: linear-gradient(180deg, hsl(220 45% 10%) 0%, hsl(220 45% 6%) 100%);
  border: 1px solid hsl(220 30% 18%);
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.3);
}

.asymmetric-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(220 45% 10%) 0%, hsl(220 45% 6%) 100%);
  border: 1px solid hsl(220 30% 18%);
}

.asymmetric-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, hsl(var(--neon-green) / 0.05) 100%);
  transform: skewX(-12deg) translateX(20%);
}

.neon-border {
  border: 1px solid hsl(var(--neon-green) / 0.5);
  box-shadow: inset 0 0 10px hsl(var(--neon-green) / 0.1), 0 0 10px hsl(var(--neon-green) / 0.2);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-block;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px hsl(var(--neon-green) / 0.4);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary:hover {
  box-shadow: 0 0 30px hsl(var(--neon-green) / 0.6), 0 0 50px hsl(var(--neon-green) / 0.3);
  transform: translateY(-2px);
}

.btn-outline-primary {
  display: inline-block;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-outline-primary:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 20px hsl(var(--neon-green) / 0.4);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

/* Header Top Bar */
.header-topbar {
  display: none;
  background-color: hsl(var(--secondary) / 0.5);
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .header-topbar {
    display: block;
  }
}

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

.header-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-badge {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.header-rating {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Small buttons for top bar */
.btn-outline-sm {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
  border-radius: var(--radius);
  background: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-secondary-sm {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-secondary-sm:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

/* Header Navigation */
.header-nav {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  color: hsl(var(--foreground) / 0.8);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--primary));
}

.nav-link.highlight {
  color: hsl(var(--primary));
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 20rem;
  max-width: 85vw;
  background-color: hsl(var(--card));
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--foreground));
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: hsl(var(--secondary));
}

.mobile-menu-nav {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s ease;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.mobile-nav-link.highlight {
  color: hsl(var(--primary));
}

.mobile-menu-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
}

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

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

#scroll-to-top:hover {
  background-color: hsl(var(--primary) / 0.9);
  box-shadow: 0 0 20px hsl(var(--neon-green) / 0.5);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 72px; /* Height of header */
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 480px;
    margin-top: 112px; /* Height of header + topbar */
    padding-bottom: 3rem;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)) 0%, hsl(var(--background)) 50%, hsl(var(--background) / 0.3) 100%);
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, hsl(var(--primary) / 0.05) 0%, transparent 100%);
  transform: skewX(12deg) translateX(5rem);
}

.hero-content {
  position: relative;
  z-index: 20;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 0;
  }
}

.hero-text {
  max-width: 36rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  margin-bottom: 1rem;
  animation: pulseSoft 2s ease-in-out infinite;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  animation: pingSlow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .trust-badges {
    gap: 1rem;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: transform 0.3s ease;
}

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

.badge-check {
  color: hsl(var(--primary));
  font-size: 0.875rem;
}

.trust-badge span:last-child {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0 1.5rem;
}

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

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

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

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================
   TABLE OF CONTENTS
   ========================================== */
.toc {
  background-color: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 1.25rem;
  border-radius: 0.75rem;
}

.toc-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}

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

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

.toc-link {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

.toc-arrow {
  color: hsl(var(--primary));
}

/* ==========================================
   AUTHOR BLOCK
   ========================================== */
.author-block {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.author-info {
  display: flex;
  gap: 1rem;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 100% 40%) 100%);
  color: hsl(var(--primary-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.author-badges {
  display: flex;
  gap: 0.5rem;
}

.author-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.author-badge.primary {
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.author-badge.secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
}

.author-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trust-icon {
  color: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

.trust-icon.green {
  color: hsl(var(--primary));
}

.trust-label {
  color: hsl(var(--muted-foreground));
}

.trust-value {
  color: hsl(var(--foreground));
}

.author-methodology {
  padding: 1rem;
  background-color: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.author-methodology h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-methodology p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.author-disclaimer {
  padding: 1rem;
  background-color: hsl(var(--accent) / 0.1);
  border-left: 3px solid hsl(var(--accent));
  border-radius: var(--radius);
}

.author-disclaimer p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section-bg {
  padding: 3rem 0;
  background-color: hsl(var(--muted) / 0.3);
}

.section-card {
  padding: 3rem 0;
}

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

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

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  max-width: 36rem;
}

.external-link {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.external-link:hover {
  opacity: 0.8;
}

/* ==========================================
   CASINO CARD & ASYMMETRIC CARD
   ========================================== */
.casino-card {
  background: linear-gradient(180deg, hsl(220 45% 10%) 0%, hsl(220 45% 6%) 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.3);
}

.asymmetric-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(220 45% 10%) 0%, hsl(220 45% 6%) 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
}

.asymmetric-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, hsl(var(--neon-green) / 0.05) 100%);
  transform: skewX(-12deg) translateX(20%);
  pointer-events: none;
}

/* ==========================================
   GAMES SECTION
   ========================================== */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

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

.game-card {
  display: block;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.game-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

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

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-info {
  padding: 1rem;
}

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

.game-title {
  font-weight: 700;
  font-size: 1rem;
}

.game-count {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.game-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

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

.providers-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.provider-badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  background-color: hsl(var(--secondary));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
}

/* ==========================================
   SPORTS SECTION
   ========================================== */
.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.sport-card {
  display: block;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sport-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.sport-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.sport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.sport-info {
  padding: 1rem;
}

.sport-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.sport-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.bonus-card-main {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(220 45% 10%) 100%);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.bonus-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, hsl(var(--primary) / 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bonus-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  font-weight: 600;
}

.bonus-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.bonus-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

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

.bonus-detail {
  padding: 0.75rem;
  background-color: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
}

.bonus-detail-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.bonus-detail-value {
  font-weight: 700;
  color: hsl(var(--primary));
}

.bonus-image {
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-sidebar-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1rem;
}

.bonus-sidebar-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

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

.bonus-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.bonus-sidebar-item .check {
  color: hsl(var(--primary));
}

/* ==========================================
   PAYMENT METHODS
   ========================================== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.payment-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.payment-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.payment-time {
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
}

/* ==========================================
   REVIEW SECTION
   ========================================== */
.review-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .review-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: hsl(var(--primary));
}

.rating-details {
  display: flex;
  flex-direction: column;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

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

.star.filled {
  color: hsl(var(--casino-gold));
}

.rating-count {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.pros-card, .cons-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.pros-card {
  background-color: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
}

.cons-card {
  background-color: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
}

.pros-title, .cons-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-title {
  color: hsl(var(--primary));
}

.cons-title {
  color: hsl(var(--accent));
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pros-item, .cons-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pros-item span:first-child {
  color: hsl(var(--primary));
}

.cons-item span:first-child {
  color: hsl(var(--accent));
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-block {
  padding: 1.5rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
}

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

.faq-checklist {
  padding: 1rem;
  background-color: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.faq-checklist-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

.faq-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.faq-checklist-item .check {
  color: hsl(var(--primary));
}

/* ==========================================
   CHANGELOG SECTION
   ========================================== */
.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.changelog-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
}

.changelog-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  min-width: 5rem;
}

.changelog-badge {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
}

.changelog-badge.bonos {
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.changelog-badge.retiros {
  background-color: hsl(150 100% 50% / 0.1);
  color: hsl(150 100% 50%);
}

.changelog-badge.juegos {
  background-color: hsl(45 100% 55% / 0.1);
  color: hsl(45 100% 55%);
}

.changelog-badge.verificacion {
  background-color: hsl(200 100% 50% / 0.1);
  color: hsl(200 100% 50%);
}

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

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(220 45% 10%) 100%);
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.final-cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2rem;
  }
}

.final-cta-subtitle {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================
   FORMS
   ========================================== */
.form-input {
  width: 100%;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-input.error {
  border-color: hsl(var(--destructive));
}

.error-message {
  color: hsl(var(--destructive));
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-toggle-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: hsl(var(--muted-foreground));
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-toggle-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* ==========================================
   ICONS (SVG placeholders)
   ========================================== */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 1.75rem;
  height: 1.75rem;
}

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

@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pingSlow {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(var(--neon-green) / 0.4), 0 0 40px hsl(var(--neon-green) / 0.2);
  }
  50% {
    box-shadow: 0 0 30px hsl(var(--neon-green) / 0.6), 0 0 60px hsl(var(--neon-green) / 0.3);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulseSoft 2s ease-in-out infinite;
}

.animate-ping-slow {
  animation: pingSlow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

.animate-slide-in-right {
  animation: slideInRight 0.5s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ==========================================
   HOVER EFFECTS
   ========================================== */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 25px hsl(var(--neon-green) / 0.5);
}

/* ==========================================
   UTILITIES
   ========================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

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

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

.scroll-mt-20 { scroll-margin-top: 5rem; }
.scroll-mt-32 { scroll-margin-top: 8rem; }

.transform { transform: translateZ(0); }
.translate-x-full { transform: translateX(100%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.skew-x-12 { transform: skewX(12deg); }
.translate-x-20 { transform: translateX(5rem); }

.underline { text-decoration: underline; }
.italic { font-style: italic; }

.fill-primary { fill: hsl(var(--primary)); }
.text-yellow-500 { color: hsl(45 100% 50%); }
.text-green-500 { color: hsl(142 76% 36%); }
.text-red-500 { color: hsl(0 84% 60%); }
.text-emerald-400 { color: hsl(160 84% 50%); }
.text-amber-400 { color: hsl(38 92% 60%); }
.text-purple-400 { color: hsl(270 91% 70%); }
.text-blue-400 { color: hsl(217 91% 70%); }

.select-none { user-select: none; }

/* Inline flex */
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:text-right { text-align: right; }
  .md\:min-h-\[320px\] { min-height: 320px; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:gap-4 { gap: 1rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:h-auto { height: auto; }
  .lg\:text-left { text-align: left; }
  .lg\:w-auto { width: auto; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* ==========================================
   TABLES
   ========================================== */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
}

th {
  font-weight: 600;
  border-bottom: 1px solid hsl(var(--border));
}

td {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

tr:hover td {
  background-color: hsl(var(--secondary) / 0.2);
}

tr.highlight {
  background-color: hsl(var(--primary) / 0.05);
}

/* ==========================================
   TIMELINE
   ========================================== */
.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: hsl(var(--border));
}

@media (min-width: 768px) {
  .timeline-line {
    left: 1.5rem;
  }
}

.timeline-dot {
  position: absolute;
  left: 0.625rem;
  top: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.3);
  border: 2px solid hsl(var(--primary));
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 1rem;
  }
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 3.5rem;
  }
}

/* ==========================================
   CHECKBOXES
   ========================================== */
input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  cursor: pointer;
  accent-color: hsl(var(--primary));
}

/* ==========================================
   FOCUS STATES
   ========================================== */
*:focus-visible {
  outline: 2px solid hsl(var(--primary) / 0.5);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid hsl(var(--primary) / 0.5);
  outline-offset: 2px;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  .header,
  .footer,
  #scroll-to-top,
  #mobile-menu,
  #mobile-menu-backdrop {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ==========================================
   RESPONSIVE IMAGES PROTECTION
   ========================================== */
.promo-image-link img,
.games-image-link img {
  max-width: 500px;
  width: 100%;
  border-radius: 1rem;
}

/* ==========================================
   STAR RATING
   ========================================== */
.star {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted));
}

.star.filled {
  color: hsl(var(--primary));
  fill: hsl(var(--primary));
}

.star-sm {
  width: 0.75rem;
  height: 0.75rem;
}

/* ==========================================
   ADDITIONAL UTILITY CLASSES
   ========================================== */
.update-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.section-title-sm {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title-sm {
    font-size: 1.5rem;
  }
}

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

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

.faq-content {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

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

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

/* Visibility helpers */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}

/* Order and alignment helpers */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
  .lg-order-1 { order: 1; }
  .lg-order-2 { order: 2; }
  .lg-text-left { text-align: left; }
}

/* List styles */
.list-decimal {
  list-style-type: decimal;
}

.list-inside {
  list-style-position: inside;
}

/* Additional gaps and spacing */
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.mb-12 { margin-bottom: 3rem; }

@media (min-width: 768px) {
  .md-p-8 { padding: 2rem; }
}

/* Additional flex/grid utilities */
.items-start { align-items: flex-start; }

/* Max width helpers */
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }

/* Italic text */
.italic { font-style: italic; }

/* Scroll margin for fixed header */
.scroll-mt-32 { scroll-margin-top: 8rem; }

/* Z-index utilities */
.z-10 { z-index: 10; }
.relative { position: relative; }

/* Additional background utilities */
.bg-transparent { background-color: transparent; }

/* Sport card improvements for app page */
.sport-card .sport-info {
  padding: 1rem;
}

/* FAQ improvements */
.faq-checklist {
  padding: 1rem;
  background-color: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
  margin-top: 1rem;
}

.faq-checklist h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Ensure proper stacking */
.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-3px);
}

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

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

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

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

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

/* ==========================================
   MOBILE FIXES
   ========================================== */

/* Ensure hero content is fully visible on mobile */
@media (max-width: 767px) {
  .hero {
    min-height: 420px;
    padding-top: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .cta-buttons {
    gap: 0.5rem;
  }
  
  .cta-buttons .btn-primary {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
  
  .trust-badges {
    gap: 0.5rem;
  }
  
  .trust-badge {
    padding: 0.25rem 0.5rem;
  }
  
  .trust-badge span:last-child {
    font-size: 0.625rem;
  }
  
  /* Ensure header doesn't overlap content */
  .header-nav {
    padding: 0.75rem 0;
  }
  
  /* Fix container padding on mobile */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Ensure images don't break layout */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}
