/* SpinGrande Casino - Complete Styles */
/* Anti-detect: 4-5 fonts, unexpected serif + handwritten combinations */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&family=Caveat:wght@400;500;600;700&family=EB+Garamond:wght@400;500;600;700&display=swap');

/* CSS Variables - Anti-detect: "dirty" colors with undertone */
:root {
  /* Colors */
  --background: hsl(225, 18%, 7%);
  --foreground: hsl(42, 25%, 92%);
  --card: hsl(228, 16%, 11%);
  --card-foreground: hsl(38, 28%, 91%);
  --popover: hsl(222, 17%, 13%);
  --popover-foreground: hsl(40, 26%, 93%);
  
  /* Gold with "dusty" undertone */
  --primary: hsl(43, 78%, 52%);
  --primary-foreground: hsl(228, 22%, 8%);
  --secondary: hsl(218, 14%, 19%);
  --secondary-foreground: hsl(44, 24%, 88%);
  --muted: hsl(224, 13%, 16%);
  --muted-foreground: hsl(216, 12%, 52%);
  
  /* Accent: warm amber */
  --accent: hsl(32, 82%, 48%);
  --accent-foreground: hsl(225, 20%, 7%);
  --destructive: hsl(4, 68%, 48%);
  --destructive-foreground: hsl(40, 28%, 94%);
  --border: hsl(223, 14%, 21%);
  --input: hsl(220, 14%, 16%);
  --ring: hsl(41, 75%, 50%);
  --radius: 0.625rem;
  
  /* Custom "dirty" tokens */
  --gold: hsl(42, 76%, 51%);
  --gold-light: hsl(44, 72%, 68%);
  --gold-dark: hsl(38, 78%, 38%);
  --gold-dusty: hsl(40, 65%, 45%);
  --casino-red: hsl(3, 68%, 43%);
  --casino-green: hsl(148, 55%, 38%);
  --royal-purple: hsl(268, 42%, 32%);
  --neon-blue: hsl(198, 85%, 48%);
  --warm-cream: hsl(38, 35%, 88%);
  --dusty-rose: hsl(350, 32%, 52%);
  --aged-paper: hsl(42, 28%, 82%);
  --ink-stain: hsl(230, 25%, 18%);
  --rust: hsl(18, 65%, 42%);
  --patina: hsl(165, 28%, 42%);
  
  /* Gradients with noise and sharp transitions */
  --gradient-gold: linear-gradient(137deg, hsl(42, 76%, 51%), hsl(32, 82%, 48%) 67%, hsl(38, 78%, 38%));
  --gradient-royal: linear-gradient(183deg, hsl(228, 16%, 14%), hsl(225, 18%, 7%) 78%);
  --gradient-card: linear-gradient(148deg, hsl(228, 16%, 15%), hsl(225, 18%, 9%) 85%);
  
  /* Asymmetric shadows */
  --shadow-gold: -2px 4px 28px hsla(42, 76%, 51%, 0.28);
  --shadow-card: 3px 12px 38px hsla(0, 0%, 0%, 0.52);
  --shadow-glow: -1px 2px 55px hsla(42, 76%, 51%, 0.12);
  --shadow-rough: 2px 3px 0 hsla(0, 0%, 0%, 0.15), 4px 8px 25px hsla(0, 0%, 0%, 0.35);
  
  /* Font families */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-handwritten: 'Caveat', cursive;
  --font-classic: 'EB Garamond', serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0f;
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { letter-spacing: 0.04em; }
h3 { letter-spacing: 0.015em; }

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* Utility Classes */
.text-gold { color: var(--gold); }
.text-gold-dusty { color: var(--gold-dusty); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-casino-green { color: var(--casino-green); }
.text-casino-red { color: var(--casino-red); }

.bg-gold { background-color: var(--gold); }
.bg-card { background-color: var(--card); }
.bg-secondary { background-color: var(--secondary); }

.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-handwritten { font-family: var(--font-handwritten); }
.font-classic { font-family: var(--font-classic); }

/* Gradient utilities */
.gradient-gold {
  background: var(--gradient-gold);
}

.gradient-royal {
  background: var(--gradient-royal);
}

.gradient-card {
  background: var(--gradient-card);
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shadow utilities */
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-rough { box-shadow: var(--shadow-rough); }

/* Border utilities */
.border-rough {
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
}

.border-gold {
  border-color: var(--gold);
}

/* Noise overlay - DISABLED */
.noise-overlay {
  position: relative;
}

.noise-overlay::before {
  display: none;
}

/* Paper texture - DISABLED */
.paper-texture::after {
  display: none;
}

/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-wobbly {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(-0.3deg); }
  75% { transform: translateY(-6px) rotate(0.2deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-0.8deg); }
  75% { transform: rotate(0.8deg); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  42% { opacity: 0.92; }
  58% { opacity: 0.97; }
  73% { opacity: 0.88; }
}

@keyframes pulse-gold {
  0% { box-shadow: -2px 3px 18px hsla(42, 76%, 51%, 0.25); }
  33% { box-shadow: 1px 5px 35px hsla(42, 76%, 51%, 0.45); }
  66% { box-shadow: -1px 4px 28px hsla(42, 76%, 51%, 0.35); }
  100% { box-shadow: -2px 3px 18px hsla(42, 76%, 51%, 0.25); }
}

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

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

.animate-fade-in { animation: fade-in 0.65s ease-out forwards; }
.animate-float { animation: float-wobbly 3.5s ease-in-out infinite; }
.animate-wiggle { animation: wiggle 4s ease-in-out infinite; }
.animate-flicker { animation: flicker 5s ease-in-out infinite; }
.animate-pulse-gold { animation: pulse-gold 2.3s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(225, 18%, 7%, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.45);
}

.header-content,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media (min-width: 768px) {
  .header-content,
  .header-main { height: 80px; }
}

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

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--foreground);
  transition: all 0.2s;
}

.header-btn:hover {
  background: hsla(42, 76%, 51%, 0.1);
  color: var(--gold);
}

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

.hide-mobile {
  display: none;
}

@media (min-width: 480px) {
  .hide-mobile { display: inline-flex; }
}

/* En móvil pequeño, ocultar "Iniciar Sesión" para evitar overlap */
@media (max-width: 479px) {
  .header-right .btn-outline {
    display: none !important;
  }
  .header-right .btn-destructive {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
  max-width: 120px;
}

@media (min-width: 480px) {
  .logo { max-width: none; }
}

.logo:hover {
  transform: translateX(-50%) scale(1.05);
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding-top: 0.5rem;
}

.logo-icon {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .logo-icon { font-size: 1.75rem; }
}

.logo-star {
  font-size: 0.875rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px hsla(42, 76%, 51%, 0.6));
}

@media (min-width: 768px) {
  .logo-star { font-size: 1rem; }
}

.logo-text {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: 'Brush Script MT', 'Segoe Script', var(--font-handwritten), cursive;
  font-style: italic;
  text-shadow: 0 0 10px hsla(42, 76%, 51%, 0.5);
}

@media (min-width: 768px) {
  .logo-text { font-size: 1.75rem; }
}

.logo-casino {
  font-size: 0.5rem;
  color: hsla(42, 76%, 51%, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: serif;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .logo-casino { font-size: 0.625rem; }
}

/* Navigation Desktop */
.nav-desktop {
  display: none;
  justify-content: center;
  padding: 0.75rem 0;
  border-top: 1px solid hsla(223, 14%, 21%, 0.3);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(42, 25%, 92%, 0.8);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  background: hsla(4, 68%, 48%, 0.9);
  color: white;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: hsla(42, 25%, 92%, 0.8);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: hsla(42, 76%, 51%, 0.1);
}

body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-rough);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsla(42, 76%, 51%, 0.4);
  color: var(--foreground);
}

.btn-outline:hover {
  background: hsla(42, 76%, 51%, 0.15);
  border-color: var(--gold);
}

.btn-destructive {
  background: var(--destructive);
  color: white;
}

.btn-destructive:hover {
  background: hsla(4, 68%, 48%, 0.9);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-foreground);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.btn-lg {
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .btn-lg {
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
  }
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-icon-left svg {
  margin-right: 0.5rem;
}

.btn-icon-right svg {
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.btn:hover .btn-icon-right svg {
  transform: translateX(4px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-section { min-height: 65vh; padding-top: 10rem; padding-bottom: 4rem; }
}

@media (min-width: 1024px) {
  .hero-section { min-height: 70vh; padding-top: 11rem; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay para legibilidad del texto - igual que React */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(225, 18%, 7%, 0.85), 
    hsla(225, 18%, 7%, 0.75) 50%, 
    hsla(225, 18%, 7%, 0.95)
  );
  pointer-events: none;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: hsla(225, 18%, 7%, 0.30);
  pointer-events: none;
}

.hero-noise {
  display: none;
}
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(42, 76%, 51%, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float-wobbly 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsla(4, 68%, 48%, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: float-wobbly 6s ease-in-out infinite reverse;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(148, 55%, 38%, 0.15);
  border: 1px solid hsla(148, 55%, 38%, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: hsl(148, 55%, 48%);
  animation: fade-in 0.6s ease-out;
}

.badge-icon {
  font-weight: bold;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  animation: fade-in 0.6s ease-out 0.1s backwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
  padding: 0 0.5rem;
}

.hero-title span {
  color: var(--foreground);
  letter-spacing: 0.02em;
  display: block;
}

.hero-title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  letter-spacing: 0.01em;
  display: block;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-top: 0.5rem;
}

@media (min-width: 400px) {
  .hero-title { font-size: 2rem; }
  .hero-title-accent { font-size: 1.75rem; }
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.5rem; padding: 0; }
  .hero-title-accent { font-size: 2.25rem; }
}

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

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

.hero-subtitle {
  font-size: 1rem;
  color: hsla(42, 25%, 92%, 0.85);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fade-in 0.6s ease-out 0.2s backwards;
}

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

/* Hero handwritten note - como en React */
.hero-handwritten {
  font-family: var(--font-handwritten);
  font-size: 1.25rem;
  color: hsla(42, 76%, 51%, 0.8);
  margin-bottom: 2rem;
  animation: fade-in 0.6s ease-out 0.25s backwards;
  transform: rotate(1deg);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  animation: fade-in 0.6s ease-out 0.3s backwards;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; gap: 1rem; }
}

/* Hero indicators - como en React */
.hero-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: fade-in 0.6s ease-out 0.4s backwards;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-indicators { gap: 1.25rem; }
}

@media (min-width: 768px) {
  .hero-indicators { gap: 2.25rem; }
}

.hero-indicator {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: hsla(42, 25%, 92%, 0.8);
  font-size: 0.75rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@media (min-width: 640px) {
  .hero-indicator { gap: 0.5rem; font-size: 0.875rem; }
}

.hero-indicator.rotate-left {
  transform: rotate(-0.3deg);
}

.hero-indicator.rotate-right {
  transform: rotate(0.4deg);
}

.hero-indicator svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .hero-indicator svg { width: 1.25rem; height: 1.25rem; }
}

.hero-indicator svg.green {
  color: var(--casino-green);
}

.hero-indicator svg.gold {
  color: var(--gold);
}

.hero-indicator svg.gold-fill {
  color: var(--gold);
  fill: var(--gold);
}

/* Hero date badge */
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(218, 14%, 19%, 0.5);
  border: 1px solid hsla(42, 76%, 51%, 0.25);
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  margin-top: 2.5rem;
  animation: fade-in 0.6s ease-out 0.5s backwards;
  transform: rotate(-0.5deg);
}

.hero-date-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.hero-date-badge span {
  font-size: 0.875rem;
  color: var(--gold-dusty);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  animation: fade-in 0.6s ease-out 0.4s backwards;
}

@media (min-width: 640px) {
  .hero-stats { gap: 3rem; }
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--gold);
}

@media (min-width: 768px) {
  .stat-value { font-size: 1.875rem; }
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page Hero (for subpages) */
.page-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--background), hsl(228, 16%, 11%));
  position: relative;
}

@media (min-width: 768px) {
  .page-hero { padding: 10rem 0 4rem; }
}

.page-hero.live-hero {
  background: linear-gradient(180deg, hsl(268, 25%, 12%), var(--background));
}

.page-hero.promo-hero {
  background: linear-gradient(180deg, hsl(32, 30%, 12%), var(--background));
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

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

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

.page-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

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

.content-section.alt-bg {
  background: hsla(224, 13%, 16%, 0.3);
}

/* Section Header */
.section-header {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 3rem; }
}

.section-header.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold-dusty);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
}

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

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

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

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-tag {
  color: var(--gold-dusty);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
}

.section-title {
  font-size: 1.875rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

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

.section-line {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 9999px;
}

/* Cards */
.card {
  background: hsla(228, 16%, 11%, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card-bordered {
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
}

.card:hover {
  border-color: hsla(42, 76%, 51%, 0.35);
}

.card-highlight {
  background: hsla(42, 76%, 51%, 0.08);
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

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

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

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

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

/* FAQ Accordion - matches React FAQSection.tsx */
.faq-section {
  padding: 4rem 0 5rem;
  background: hsla(218, 14%, 19%, 0.20);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .faq-section { padding: 5rem 0 6rem; }
}

.faq-item {
  background: hsla(228, 16%, 11%, 0.4);
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: hsla(42, 76%, 51%, 0.3);
}

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

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-question span {
  font-weight: 500;
  color: var(--foreground);
  padding-right: 1rem;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer-inner {
  padding-left: 2rem;
  border-left: 2px solid hsla(42, 76%, 51%, 0.3);
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.review-card {
  padding: 1.25rem;
}

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

.review-author {
  font-weight: 500;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-verified svg {
  width: 16px;
  height: 16px;
  color: var(--casino-green);
}

.review-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.review-location svg {
  width: 12px;
  height: 12px;
}

.review-stars {
  display: flex;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-stars svg.filled {
  color: var(--gold);
  fill: var(--gold);
}

.review-stars svg.empty {
  color: hsla(216, 12%, 52%, 0.3);
}

.review-category {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: hsla(42, 76%, 51%, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.review-content {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsla(223, 14%, 21%, 0.3);
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.review-tag svg {
  width: 12px;
  height: 12px;
}

.review-tag-pro {
  color: var(--casino-green);
  background: hsla(148, 55%, 38%, 0.1);
}

.review-tag-con {
  color: var(--rust);
  background: hsla(18, 65%, 42%, 0.1);
}

.review-date {
  font-size: 0.75rem;
  color: hsla(216, 12%, 52%, 0.6);
  margin-top: 0.75rem;
}

/* Category filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.category-filter {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  background: hsla(228, 16%, 11%, 0.4);
  color: hsla(42, 25%, 92%, 0.7);
}

.category-filter:hover {
  background: hsla(228, 16%, 11%, 0.6);
}

.category-filter.active {
  background: var(--gold);
  color: var(--primary-foreground);
}

/* Footer */
.footer {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem 1.5rem;
}

@media (min-width: 640px) {
  .footer { padding: 3rem 2rem 2rem; }
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-payments { gap: 1rem; margin-bottom: 2rem; }
}

/* Scroll to top button - matches React Footer */
.scroll-top-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--destructive);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
  z-index: 50;
}

@media (min-width: 640px) {
  .scroll-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
}

.scroll-top-btn:hover {
  background: hsla(4, 68%, 43%, 1);
}

.scroll-top-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

@media (min-width: 640px) {
  .scroll-top-btn svg { width: 1.5rem; height: 1.5rem; }
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  .footer-payment { padding: 1rem 1.5rem; gap: 0.5rem; }
}

.footer-payment:hover {
  border-color: #555;
}

.footer-payment svg {
  width: 16px;
  height: 16px;
  color: #888;
}

@media (min-width: 640px) {
  .footer-payment svg { width: 20px; height: 20px; }
}

.footer-payment span {
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .footer-payment span { font-size: 0.875rem; }
}

.footer-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid hsla(0, 0%, 50%, 0.1);
  border-bottom: 1px solid hsla(0, 0%, 50%, 0.1);
}

@media (min-width: 640px) {
  .footer-providers { gap: 1.5rem; padding: 1.5rem 0; margin-bottom: 2.5rem; }
}

.footer-provider {
  color: #888;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: default;
}

@media (min-width: 640px) {
  .footer-provider { font-size: 0.875rem; }
}

.footer-provider:hover {
  color: #ddd;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-badges { gap: 1.5rem; margin-bottom: 2.5rem; }
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #666;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .footer-badge { gap: 0.5rem; }
}

.footer-badge:hover {
  color: #aaa;
}

.footer-badge svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 640px) {
  .footer-badge svg { width: 16px; height: 16px; }
}

.footer-badge span {
  font-size: 10px;
}

@media (min-width: 640px) {
  .footer-badge span { font-size: 0.75rem; }
}

.footer-legal {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-legal { margin-bottom: 2rem; }
}

.footer-legal p {
  color: #555;
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .footer-legal p { font-size: 0.75rem; margin-bottom: 1rem; }
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid hsla(0, 0%, 50%, 0.1);
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .footer-copyright { padding-top: 1.5rem; }
}

.footer-copyright p {
  color: #666;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .footer-copyright p { font-size: 0.875rem; }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--destructive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
  z-index: 50;
}

@media (min-width: 640px) {
  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
  }
}

.scroll-top:hover {
  background: hsla(4, 68%, 48%, 0.9);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  color: white;
}

@media (min-width: 640px) {
  .scroll-top svg { width: 24px; height: 24px; }
}

/* Prose content */
.prose {
  max-width: 56rem;
  margin: 0 auto;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: hsla(42, 25%, 92%, 0.9);
}

.prose h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  list-style-position: inside;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.prose ul li {
  margin-bottom: 0.5rem;
}

/* Handwritten note */
.handwritten-note {
  font-family: var(--font-handwritten);
  transform: rotate(-1.5deg);
  color: var(--gold-dusty);
}

/* Changelog */
.changelog {
  padding: 2rem 0 3rem;
  background: hsla(224, 13%, 16%, 0.3);
}

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

.changelog-header svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dusty);
}

.changelog-header h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .changelog-header h3 { font-size: 1.25rem; }
}

.changelog-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: hsla(225, 18%, 7%, 0.5);
  border-radius: 0.5rem;
  border: 1px solid hsla(223, 14%, 21%, 0.3);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  .changelog-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}

.changelog-item:hover {
  border-color: hsla(40, 65%, 45%, 0.3);
}

.changelog-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: monospace;
  white-space: nowrap;
}

.changelog-section {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dusty);
  background: hsla(40, 65%, 45%, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  align-self: flex-start;
}

.changelog-text {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  flex: 1;
}

.changelog-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: hsla(216, 12%, 52%, 0.6);
  font-family: var(--font-handwritten);
}

/* Loading spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto;
}

/* Form elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: hsla(225, 18%, 7%, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

/* Stats bar */
.stats-bar {
  padding: 2.5rem 0;
  background: hsla(42, 76%, 51%, 0.08);
  border-top: 1px solid hsla(42, 76%, 51%, 0.25);
  border-bottom: 1px solid hsla(42, 76%, 51%, 0.25);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

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

.stat-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

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

/* Table */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 1rem;
  color: var(--gold);
  font-family: var(--font-heading);
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.5);
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
}

/* Alert boxes */
.alert {
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.alert-warning {
  background: hsla(4, 68%, 43%, 0.08);
}

.alert-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.alert svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.alert-warning svg {
  color: var(--casino-red);
}

.alert-title {
  color: var(--casino-red);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.alert-text {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  line-height: 1.7;
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
}

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

.pros-box {
  background: hsla(148, 55%, 38%, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cons-box {
  background: hsla(4, 68%, 43%, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pros-header,
.cons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pros-header svg {
  color: var(--casino-green);
}

.cons-header svg {
  color: var(--casino-red);
}

.pros-header h4 {
  color: var(--casino-green);
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.cons-header h4 {
  color: var(--casino-red);
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
}

.pros-box li,
.cons-box li {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  margin-bottom: 0.625rem;
  padding-left: 0;
}

.pros-box li::before {
  content: "• ";
}

.cons-box li::before {
  content: "• ";
}

/* Rating display */
.rating-box {
  background: linear-gradient(to right, hsla(42, 76%, 51%, 0.15), hsla(32, 82%, 48%, 0.15));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.rating-stars svg {
  width: 32px;
  height: 32px;
}

.rating-stars svg.filled {
  color: var(--gold);
  fill: var(--gold);
}

.rating-value {
  font-size: 1.875rem;
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

/* CTA box */
.cta-box {
  background: linear-gradient(to right, hsla(42, 76%, 51%, 0.08), hsla(32, 82%, 48%, 0.08));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Quote block */
.quote-block {
  background: hsla(228, 16%, 11%, 0.25);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

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

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  color: hsla(42, 76%, 51%, 0.15);
}

.quote-text {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  color: hsla(42, 25%, 92%, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .quote-text { font-size: 1.5rem; }
}

.quote-attribution {
  position: absolute;
  bottom: 0.75rem;
  right: 1.5rem;
  font-family: var(--font-handwritten);
  font-size: 1.125rem;
  color: hsla(42, 76%, 51%, 0.5);
  transform: rotate(4deg);
}

/* Highlight box */
.highlight-box {
  background: hsla(228, 16%, 11%, 0.4);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.highlight-title {
  font-family: var(--font-handwritten);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.highlight-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 48% 52% 55% 45% / 52% 48% 45% 55%;
  filter: blur(48px);
  pointer-events: none;
}

.blob-gold {
  background: hsla(42, 76%, 51%, 0.04);
}

.blob-purple {
  background: hsla(268, 42%, 32%, 0.08);
}

.blob-green {
  background: hsla(148, 55%, 38%, 0.06);
}

.blob-blue {
  background: hsla(198, 85%, 48%, 0.08);
}

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

@media (min-width: 640px) {
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:table-cell { display: table-cell; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:table-cell { display: table-cell; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing helpers */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.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; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* Flex helpers */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Width helpers */
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Position helpers */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.inset-0 { inset: 0; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ========================================
   ADDITIONAL STYLES FOR HTML PAGES
   ======================================== */

/* Intro Section - matches React IntroSection.tsx */
.intro-section {
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .intro-section { padding: 7rem 0 9rem; }
}

/* Section labels and underlines for headers */
.section-label {
  color: var(--gold-dusty);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-underline {
  width: 5rem;
  height: 0.25rem;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 9999px;
}

/* Prose styles - matches React */
.prose-lg {
  font-size: 1.125rem;
  line-height: 1.85;
}

/* Content card with rough borders */
.content-card {
  background: hsla(228, 16%, 11%, 0.45);
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  padding: 1.5rem;
  margin: 2.25rem 0;
  position: relative;
  overflow: hidden;
}

.content-card-label {
  color: var(--gold);
  font-family: var(--font-handwritten);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Handwritten note - matches React */
.handwritten-note {
  font-family: var(--font-handwritten);
  font-size: 1.125rem;
  color: hsla(42, 76%, 51%, 0.6);
  position: absolute;
  right: -1rem;
  top: 0;
  transform: rotate(8deg);
}

/* Decorative blobs */
.deco-blob {
  position: absolute;
  border-radius: 48% 52% 55% 45% / 52% 48% 45% 55%;
  filter: blur(60px);
  pointer-events: none;
}

.deco-blob.gold {
  background: hsla(42, 76%, 51%, 0.04);
}

.deco-blob.purple {
  background: hsla(268, 42%, 32%, 0.08);
}

.intro-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .intro-content { grid-template-columns: 2fr 1fr; gap: 3rem; }
}

.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: hsla(42, 25%, 92%, 0.9);
}

.intro-lead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-classic);
}

.intro-highlight {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: hsla(42, 76%, 51%, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.highlight-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.intro-card {
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.intro-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.quick-facts {
  list-style: none;
}

.quick-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
  font-size: 0.9rem;
}

.quick-facts li:last-child {
  border-bottom: none;
}

.fact-icon {
  font-size: 1rem;
}

/* Games Section - matches React GamesSection.tsx */
.games-section {
  padding: 5rem 0 7rem;
  background: hsla(218, 14%, 19%, 0.25);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .games-section { padding: 7rem 0 9rem; }
}

.games-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

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

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

.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.game-card:hover {
  border-color: hsla(42, 76%, 51%, 0.35);
}

.game-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.game-card-content {
  padding: 1.25rem;
  position: relative;
  z-index: 10;
}

.game-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.game-card:hover .game-card-icon {
  transform: scale(1.1);
}

.game-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.game-card-count {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.game-card-content > p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Experience Section */
.experience-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .experience-section { padding: 5rem 0; }
}

.experience-content {
  max-width: 56rem;
  margin: 0 auto;
}

.experience-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid hsla(42, 76%, 51%, 0.3);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.6rem;
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.experience-verdict {
  margin-top: 3rem;
  padding: 2rem;
  background: hsla(228, 16%, 11%, 0.5);
  border-radius: var(--radius);
}

.experience-verdict h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.verdict-pros-cons {
  display: grid;
  gap: 1.5rem;
}

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

.pros, .cons {
  padding: 1rem;
  border-radius: var(--radius);
}

.pros {
  background: hsla(148, 55%, 38%, 0.1);
}

.cons {
  background: hsla(4, 68%, 48%, 0.1);
}

.pros h4 {
  color: var(--casino-green);
  margin-bottom: 0.75rem;
}

.cons h4 {
  color: var(--casino-red);
  margin-bottom: 0.75rem;
}

.pros ul, .cons ul {
  list-style: none;
}

.pros li, .cons li {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  padding: 0.25rem 0;
}

/* Providers Section */
.providers-section {
  padding: 3rem 0;
  background: hsla(224, 13%, 16%, 0.3);
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.provider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: hsla(228, 16%, 11%, 0.5);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.provider-item:hover {
  border-color: hsla(42, 76%, 51%, 0.3);
}

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

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

/* Payments Section */
.payments-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .payments-section { padding: 5rem 0; }
}

.payments-content {
  max-width: 56rem;
  margin: 0 auto;
}

.payment-methods {
  display: grid;
  gap: 1.5rem;
}

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

.payment-card {
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.payment-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.payment-card.deposit {
  border-color: hsla(148, 55%, 38%, 0.3);
}

.payment-card.withdrawal {
  border-color: hsla(42, 76%, 51%, 0.3);
}

.payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  background: hsla(225, 18%, 7%, 0.5);
  border-radius: 0.5rem;
}

.payment-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.payment-time {
  font-size: 0.8rem;
  color: var(--casino-green);
}

.payment-min {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.payment-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  font-style: italic;
}

.payment-tip {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: hsla(42, 76%, 51%, 0.1);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.payment-tip p {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.9);
  line-height: 1.6;
}

/* Security Section - matches React SecuritySection.tsx */
.security-section {
  padding: 5rem 0 7rem;
  background: hsla(218, 14%, 19%, 0.25);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .security-section { padding: 7rem 0 9rem; }
}

.security-content {
  max-width: 56rem;
  margin: 0 auto;
}

.security-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.security-card {
  background: hsla(228, 16%, 11%, 0.45);
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-card-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
}

.security-card-icon.text-green {
  color: var(--casino-green);
}

.security-card-icon.text-gold {
  color: var(--gold);
}

.security-card-icon.text-blue {
  color: var(--neon-blue);
}

.security-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.security-warning {
  background: hsla(3, 68%, 43%, 0.08);
  border: 1px solid var(--border);
  border-width: 1px 2px 2px 1px;
  border-radius: 0.5rem 0.625rem 0.5rem 0.75rem;
  padding: 1.5rem;
  margin: 2.25rem 0;
  position: relative;
  overflow: hidden;
}

.security-warning-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.security-warning-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--casino-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.security-warning-title {
  color: var(--casino-red);
  font-family: var(--font-handwritten);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.security-warning p {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: hsla(224, 13%, 16%, 0.15);
}

@media (min-width: 768px) {
  .reviews-section { padding: 5rem 0; }
}

.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.reviews-rating-display .rating-stars {
  display: flex;
}

.reviews-rating-display .rating-stars .star {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.reviews-rating-display .rating-stars .star.filled {
  color: var(--gold);
}

.reviews-rating-display .rating-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

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

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

.review-form-container {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

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

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.reviews-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsla(228, 16%, 11%, 0.5);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--foreground);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--primary-foreground);
  border-color: var(--gold);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

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

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

.review-card {
  background: var(--gradient-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: hsla(42, 76%, 51%, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
}

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

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

.review-rating .star {
  font-size: 0.875rem;
}

.review-rating .star.filled {
  color: var(--gold);
}

.review-category {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: hsla(42, 76%, 51%, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.review-content {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.review-pros, .review-cons {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.review-pros strong {
  color: var(--casino-green);
}

.review-cons strong {
  color: var(--casino-red);
}

.review-pros ul, .review-cons ul {
  margin-left: 1rem;
  margin-top: 0.25rem;
}

.review-pros li, .review-cons li {
  color: var(--muted-foreground);
}

.review-date {
  font-size: 0.7rem;
  color: hsla(216, 12%, 52%, 0.6);
  display: block;
  margin-top: 0.5rem;
}

.no-reviews {
  text-align: center;
  color: var(--muted-foreground);
  padding: 2rem;
  grid-column: 1 / -1;
}

/* Review Form */
.reviews-form-container {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.reviews-form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--gold);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsla(225, 18%, 7%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: var(--muted-foreground);
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.review-form textarea {
  min-height: 100px;
  resize: vertical;
}

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

.rating-input span {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

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

.star-rating .star {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: var(--gold);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: hsla(224, 13%, 16%, 0.3);
}

@media (min-width: 768px) {
  .faq-section { padding: 5rem 0; }
}

.faq-grid {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.faq-item:hover,
.faq-item.active {
  border-color: hsla(42, 76%, 51%, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  cursor: pointer;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  border-left: 2px solid hsla(42, 76%, 51%, 0.3);
  margin-left: 1.25rem;
}

/* Final Section - matches React FinalThoughts.tsx */
.final-section {
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-section { padding: 7rem 0 9rem; }
}

.final-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: hsla(42, 25%, 92%, 0.9);
}

.final-recommendation {
  text-align: left;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.final-recommendation h3 {
  color: var(--casino-green);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.final-recommendation h3:last-of-type {
  color: var(--casino-red);
  margin-top: 1.5rem;
}

.final-recommendation ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.final-recommendation li {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

.final-cta {
  margin-top: 2rem;
}

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

/* CTA Section */
.cta-section {
  padding: 3rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, hsla(42, 76%, 51%, 0.08), transparent);
}

@media (min-width: 640px) {
  .cta-section { padding: 4rem 2rem; }
}

.cta-content {
  max-width: 36rem;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

@media (min-width: 640px) {
  .cta-section h2 { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 1.875rem; }
}

.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .cta-section p { font-size: 1rem; }
}

/* Changelog Section - matches React Changelog.tsx */
.changelog-section {
  padding: 2rem 0 3rem;
  background: hsla(224, 13%, 16%, 0.3);
}

.changelog-container {
  max-width: 48rem;
  margin: 0 auto;
}

.changelog-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-dusty);
  margin-bottom: 1rem;
}

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

.changelog-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  background: hsla(225, 18%, 7%, 0.5);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  align-items: center;
}

@media (min-width: 640px) {
  .changelog-item { gap: 1rem; }
}

.changelog-date {
  color: var(--gold-dusty);
  font-family: monospace;
  font-size: 0.75rem;
  white-space: nowrap;
}

.changelog-section-name {
  background: hsla(42, 76%, 51%, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

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

/* Footer */
.footer {
  background: hsl(225, 20%, 5%);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

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

.footer-links h4,
.footer-responsible h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--gold-dusty);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-responsible p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.responsible-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: hsla(216, 12%, 52%, 0.6);
}

/* Quick Info Section (for subpages) */
.quick-info-section {
  padding: 2rem 0;
}

.quick-info-grid {
  display: grid;
  gap: 1rem;
}

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

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

.info-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  display: block;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--gold);
}

.info-detail {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Payment Details Grid */
.payment-details-grid {
  display: grid;
  gap: 1.5rem;
}

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

.payment-detail-card {
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.payment-logo {
  font-size: 1.5rem;
}

.payment-header h3 {
  font-size: 1rem;
  color: var(--foreground);
  flex: 1;
}

.recommended-badge {
  padding: 0.25rem 0.5rem;
  background: hsla(148, 55%, 38%, 0.2);
  color: var(--casino-green);
  font-size: 0.7rem;
  border-radius: 9999px;
}

.payment-info {
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span:first-child {
  color: var(--muted-foreground);
}

.info-row span:last-child {
  color: var(--foreground);
}

/* Verification Box */
.verification-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: hsla(42, 76%, 51%, 0.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.verification-box h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.verification-box p {
  font-size: 0.9rem;
  color: hsla(42, 25%, 92%, 0.9);
  margin-bottom: 0.75rem;
}

.verification-box ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.verification-box li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

.verification-tip {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gold-dusty);
  font-style: italic;
}

/* Experience Box */
.experience-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-item {
  padding: 1.25rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.experience-item h3 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.experience-item p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.experience-result {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 9999px;
}

.experience-result.positive {
  background: hsla(148, 55%, 38%, 0.15);
  color: var(--casino-green);
}

.experience-result.neutral {
  background: hsla(42, 76%, 51%, 0.15);
  color: var(--gold);
}

.experience-result.negative {
  background: hsla(4, 68%, 48%, 0.15);
  color: var(--casino-red);
}

/* Warning Box */
.warning-box {
  padding: 1rem;
  background: hsla(4, 68%, 48%, 0.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--destructive);
  margin-top: 1.5rem;
}

.warning-box.large {
  padding: 1.5rem;
}

.warning-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.warning-box h3 {
  color: var(--casino-red);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.warning-box p {
  font-size: 0.9rem;
  color: hsla(42, 25%, 92%, 0.8);
  line-height: 1.6;
}

.warning-box ul {
  list-style: disc;
  margin-left: 1.25rem;
  margin-top: 0.5rem;
}

.warning-box li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

/* Download Steps */
.download-steps {
  display: grid;
  gap: 1rem;
}

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

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

.step-card {
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--primary-foreground);
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.download-note {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: hsla(42, 76%, 51%, 0.1);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.note-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.download-note p {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.9);
  line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--gradient-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: hsla(42, 76%, 51%, 0.15);
}

.comparison-header .comparison-cell {
  padding: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--gold);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.comparison-cell {
  padding: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
}

.comparison-row .comparison-cell:first-child {
  color: var(--muted-foreground);
  text-align: left;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1rem;
}

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

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

.feature-card {
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  gap: 1rem;
}

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

.tip-card {
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: hsla(42, 76%, 51%, 0.2);
  color: var(--gold);
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.tip-card h3 {
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Live Games Grid */
.live-games-grid {
  display: grid;
  gap: 1.5rem;
}

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

.live-game-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.game-image-placeholder {
  width: 80px;
  height: 80px;
  background: hsla(42, 76%, 51%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.game-info {
  flex: 1;
}

.game-info h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.game-info p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.game-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: hsla(42, 76%, 51%, 0.1);
  color: var(--gold-dusty);
  border-radius: 0.25rem;
}

/* Provider Info */
.provider-info {
  max-width: 48rem;
  margin: 0 auto;
}

.lead-text {
  font-size: 1rem;
  line-height: 1.8;
  color: hsla(42, 25%, 92%, 0.9);
  margin-bottom: 2rem;
}

.provider-features {
  display: grid;
  gap: 1.5rem;
}

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

.provider-features .feature {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
}

.provider-features .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.provider-features .feature h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.provider-features .feature p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* Promos */
.promo-card {
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.promo-card.featured {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, hsla(42, 76%, 51%, 0.1), hsla(32, 82%, 48%, 0.05));
  border-color: hsla(42, 76%, 51%, 0.3);
  max-width: 36rem;
  margin: 0 auto;
}

.promo-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(42, 76%, 51%, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.promo-card.featured .promo-title {
  font-size: 1.5rem;
}

.promo-value {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.promo-details {
  text-align: left;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
}

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

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

.promo-example {
  text-align: left;
  padding: 1rem;
  background: hsla(225, 18%, 7%, 0.5);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.promo-example h4 {
  font-size: 0.875rem;
  color: var(--gold-dusty);
  margin-bottom: 0.5rem;
}

.promo-example p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.promos-grid {
  display: grid;
  gap: 1.5rem;
}

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

.promo-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.promo-mini-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.promo-mini-details span {
  padding: 0.25rem 0.5rem;
  background: hsla(225, 18%, 7%, 0.5);
  color: var(--muted-foreground);
  border-radius: 0.25rem;
}

/* Info Box */
.info-box {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
}

.info-box h4 {
  font-size: 1rem;
  color: var(--gold);
  margin: 1.5rem 0 0.75rem;
}

.info-box h4:first-of-type {
  margin-top: 0;
}

.example-list,
.tips-list {
  list-style: disc;
  margin-left: 1.25rem;
}

.example-list li,
.tips-list li {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

/* Logo Components */
.logo-star {
  color: var(--gold);
  font-size: 1.25rem;
  text-shadow: 0 0 10px hsla(42, 76%, 51%, 0.5);
  animation: flicker 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .logo-star { font-size: 1.5rem; }
}

.logo-casino {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .logo-casino { font-size: 0.7rem; }
}

/* Hero Title Accent */
.hero-title-accent {
  color: var(--gold);
  font-style: italic;
}

/* Hero Handwritten Note */
.hero-handwritten {
  font-family: var(--font-handwritten);
  font-size: 1.125rem;
  color: var(--gold-dusty);
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out 0.25s backwards;
}

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

/* Hero Indicators */
.hero-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fade-in 0.6s ease-out 0.4s backwards;
}

@media (min-width: 640px) {
  .hero-indicators { gap: 2.5rem; }
}

.hero-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.85);
}

.hero-indicator svg {
  flex-shrink: 0;
}

.hero-indicator svg.green {
  color: var(--casino-green);
}

.hero-indicator svg.gold,
.hero-indicator svg.gold-fill {
  color: var(--gold);
}

.hero-indicator.rotate-left {
  transform: rotate(-0.5deg);
}

.hero-indicator.rotate-right {
  transform: rotate(0.5deg);
}

/* Hero Date Badge */
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(218, 14%, 19%, 0.7);
  border: 1px solid hsla(223, 14%, 21%, 0.5);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  animation: fade-in 0.6s ease-out 0.5s backwards;
}

@media (min-width: 768px) {
  .hero-date-badge { font-size: 0.875rem; }
}

/* Float Wobbly Animation */
@keyframes float-wobbly {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

/* Mobile Menu Nav Links */
.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-buttons .btn {
  flex: 1;
}

/* Changelog Section */
.changelog-section {
  padding: 2rem 0 3rem;
  background: hsla(224, 13%, 16%, 0.3);
}

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

.changelog-header svg {
  color: var(--gold-dusty);
}

.changelog-header h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .changelog-header h3 { font-size: 1.25rem; }
}

.changelog-entries {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
}

.changelog-entry {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: hsla(225, 18%, 7%, 0.5);
  border: 1px solid hsla(223, 14%, 21%, 0.3);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.changelog-entry:hover {
  border-color: hsla(42, 65%, 45%, 0.3);
}

@media (min-width: 640px) {
  .changelog-entry {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}

.changelog-date {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.changelog-section-tag,
.changelog-section {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dusty);
  background: hsla(42, 65%, 45%, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.changelog-text {
  font-size: 0.875rem;
  color: hsla(42, 25%, 92%, 0.8);
  font-family: var(--font-body);
  flex: 1;
  margin: 0;
}

.changelog-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: hsla(216, 12%, 52%, 0.6);
  font-family: var(--font-handwritten);
}

/* Dynamic Date Badges */
.section-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.section-date-badge.fresh {
  background: hsla(148, 55%, 38%, 0.1);
  color: hsl(148, 55%, 48%);
}

.section-date-badge.recent {
  background: hsla(38, 78%, 38%, 0.1);
  color: hsl(38, 78%, 48%);
}

.section-date-badge.older {
  background: hsla(216, 12%, 52%, 0.1);
  color: var(--muted-foreground);
}

/* ========================================
   SUBPAGE STYLES - Mobile First
   ======================================== */

/* Subpage Hero */
.subpage-hero {
  padding: 7rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--background), hsl(228, 16%, 11%));
  position: relative;
}

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

.subpage-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

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

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

.subpage-subtitle {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .subpage-subtitle { font-size: 1rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.breadcrumb a {
  color: var(--gold-dusty);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.table-responsive table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--gradient-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-responsive th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  background: hsla(42, 76%, 51%, 0.1);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .table-responsive th { font-size: 0.875rem; padding: 1rem; }
}

.table-responsive td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
  font-size: 0.8rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .table-responsive td { font-size: 0.875rem; }
}

.table-responsive tr:last-child td {
  border-bottom: none;
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-item .step-number {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: var(--gold);
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .step-item { padding: 1.25rem; }
  .step-content h4 { font-size: 1rem; }
  .step-content p { font-size: 0.875rem; }
}

/* Tips Box */
.tips-box {
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 48rem;
  margin: 0 auto;
}

.tips-box ul {
  list-style: none;
}

.tips-box li {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(223, 14%, 21%, 0.3);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.tips-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tips-box li:first-child {
  padding-top: 0;
}

.tips-box li strong {
  color: var(--foreground);
}

/* Feature Grid - Mobile First */
.feature-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

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

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

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

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  color: var(--muted-foreground);
}

.feature-icon.green { color: var(--casino-green); }
.feature-icon.gold { color: var(--gold); }
.feature-icon.red { color: var(--casino-red); }

.feature-item h4 {
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .feature-item h4 { font-size: 1rem; }
  .feature-item p { font-size: 0.8rem; }
}

/* Quick Info Cards */
.quick-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.quick-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsla(216, 12%, 52%, 0.1);
}

.quick-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

.quick-info-icon.green {
  background: hsla(148, 55%, 38%, 0.1);
}
.quick-info-icon.green svg { color: var(--casino-green); }

.quick-info-icon.gold {
  background: hsla(42, 76%, 51%, 0.1);
}
.quick-info-icon.gold svg { color: var(--gold); }

.quick-info-icon.red {
  background: hsla(4, 68%, 48%, 0.1);
}
.quick-info-icon.red svg { color: var(--casino-red); }

.quick-info-content {
  display: flex;
  flex-direction: column;
}

.quick-info-label {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-info-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .quick-info-label { font-size: 0.75rem; }
  .quick-info-value { font-size: 1rem; }
}

/* Games Grid for subpages */
.games-grid {
  display: grid;
  gap: 1rem;
}

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

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

/* Game Card Image */
.game-card-image {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (min-width: 768px) {
  .game-card-image { height: 10rem; }
}

.game-card-placeholder {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(42, 76%, 51%, 0.1);
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--gold-dusty);
}

@media (min-width: 768px) {
  .game-card-placeholder { height: 10rem; }
}

.game-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gold-dusty);
}

/* Promo Card */
.promo-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.promo-card:hover {
  border-color: hsla(42, 76%, 51%, 0.3);
}

.promo-card.featured {
  border-color: var(--gold);
}

.promo-card-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .promo-card-image { height: 12rem; }
}

.promo-card-content {
  padding: 1.25rem;
}

.promo-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.promo-card-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.promo-detail {
  text-align: center;
  padding: 0.5rem;
  background: hsla(225, 18%, 7%, 0.5);
  border-radius: 0.25rem;
}

.promo-detail-label {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  display: block;
}

.promo-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
  display: block;
}

.promo-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(42, 76%, 51%, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: 9999px;
  margin-top: 0.75rem;
}

/* Promo Grid */
.promo-grid {
  display: grid;
  gap: 1.25rem;
}

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

/* Warning Card */
.content-card.warning {
  background: hsla(4, 68%, 48%, 0.08);
  border-color: hsla(4, 68%, 48%, 0.3);
}

.content-card.warning .content-card-label {
  color: var(--casino-red);
}

/* CTA Content */
.cta-content {
  max-width: 32rem;
  margin: 0 auto;
}

/* Mobile Button Fixes */
@media (max-width: 639px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .header-right .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}
