/* Spin Grande Casino - Complete CSS Styles */
/* Converted from Tailwind/React to pure CSS */

/* ========================================
   FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES (Design Tokens)
   ======================================== */
:root {
  /* Colors */
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(45, 20%, 95%);
  --card: hsl(0, 0%, 8%);
  --card-foreground: hsl(45, 20%, 95%);
  --popover: hsl(0, 0%, 6%);
  --popover-foreground: hsl(45, 20%, 95%);
  --primary: hsl(43, 74%, 49%);
  --primary-foreground: hsl(0, 0%, 4%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(45, 20%, 95%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(45, 10%, 60%);
  --accent: hsl(0, 72%, 50%);
  --accent-foreground: hsl(45, 20%, 95%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(45, 20%, 95%);
  --border: hsl(43, 30%, 20%);
  --input: hsl(0, 0%, 15%);
  --ring: hsl(43, 74%, 49%);
  --radius: 0.5rem;

  /* Custom tokens */
  --gold: hsl(43, 74%, 49%);
  --gold-light: hsl(43, 80%, 65%);
  --gold-dark: hsl(43, 70%, 35%);
  --crimson: hsl(0, 72%, 50%);
  --crimson-dark: hsl(0, 72%, 35%);
  --surface-dark: hsl(0, 0%, 6%);
  --surface-darker: hsl(0, 0%, 3%);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(43, 74%, 49%), hsl(43, 80%, 65%));
  --gradient-hero: linear-gradient(180deg, hsla(0, 0%, 4%, 0.3) 0%, hsla(0, 0%, 4%, 0.9) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0, 0%, 10%) 0%, hsl(0, 0%, 6%) 100%);
  --gradient-crimson: linear-gradient(135deg, hsl(0, 72%, 50%), hsl(0, 72%, 35%));

  /* Shadows */
  --shadow-gold: 0 4px 30px hsla(43, 74%, 49%, 0.3);
  --shadow-card: 0 10px 40px hsla(0, 0%, 0%, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  /* Completely prevent pinch zoom and scaling on mobile */
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  /* Prevent any horizontal overflow */
  overscroll-behavior-x: none;
}

/* Wrapper for all page content to prevent overflow */
.page-wrapper,
.min-h-screen {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
}

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

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

/* Text Gradient Gold */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   LAYOUT
   ======================================== */
.min-h-screen {
  min-height: 100vh;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 4%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(43, 30%, 20%, 0.3);
}

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

@media (min-width: 768px) {
  .header-inner {
    height: 4rem;
  }
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

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

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

.logo-accent {
  color: var(--accent);
}

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

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

@media (min-width: 1024px) {
  .nav-desktop {
    gap: 1.5rem;
  }
}

.nav-link {
  color: hsla(45, 20%, 95%, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--foreground);
}

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

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

/* Mobile Search Button */
.mobile-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--foreground);
}

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

.mobile-search-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile Logo Center */
.logo-mobile-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .logo-mobile-center {
    position: relative;
    left: 0;
    transform: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--background);
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  animation: fadeIn 0.3s ease-out;
}

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

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: var(--muted);
}

.mobile-nav-link.active {
  background-color: hsla(43, 74%, 49%, 0.1);
  color: var(--primary);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
}

.mobile-nav-buttons .btn {
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
}

.btn-default {
  height: 2.5rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 0.375rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

/* Button Variants */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: hsla(43, 74%, 49%, 0.9);
  box-shadow: none;
}

.btn-outline {
  border: 1px solid hsla(43, 74%, 49%, 0.5);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: hsla(43, 74%, 49%, 0.1);
  border-color: var(--primary);
}

.btn-hero {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-gold);
}

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

.btn-nav {
  background: transparent;
  border: 1px solid hsla(45, 20%, 95%, 0.3);
  color: var(--foreground);
}

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

.btn-nav-filled {
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
}

.btn-nav-filled:hover {
  background: hsla(0, 72%, 50%, 0.8);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: auto;
  height: calc(100vh - 3.5rem);
  height: calc(100dvh - 3.5rem);
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero {
    height: calc(100vh - 4rem);
    height: calc(100dvh - 4rem);
    max-height: 700px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 0%, 4%, 0.6);
}

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

.hero-badge {
  display: inline-block;
  background-color: hsla(0, 72%, 50%, 0.2);
  color: var(--accent);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  animation: fadeIn 0.5s ease-out forwards;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.5rem; margin-bottom: 0.75rem; }
}

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

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

.hero-subtitle {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.15s;
  opacity: 0;
}

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

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.75rem; margin-bottom: 0.75rem; }
}

.hero-description {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero-description { font-size: 1.125rem; margin-bottom: 1.25rem; }
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.375rem; margin-bottom: 1.5rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 3.5rem 0;
}

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

.section-bg {
  background-color: hsla(0, 0%, 8%, 0.3);
}

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

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

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

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  max-width: 48rem;
}

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

.section-header {
  margin-bottom: 2rem;
}

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

/* ========================================
   FULL WIDTH IMAGE SECTIONS
   ======================================== */
.full-width-image {
  width: 100%;
}

.full-width-image img {
  width: 100%;
  height: auto;
}

/* ========================================
   CARDS
   ======================================== */
.casino-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  border: 1px solid hsla(43, 30%, 20%, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.casino-card:hover {
  border-color: hsla(43, 74%, 49%, 0.5);
  box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.5), 0 0 20px hsla(43, 74%, 49%, 0.1);
}

/* Feature Card */
.feature-card {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: hsla(43, 74%, 49%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

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

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

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

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

/* Promo Card */
.promo-card {
  display: block;
  overflow: hidden;
}

.promo-card-image {
  position: relative;
  height: 12rem;
}

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

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(0, 0%, 4%, 0.5), transparent);
}

.promo-card-content {
  padding: 1.5rem;
  margin-top: -3rem;
  position: relative;
}

.promo-card-title {
  color: var(--foreground);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.promo-card-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .promo-card-description { font-size: 1.25rem; }
}

.promo-card-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.125rem;
}

.promo-card:hover .promo-card-link {
  text-decoration: underline;
}

/* VIP Level Card */
.vip-card {
  padding: 1.5rem;
  text-align: center;
}

.vip-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: hsla(43, 74%, 49%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

.vip-card-name {
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vip-card-points {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.vip-card-conversion {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
}

/* ========================================
   GRIDS
   ======================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   PROSE / ARTICLE CONTENT
   ======================================== */
.prose-casino {
  color: hsla(45, 20%, 95%, 0.9);
  line-height: 1.7;
  font-size: 1.125rem;
}

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

.prose-casino p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .prose-casino p { font-size: 1.25rem; }
}

.prose-casino h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .prose-casino h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .prose-casino h2 { font-size: 3rem; }
}

.prose-casino h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .prose-casino h3 { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .prose-casino h3 { font-size: 2.5rem; }
}

.prose-casino ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.prose-casino ul li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .prose-casino ul li { font-size: 1.25rem; }
}

.prose-casino strong {
  color: var(--primary);
  font-weight: 600;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 4rem 0;
  background-color: hsla(0, 0%, 8%, 0.3);
}

.faq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2.5rem;
  text-align: center;
}

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

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

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid hsla(43, 30%, 20%, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

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

.faq-question:hover {
  border-color: hsla(43, 74%, 49%, 0.5);
}

.faq-icon {
  color: var(--primary);
  font-size: 1.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  background-color: var(--card);
  border: 1px solid hsla(43, 30%, 20%, 0.3);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: -0.5rem;
}

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

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

@media (min-width: 768px) {
  .faq-answer p { font-size: 1.25rem; }
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--card);
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  margin-top: 5rem;
  padding: 3.5rem 0;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .payment-methods { gap: 1.5rem; }
}

.payment-method {
  background-color: hsla(0, 0%, 15%, 0.5);
  border: 1px solid hsla(43, 30%, 20%, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  min-width: 110px;
  text-align: center;
}

.payment-method span {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 500;
}

/* Game Providers */
.game-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .game-providers { gap: 2.5rem; }
}

.game-provider {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

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

.game-provider:hover {
  opacity: 1;
}

/* Security Badges */
.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  margin-bottom: 3rem;
}

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

.security-badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: hsla(43, 74%, 49%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.875rem;
}

/* Footer Links Grid */
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
}

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

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

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .footer-brand-text { font-size: 1.125rem; }
}

.footer-column h3 {
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', system-ui, sans-serif;
}

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

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

@media (min-width: 768px) {
  .footer-column a { font-size: 1.125rem; }
}

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

/* Footer Legal */
.footer-legal {
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  margin-top: 3rem;
  padding-top: 2.5rem;
}

.footer-legal p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.25rem;
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsla(43, 30%, 20%, 0.3);
  margin-top: 2.5rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 1rem;
    text-align: left;
  }
}

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

.footer-locale span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-locale span { font-size: 1rem; }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.cta-description {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 0 20px hsla(43, 74%, 49%, 0.3);
  }
  50% {
    box-shadow: 0 0 30px hsla(43, 74%, 49%, 0.5);
  }
}

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

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

.animate-pulse-gold {
  animation: pulseGold 2s ease-in-out infinite;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

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

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

@media (min-width: 768px) {
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

.mx-auto { margin-left: auto; margin-right: auto; }

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

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

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

/* Icon wrapper in hero */
.hero-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  animation: fadeIn 0.5s ease-out forwards;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
}

/* Main content area */
.main-content {
  flex: 1;
  padding-top: 3.5rem;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 4rem;
  }
}

/* ========================================
   RESPONSIVE IMAGES IN SECTIONS
   ======================================== */
.section-image {
  margin-bottom: 2rem;
}

.section-image img {
  border-radius: 0.5rem;
}
