/* =====================================================
   BillionaireSpin - Main Stylesheet
   Static HTML Version - No frameworks
   ===================================================== */

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

/* === CSS VARIABLES (Design Tokens) === */
:root {
  /* Colors - HSL format */
  --background: 222 47% 6%;
  --foreground: 60 9% 98%;
  --card: 222 40% 10%;
  --card-foreground: 60 9% 98%;
  --popover: 222 40% 8%;
  --popover-foreground: 60 9% 98%;
  --primary: 82 84% 55%;
  --primary-foreground: 222 47% 6%;
  --secondary: 222 30% 15%;
  --secondary-foreground: 60 9% 98%;
  --muted: 222 30% 18%;
  --muted-foreground: 215 20% 65%;
  --accent: 45 93% 47%;
  --accent-foreground: 222 47% 6%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 60 9% 98%;
  --border: 222 30% 20%;
  --input: 222 30% 18%;
  --ring: 82 84% 55%;
  --radius: 0.75rem;
  
  /* Spacing */
  --container-max: 1400px;
  --container-padding: 2rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

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;
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === TYPOGRAPHY === */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(45 93% 47%) 0%, hsl(35 93% 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-premium {
  background: linear-gradient(135deg, hsl(45 93% 47%) 0%, hsl(82 84% 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* === LAYOUT === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

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

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

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

/* === SPACING === */
.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-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

/* === CARDS & SURFACES === */
.glass-card {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  box-shadow: 0 8px 32px hsl(222 47% 4% / 0.4);
}

.glass-card-hover {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  box-shadow: 0 8px 32px hsl(222 47% 4% / 0.4);
  transition: all var(--transition-normal);
}

.glass-card-hover:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: scale(1.02);
  box-shadow: 0 0 30px hsl(82 84% 55% / 0.3);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(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 1rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
}

.btn-default {
  height: 2.75rem;
  padding: 0 1.5rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  border-radius: 1rem;
}

.btn-xl {
  height: 4rem;
  padding: 0 3rem;
  font-size: 1.125rem;
  border-radius: 1rem;
}

/* Button Variants */
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 0 30px hsl(82 84% 55% / 0.4);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-hero {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(160 84% 39%));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
}

.btn-hero:hover {
  box-shadow: 0 0 40px hsl(82 84% 55% / 0.5);
  transform: scale(1.05);
}

.btn-hero:active {
  transform: scale(0.95);
}

.btn-gold {
  background: linear-gradient(to right, hsl(38 92% 50%), hsl(48 96% 53%));
  color: hsl(222 47% 11%);
  font-weight: 700;
  box-shadow: 0 4px 14px hsl(45 93% 47% / 0.3);
}

.btn-gold:hover {
  box-shadow: 0 0 40px hsl(45 93% 47% / 0.5);
  transform: scale(1.05);
}

.btn-gold:active {
  transform: scale(0.95);
}

.btn-outline {
  border: 2px solid hsl(var(--primary) / 0.5);
  background: transparent;
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}

.btn-glass {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
  color: hsl(var(--foreground));
}

.btn-glass:hover {
  background: hsl(var(--card) / 0.8);
  border-color: hsl(var(--primary) / 0.3);
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

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

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

.logo:hover .logo-icon {
  box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
  transition: box-shadow var(--transition-normal);
}

.logo-icon span {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

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

.nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: all var(--transition-normal);
}

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

.nav-link.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
}

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

.header-actions .btn-outline,
.header-actions .btn-icon {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn-outline {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .header-actions .btn-icon {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
}

.mobile-menu-toggle:hover {
  background: hsl(var(--muted));
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
  animation: fadeIn 0.3s ease-out;
}

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

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

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

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: all var(--transition-normal);
}

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

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

.mobile-menu-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

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

/* === HERO SECTION === */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  max-height: 70vh;
}

@media (min-width: 640px) {
  .hero-banner {
    min-height: 450px;
  }
}

@media (min-width: 768px) {
  .hero-banner {
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-banner {
    min-height: 550px;
  }
}

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

@media (min-width: 640px) {
  .hero-image {
    object-position: center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.7), hsl(var(--background) / 0.5));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 48rem;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(0 84% 40% / 0.5);
  border: 1px solid hsl(0 84% 60% / 0.6);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(0 84% 90%);
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

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

.hero-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

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

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

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

.hero-title-white {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-title-gold {
  background: linear-gradient(to right, hsl(48 96% 70%), hsl(40 90% 75%), hsl(48 96% 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  padding: 0 0.5rem;
  font-weight: 500;
}

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

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons .btn {
    width: auto;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

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

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

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

.hero-stat span {
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
}

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

/* === SNOWFLAKES EFFECT === */
.snowflakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon.primary {
  background: hsl(var(--primary) / 0.1);
}

.section-icon.accent {
  background: hsl(var(--accent) / 0.1);
}

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

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

.section-icon.accent svg {
  color: hsl(var(--accent));
}

.section-title {
  font-size: 1.5rem;
}

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

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

/* === BANNER CARDS === */
.banner-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

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

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.4), transparent);
  display: flex;
  align-items: flex-end;
}

.banner-content {
  padding: 1.5rem;
}

.banner-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.banner-badge.primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.banner-badge.accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.banner-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

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

/* === SLOT CARDS === */
.slot-card {
  padding: 1rem;
  position: relative;
}

.slot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.slot-badges {
  display: flex;
  gap: 0.25rem;
}

.slot-badge {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.slot-badge.new {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.slot-badge.hot {
  background: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

.slot-favorite {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.slot-card:hover .slot-favorite {
  opacity: 1;
}

.slot-favorite svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
}

.slot-favorite:hover {
  background: hsl(var(--primary) / 0.2);
}

.slot-favorite:hover svg {
  color: hsl(var(--primary));
}

.slot-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  transition: color var(--transition-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slot-card:hover .slot-title {
  color: hsl(var(--primary));
}

.slot-provider {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.slot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

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

.slot-volatility {
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.slot-volatility.high {
  background: hsl(var(--destructive) / 0.2);
  color: hsl(var(--destructive));
}

.slot-volatility.medium {
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
}

.slot-volatility.low {
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}

/* === SEARCH INPUT === */
.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.search-input {
  width: 100%;
  height: 3rem;
  padding-left: 3rem;
  padding-right: 1rem;
  border-radius: var(--radius);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 1rem;
}

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

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

/* === FILTER BUTTONS === */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  border-color: hsl(var(--primary) / 0.5);
  background: hsl(var(--primary) / 0.1);
}

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

.filter-btn svg {
  width: 1rem;
  height: 1rem;
}

/* === ACCORDION (FAQ) === */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
}

.accordion-item {
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 500;
  color: hsl(var(--foreground));
  background: transparent;
  cursor: pointer;
  transition: color var(--transition-normal);
}

.accordion-trigger:hover {
  color: hsl(var(--primary));
}

.accordion-trigger svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.accordion-item.open .accordion-content {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.accordion-trigger-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rotating-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

/* === REVIEWS === */
.review-card {
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color var(--transition-normal);
}

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

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

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

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar span {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.review-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.review-verified {
  width: 1rem;
  height: 1rem;
  color: hsl(140 71% 45%);
}

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

.review-location svg {
  width: 0.75rem;
  height: 0.75rem;
}

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

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

.review-star {
  width: 1rem;
  height: 1rem;
}

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

.review-star.empty {
  color: hsl(var(--muted-foreground) / 0.3);
}

.review-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-games {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

/* === FOOTER === */
.footer {
  background: hsl(var(--card) / 0.5);
  border-top: 1px solid hsl(var(--border) / 0.5);
  margin-top: 5rem;
}

.footer-trust {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  padding: 2rem 0;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-trust-icon.primary {
  background: hsl(var(--primary) / 0.1);
}

.footer-trust-icon.accent {
  background: hsl(var(--accent) / 0.1);
}

.footer-trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

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

.footer-trust-icon.accent svg {
  color: hsl(var(--accent));
}

.footer-trust-title {
  font-weight: 600;
  font-size: 0.875rem;
}

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

.footer-main {
  padding: 3rem 0;
}

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

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

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

.footer-brand {
  max-width: 20rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

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

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

.footer-links-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links-list a {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: color var(--transition-normal);
}

.footer-links-list a:hover {
  color: hsl(var(--primary));
}

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

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

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

/* === CONTENT SECTIONS === */
.content-section {
  max-width: 56rem;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === STATS GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.stat-card {
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

.stat-value.accent {
  color: hsl(var(--accent));
}

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

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

/* === FEATURE CARDS === */
.feature-card {
  padding: 1.5rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

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

.feature-icon.accent {
  color: hsl(var(--accent));
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* === BONUS CARDS === */
.bonus-card {
  overflow: hidden;
}

.bonus-card.featured {
  grid-column: span 2;
}

.bonus-featured-banner {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(160 84% 39%));
  padding: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.bonus-content {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .bonus-card.featured .bonus-content {
    display: flex;
    gap: 3rem;
  }
  
  .bonus-card.featured .bonus-left {
    flex: 1;
  }
  
  .bonus-card.featured .bonus-right {
    flex: 1;
    border-left: 1px solid hsl(var(--border));
    padding-left: 3rem;
  }
}

.bonus-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-icon.primary {
  background: hsl(var(--primary) / 0.2);
}

.bonus-icon.accent {
  background: hsl(var(--accent) / 0.2);
}

.bonus-icon svg {
  width: 2rem;
  height: 2rem;
}

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

.bonus-icon.accent svg {
  color: hsl(var(--accent));
}

.bonus-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-title {
  font-size: 1.5rem;
}

.bonus-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.bonus-amount {
  margin-bottom: 1.5rem;
}

.bonus-amount-value {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.bonus-amount-value.primary {
  color: hsl(var(--primary));
}

.bonus-amount-value.accent {
  color: hsl(var(--accent));
}

.bonus-amount-max {
  font-size: 1.25rem;
}

.bonus-amount-extra {
  font-size: 1.125rem;
  font-weight: 600;
}

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

.bonus-detail {
  padding: 0.75rem;
  text-align: center;
}

.bonus-detail svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0 auto 0.25rem;
}

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

.bonus-detail-value {
  font-weight: 600;
}

.bonus-features-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.bonus-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bonus-feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-feature-check.primary {
  background: hsl(var(--primary) / 0.2);
}

.bonus-feature-check.accent {
  background: hsl(var(--accent) / 0.2);
}

.bonus-feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.bonus-feature-check.primary svg {
  color: hsl(var(--primary));
}

.bonus-feature-check.accent svg {
  color: hsl(var(--accent));
}

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

/* === DATE DISPLAY === */
.date-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.date-display svg {
  width: 1rem;
  height: 1rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  transition: color var(--transition-normal);
}

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

.breadcrumb svg {
  width: 1rem;
  height: 1rem;
}

/* === WINNERS SECTION === */
.winners-nav {
  display: flex;
  gap: 0.5rem;
}

.winners-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: all var(--transition-normal);
}

.winners-nav-btn:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.winners-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.winner-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.winner-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.winner-avatar span {
  font-weight: 700;
  color: hsl(var(--primary));
}

.winner-name {
  font-weight: 500;
}

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

.winner-amount {
  margin-left: auto;
  font-weight: 700;
  color: hsl(var(--primary));
}

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

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

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

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

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

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

/* === RESPONSIVE VISIBILITY === */
.hidden { display: none; }
.block { display: block; }

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

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

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

/* === ASPECT RATIOS === */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* === OVERFLOW === */
.overflow-hidden { overflow: hidden; }

/* === POSITIONING === */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }

/* === WIDTH/HEIGHT === */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* === TEXT ALIGNMENT === */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* === ROUNDED === */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* === PRINT STYLES === */
@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
