/* BassBet Casino Design System - Official Theme */
/* Version 2.0 - Multi-language (DE/IT/EL) */
/* Based on Original BassBet Design Reference */

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

/* CSS Variables (Design Tokens) - BassBet Official Colors */
:root {
  /* Core Colors - Dark Blue Theme with Green Accents */
  --background: 220 50% 10%;
  --foreground: 0 0% 100%;
  
  --card: 220 50% 15%;
  --card-foreground: 0 0% 100%;
  
  --popover: 220 50% 12%;
  --popover-foreground: 0 0% 100%;
  
  /* Primary - Bright Green (CTA buttons) */
  --primary: 145 100% 42%;
  --primary-foreground: 0 0% 100%;
  
  /* Secondary - Dark Blue */
  --secondary: 220 60% 20%;
  --secondary-foreground: 0 0% 100%;
  
  --muted: 220 40% 25%;
  --muted-foreground: 210 20% 70%;
  
  /* Accent - Light Blue */
  --accent: 200 100% 50%;
  --accent-foreground: 0 0% 100%;
  
  --destructive: 0 62% 50%;
  --destructive-foreground: 0 0% 100%;
  
  --border: 220 50% 25%;
  --input: 220 50% 18%;
  --ring: 145 100% 42%;
  
  /* Custom Casino Colors */
  --casino-dark-blue: 220 55% 8%;
  --casino-blue: 220 60% 15%;
  --casino-light-blue: 200 100% 50%;
  --casino-green: 145 100% 42%;
  --casino-green-hover: 145 100% 48%;
  --casino-gold: 45 100% 50%;
  --casino-yellow: 48 100% 55%;
  --casino-orange: 30 100% 50%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(180deg, hsl(145 100% 45%) 0%, hsl(145 100% 38%) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.8) 100%);
  --gradient-card: linear-gradient(180deg, hsl(220 55% 18%) 0%, hsl(220 55% 12%) 100%);
  --gradient-header: linear-gradient(180deg, hsl(220 55% 12%) 0%, hsl(220 55% 8%) 100%);
  --gradient-blue-glow: linear-gradient(135deg, hsl(200 100% 50% / 0.3) 0%, transparent 100%);
  
  /* Typography */
  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --header-height: 70px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: hsl(var(--casino-dark-blue));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; color: hsl(var(--foreground)); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

a {
  color: hsl(var(--casino-light-blue));
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: hsl(var(--casino-green));
}

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: hsl(var(--muted-foreground));
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.main-content {
  padding-top: var(--header-height);
}

/* Grid Layouts */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ==================== HEADER - BassBet Style ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, hsl(220 60% 12%) 0%, hsl(220 60% 10%) 100%);
  border-bottom: 1px solid hsl(200 100% 50% / 0.2);
  height: var(--header-height);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.logo-bass {
  color: hsl(var(--casino-light-blue));
  text-shadow: 0 0 10px hsl(200 100% 50% / 0.5);
}

.logo-bet {
  color: hsl(var(--foreground));
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  border-radius: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem;
  border-radius: 8px;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.lang-btn:hover {
  background: hsl(var(--muted));
}

.lang-btn.active {
  background: hsl(var(--casino-light-blue));
  box-shadow: 0 0 10px hsl(200 100% 50% / 0.5);
}

/* Header Buttons */
.header-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-buttons {
    display: flex;
  }
}

.btn-login {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  background: transparent;
  border: 2px solid hsl(var(--casino-light-blue));
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background: hsl(var(--casino-light-blue) / 0.1);
  border-color: hsl(var(--casino-light-blue));
  color: hsl(var(--casino-light-blue));
}

.btn-register {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  background: hsl(var(--casino-green));
  border: 2px solid hsl(var(--casino-green));
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px hsl(145 100% 42% / 0.3);
}

.btn-register:hover {
  background: hsl(var(--casino-green-hover));
  border-color: hsl(var(--casino-green-hover));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(145 100% 42% / 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  color: hsl(var(--foreground));
  cursor: pointer;
}

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

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, hsl(220 55% 15%) 0%, hsl(220 55% 10%) 100%);
  z-index: 120;
  padding: 1.5rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid hsl(200 100% 50% / 0.2);
}

.mobile-menu.active {
  right: 0;
}

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

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  color: hsl(var(--foreground));
  cursor: pointer;
}

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

.mobile-nav-link {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  border-radius: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.mobile-lang-selector {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--secondary));
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: hsl(var(--muted));
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-lang-btn:hover {
  background: hsl(var(--accent));
}

.mobile-lang-btn.active {
  background: hsl(var(--casino-light-blue));
  box-shadow: 0 0 15px hsl(200 100% 50% / 0.5);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==================== BUTTONS - BassBet Green Style ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-casino {
  background: hsl(var(--casino-green));
  color: hsl(var(--foreground));
  box-shadow: 0 4px 20px hsl(145 100% 42% / 0.4), inset 0 1px 0 hsl(145 100% 60% / 0.3);
  border: 2px solid hsl(145 100% 50%);
}

.btn-casino:hover {
  background: hsl(var(--casino-green-hover));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px hsl(145 100% 42% / 0.5), inset 0 1px 0 hsl(145 100% 60% / 0.3);
}

.btn-casino:active {
  transform: translateY(0);
}

.btn-casino-outline {
  background: transparent;
  color: hsl(var(--casino-light-blue));
  border: 2px solid hsl(var(--casino-light-blue));
}

.btn-casino-outline:hover {
  background: hsl(var(--casino-light-blue) / 0.1);
  color: hsl(var(--foreground));
}

/* Yellow/Gold Button Variant */
.btn-gold {
  background: linear-gradient(180deg, hsl(48 100% 55%) 0%, hsl(40 100% 45%) 100%);
  color: hsl(220 50% 10%);
  border: 2px solid hsl(45 100% 50%);
  box-shadow: 0 4px 20px hsl(45 100% 50% / 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px hsl(45 100% 50% / 0.4);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.125rem; }

.btn-full { width: 100%; }

/* ==================== HERO SECTION - BassBet Style ==================== */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
  /* Fallback gradient if no background-image */
  background-color: hsl(220 60% 10%);
  /* Background image properties for inline style */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* When hero has inline background-image style */
.hero[style*="background-image"] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for text readability - ALWAYS visible */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(2, 10, 25, 0.95) 0%, 
    rgba(2, 10, 25, 0.85) 35%, 
    rgba(2, 10, 25, 0.6) 60%,
    rgba(2, 10, 25, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Additional vertical gradient for better contrast */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 10, 25, 0.4) 0%,
    transparent 25%,
    transparent 75%,
    rgba(2, 10, 25, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 35, 0.85) 0%, rgba(5, 15, 35, 0.4) 50%, transparent 100%);
  z-index: 3;
}

/* Hero Promo Badge */
.hero-promo-badge {
  position: absolute;
  right: 5%;
  top: 20%;
  background: rgba(0, 20, 40, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 2px solid hsl(195, 85%, 50%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 5;
  backdrop-filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 2.5rem 1.5rem;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-highlight {
  color: hsl(var(--casino-yellow));
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(220 55% 15% / 0.9);
  border: 1px solid hsl(200 100% 50% / 0.3);
  border-radius: 8px;
  font-size: 0.75rem;
  color: hsl(var(--foreground));
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--casino-light-blue));
}

.updated-badge {
  background: hsl(145 100% 42% / 0.2);
  border-color: hsl(var(--casino-green));
  color: hsl(145 100% 70%);
}

.updated-badge svg {
  color: hsl(var(--casino-green));
}

/* ==================== TABLE OF CONTENTS - BassBet Style ==================== */
.toc {
  background: linear-gradient(180deg, hsl(220 55% 16%) 0%, hsl(220 55% 12%) 100%);
  border: 1px solid hsl(200 100% 50% / 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground));
}

.toc-title svg {
  color: hsl(var(--casino-light-blue));
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: hsl(var(--muted-foreground));
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.toc-list a:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--casino-light-blue));
}

.toc-list .toc-h3 {
  padding-left: 1.5rem;
  font-size: 0.8125rem;
}

/* ==================== CARDS - BassBet Style ==================== */
.card {
  background: linear-gradient(180deg, hsl(220 55% 16%) 0%, hsl(220 55% 12%) 100%);
  border: 1px solid hsl(200 100% 50% / 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card-hover:hover {
  border-color: hsl(var(--casino-light-blue));
  transform: translateY(-4px);
  box-shadow: 0 10px 30px hsl(200 100% 50% / 0.15);
}

.casino-card {
  background: linear-gradient(135deg, hsl(220 55% 18%) 0%, hsl(220 55% 12%) 100%);
  border: 1px solid hsl(200 100% 50% / 0.2);
  border-radius: var(--radius-lg);
}

/* ==================== CONTENT SECTIONS ==================== */
section {
  padding: 4rem 0;
}

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

.section-header h2 {
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* Content Grid (Image + Text) */
.content-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-grid.reverse {
    direction: rtl;
  }
  
  .content-grid.reverse > * {
    direction: ltr;
  }
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

/* Prose Content */
.prose {
  max-width: 800px;
}

.prose h2 {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.prose h3 {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

/* Alert Box */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-warning {
  background: hsla(var(--casino-warning), 0.15);
  border: 1px solid hsla(var(--casino-warning), 0.3);
}

.alert-success {
  background: hsla(var(--casino-success), 0.15);
  border: 1px solid hsla(var(--casino-success), 0.3);
}

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

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

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

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

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

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.pros-list svg {
  color: hsl(var(--casino-success));
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.cons-list svg {
  color: hsl(var(--destructive));
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ==================== AUTHOR BLOCK - BassBet Style ==================== */
.author-block {
  background: linear-gradient(180deg, hsl(220 55% 16%) 0%, hsl(220 55% 12%) 100%);
  border: 1px solid hsl(200 100% 50% / 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(var(--casino-light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  box-shadow: 0 0 20px hsl(200 100% 50% / 0.3);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.author-bio {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: hsl(200 100% 50% / 0.15);
  border: 1px solid hsl(200 100% 50% / 0.3);
  border-radius: 8px;
  font-size: 0.75rem;
  color: hsl(var(--casino-light-blue));
}

.trust-badge svg {
  width: 14px;
  height: 14px;
}

/* ==================== REVIEWS & RATING - BassBet Style ==================== */
.rating-section {
  background: linear-gradient(180deg, hsl(220 55% 16%) 0%, hsl(220 55% 12%) 100%);
  border: 1px solid hsl(200 100% 50% / 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.rating-score {
  text-align: center;
}

.rating-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--casino-light-blue));
  line-height: 1;
  text-shadow: 0 0 20px hsl(200 100% 50% / 0.5);
}

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

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

.rating-stars svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--casino-gold));
  fill: hsl(var(--casino-gold));
}

.rating-stars svg.empty {
  color: hsl(var(--muted));
  fill: none;
}

.rating-info {
  flex: 1;
}

.rating-info p {
  margin: 0;
}

.expert-quote {
  font-style: italic;
  padding: 1rem;
  background: hsla(var(--primary), 0.1);
  border-left: 3px solid hsl(var(--primary));
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
}

.expert-quote p {
  margin: 0;
  color: hsl(var(--foreground));
}

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

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

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

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: hsl(var(--primary));
}

.review-meta h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

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

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-left: auto;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  color: hsl(var(--casino-gold));
  fill: hsl(var(--casino-gold));
}

.review-text {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* ==================== CHANGELOG ==================== */
.changelog {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.changelog-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.changelog-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background: hsl(var(--secondary));
  border-radius: 8px;
}

.changelog-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
  min-width: 80px;
}

.changelog-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}

.changelog-badge.bonus {
  background: hsla(var(--casino-gold), 0.2);
  color: hsl(45 100% 60%);
}

.changelog-badge.payout {
  background: hsla(var(--casino-success), 0.2);
  color: hsl(142 70% 60%);
}

.changelog-badge.games {
  background: hsla(var(--primary), 0.2);
  color: hsl(var(--primary));
}

.changelog-badge.update {
  background: hsla(var(--accent), 0.2);
  color: hsl(var(--accent));
}

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

/* ==================== COMPREHENSIVE FAQ ==================== */
.faq-comprehensive {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

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

.faq-content {
  margin-bottom: 1.5rem;
}

.faq-content p {
  margin-bottom: 1rem;
}

.faq-checklist {
  background: hsl(var(--secondary));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-checklist h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-checklist h4 svg {
  color: hsl(var(--primary));
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: hsl(var(--foreground));
}

.checklist li svg {
  color: hsl(var(--casino-success));
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* ==================== FOOTER - BassBet Style ==================== */
.footer {
  background: linear-gradient(180deg, hsl(220 55% 12%) 0%, hsl(220 55% 8%) 100%);
  border-top: 1px solid hsl(200 100% 50% / 0.2);
  padding-top: 3rem;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border));
}

.footer-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--casino-light-blue));
  border: none;
  border-radius: 25px;
  color: hsl(var(--foreground));
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-lang-btn:hover {
  background: hsl(var(--casino-light-blue) / 0.8);
}

.footer-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 25px;
  color: hsl(var(--foreground));
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-chat-btn:hover {
  background: hsl(var(--muted));
}

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

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

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

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

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

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

.footer-contact a:hover {
  color: hsl(var(--casino-light-blue));
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  font-style: italic;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: hsl(var(--casino-light-blue));
}

/* Payment Methods - BassBet Style */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.payment-icon {
  width: 60px;
  height: 36px;
  background: hsl(var(--casino-light-blue));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  transition: transform 0.2s ease;
}

.payment-icon:hover {
  transform: translateY(-2px);
}

.payment-icon.visa { background: #1a1f71; }
.payment-icon.mastercard { background: #ff5f00; }
.payment-icon.paysafe { background: #2e3191; }

.payment-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

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

.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(var(--destructive));
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

/* Responsible Gaming */
.responsible-gaming {
  background: hsl(var(--secondary));
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.responsible-gaming p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* ==================== SCROLL TO TOP - BassBet Style ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: hsl(var(--casino-green));
  border: 2px solid hsl(145 100% 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 40;
  box-shadow: 0 4px 20px hsl(145 100% 42% / 0.4);
}

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

.scroll-to-top:hover {
  background: hsl(var(--casino-green-hover));
  transform: translateY(-4px);
  box-shadow: 0 6px 25px hsl(145 100% 42% / 0.5);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--foreground));
}
}

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

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px hsla(var(--primary), 0.5);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

/* ==================== UTILITIES ==================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-success { color: hsl(var(--casino-success)); }
.text-warning { color: hsl(var(--casino-warning)); }
.text-gold { color: hsl(var(--casino-gold)); }

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

.border { border: 1px solid hsl(var(--border)); }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

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

.hidden { display: none; }
.block { display: block; }

.w-full { width: 100%; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-fadeIn { animation: fadeIn 0.5s ease; }
.animate-fadeInUp { animation: fadeInUp 0.5s ease; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  
  .hero {
    min-height: 280px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .rating-header {
    flex-direction: column;
    text-align: center;
  }
  
  .changelog-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .lang-selector {
    padding: 0.25rem;
  }
  
  .lang-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

/* ==================== RECENT WINS TICKER ==================== */
.wins-ticker {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem 0;
  overflow: hidden;
}

.wins-ticker-inner {
  display: flex;
  animation: marquee 20s linear infinite;
}

.wins-ticker-inner:hover {
  animation-play-state: paused;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  border-right: 1px solid hsl(var(--border));
}

.win-item:last-child {
  border-right: none;
}

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

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

.win-amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--casino-gold));
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== IMAGE SECTIONS ==================== */
.image-showcase {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.image-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.image-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid hsla(var(--primary), 0.3);
  border-radius: var(--radius);
  pointer-events: none;
}

/* Promo/Game Image Links */
.promo-image-link img,
.games-image-link img {
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius);
}

/* ==================== FORMS - BassBet Style ==================== */
.form-group {
  margin-bottom: 1rem;
}

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

.form-input,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background: hsl(220 55% 12%);
  border: 1px solid hsl(200 100% 50% / 0.3);
  border-radius: var(--radius-lg);
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--casino-light-blue));
  box-shadow: 0 0 0 3px hsl(200 100% 50% / 0.2);
}

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

/* Affiliate Disclaimer */
.affiliate-disclaimer {
  background: hsl(200 100% 50% / 0.1);
  border: 1px solid hsl(200 100% 50% / 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-top: 2rem;
}

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

/* ==================== GAME CATEGORIES - BassBet Style ==================== */
.game-categories {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: hsl(220 55% 15%);
  border: 1px solid hsl(200 100% 50% / 0.3);
  border-radius: 25px;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.category-pill:hover {
  background: hsl(220 55% 20%);
  border-color: hsl(var(--casino-light-blue));
}

.category-pill.active {
  background: hsl(var(--casino-light-blue));
  border-color: hsl(var(--casino-light-blue));
}

.category-pill svg,
.category-pill img {
  width: 20px;
  height: 20px;
}

/* ==================== GAME CARDS - BassBet Style ==================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

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

/* ==================== SIDEBAR NAVIGATION - BassBet Style ==================== */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  text-decoration: none;
}

.sidebar-link:hover {
  background: hsl(220 55% 18%);
  color: hsl(var(--foreground));
}

.sidebar-link.active {
  background: hsl(var(--casino-light-blue) / 0.15);
  color: hsl(var(--casino-light-blue));
  border-left: 3px solid hsl(var(--casino-light-blue));
}

.sidebar-link svg {
  width: 20px;
  height: 20px;
}

/* Special Promo Link */
.sidebar-link.promo {
  background: linear-gradient(135deg, hsl(45 100% 50% / 0.2) 0%, hsl(30 100% 50% / 0.2) 100%);
  color: hsl(var(--casino-yellow));
  border: 1px solid hsl(45 100% 50% / 0.3);
}

.sidebar-link.promo:hover {
  background: linear-gradient(135deg, hsl(45 100% 50% / 0.3) 0%, hsl(30 100% 50% / 0.3) 100%);
}

/* ==================== PROMO BANNER - BassBet Style ==================== */
.promo-banner {
  position: relative;
  background: linear-gradient(135deg, hsl(200 80% 45%) 0%, hsl(220 60% 30%) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, hsl(200 100% 60% / 0.3) 0%, transparent 100%);
  transform: rotate(15deg);
}

.promo-content {
  position: relative;
  z-index: 10;
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--casino-yellow));
  margin-bottom: 0.5rem;
}

.promo-subtitle {
  font-size: 1rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

/* ==================== RESPONSIVE - Hero Background ==================== */
@media (max-width: 1024px) {
  .hero-promo-badge {
    right: 2%;
    top: 15%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero-promo-badge span {
    font-size: 0.95rem !important;
  }
  
  .hero-promo-badge p {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    background-position: center top;
  }
  
  /* Stronger overlay on mobile for readability */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(2, 10, 25, 0.92) 0%,
      rgba(2, 10, 25, 0.88) 50%,
      rgba(2, 10, 25, 0.95) 100%
    );
  }
  
  .hero::after {
    background: rgba(2, 10, 25, 0.3);
  }
  
  .hero-overlay {
    background: rgba(5, 15, 35, 0.4);
  }
  
  /* Hide promo badge on mobile - text gets cluttered */
  .hero-promo-badge {
    display: none;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 300px;
  }
  
  /* Even stronger overlay on small screens */
  .hero::before {
    background: rgba(2, 10, 25, 0.93);
  }
  
  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .hero-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
  }
}
