/* ============================================
   NV Casino - Complete CSS Stylesheet
   Version: 1.0 | January 2026
   ============================================ */

/* ============================================
   1. CSS RESET & BOX-SIZING
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ============================================
   2. CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Colors - HSL Values */
  --background: 250, 30%, 8%;
  --foreground: 0, 0%, 98%;
  --card: 250, 25%, 12%;
  --card-foreground: 0, 0%, 98%;
  --popover: 250, 25%, 10%;
  --popover-foreground: 0, 0%, 98%;
  --primary: 330, 85%, 55%;
  --primary-foreground: 0, 0%, 100%;
  --secondary: 250, 25%, 18%;
  --secondary-foreground: 0, 0%, 98%;
  --muted: 250, 20%, 20%;
  --muted-foreground: 250, 10%, 60%;
  --accent: 280, 70%, 50%;
  --accent-foreground: 0, 0%, 100%;
  --destructive: 0, 72%, 51%;
  --border: 250, 20%, 20%;
  --input: 250, 20%, 18%;
  --ring: 330, 85%, 55%;
  --radius: 0.75rem;
  
  /* Custom Casino Colors */
  --casino-dark: 250, 30%, 6%;
  --pink: 330, 85%, 55%;
  --pink-light: 330, 90%, 65%;
  --pink-dark: 330, 80%, 45%;
  --purple: 280, 70%, 50%;
  --purple-dark: 280, 60%, 30%;
  --success: 142, 70%, 45%;
}

/* ============================================
   3. BASE STYLES
   ============================================ */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(180deg, hsl(250, 30%, 10%) 0%, hsl(250, 30%, 6%) 100%);
  color: hsl(var(--foreground));
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

a:hover {
  color: hsl(var(--pink-light));
}

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

ul, ol {
  list-style: none;
}

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

.main-content {
  padding-top: 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section {
  padding: 4rem 0;
}

/* 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; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(var(--border), 0.5);
  height: 80px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.logo-n {
  font-size: 1.75rem;
  color: hsl(var(--primary));
}

.logo-v {
  font-size: 1.75rem;
  color: white;
}

.logo-casino {
  font-size: 1.25rem;
  color: white;
  margin-left: 0.25rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

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

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

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-selector:hover {
  background: hsl(var(--secondary));
}

.lang-flag {
  font-size: 1.25rem;
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: hsl(var(--card));
  z-index: 100;
  padding: 1.5rem;
  transition: right 0.3s ease;
  border-left: 1px solid hsl(var(--border));
}

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.5rem;
}

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

.mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: hsla(var(--secondary), 0.5);
  color: white;
}

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

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-casino {
  background: linear-gradient(135deg, hsl(var(--pink)) 0%, hsl(var(--pink-dark)) 100%);
  color: white;
  box-shadow: 0 4px 15px hsla(var(--pink), 0.3);
}

.btn-casino:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsla(var(--pink), 0.4);
  color: white;
}

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

.btn-casino-outline:hover {
  background: hsl(var(--purple));
  color: white;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(var(--background), 0.4) 0%, 
    hsla(var(--background), 0.6) 50%, 
    hsl(var(--background)) 100%
  );
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

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

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(var(--secondary), 0.6);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  border: 1px solid hsla(var(--border), 0.5);
}

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

.badge-icon.green { color: #4ade80; }
.badge-icon.pink { color: hsl(var(--primary)); }
.badge-icon.yellow { color: #facc15; }

.badge-text {
  font-size: 0.75rem;
  color: white;
}

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

/* ============================================
   8. TABLE OF CONTENTS
   ============================================ */
.toc {
  background: hsla(var(--secondary), 0.3);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-item.level-3 {
  margin-left: 1rem;
}

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

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

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

/* ============================================
   9. CARDS
   ============================================ */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.card-hover {
  transition: all 0.2s ease;
}

.card-hover:hover {
  border-color: hsla(var(--primary), 0.3);
  transform: translateY(-2px);
}

.casino-card {
  background: linear-gradient(135deg, hsla(250, 25%, 14%, 0.9), hsla(250, 25%, 10%, 0.9));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* ============================================
   10. AUTHOR BLOCK
   ============================================ */
.author-block {
  background: hsla(var(--card), 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, hsl(var(--purple)), hsl(var(--pink)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

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

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

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

.author-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.author-trust-item svg {
  width: 1rem;
  height: 1rem;
}

.author-trust-item.verified {
  color: #4ade80;
}

.author-methodology {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.author-methodology strong {
  color: white;
}

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

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.content-image {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.content-text h2,
.content-text h3 {
  margin-bottom: 1.5rem;
  scroll-margin-top: 5rem;
}

.prose {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.prose strong {
  color: white;
}

.prose p {
  margin-bottom: 1rem;
}

.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: hsla(var(--card), 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.alert-box svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.alert-box.warning svg {
  color: #facc15;
}

.alert-box.success svg {
  color: #4ade80;
}

.alert-box p {
  font-size: 0.875rem;
  color: white;
  margin: 0;
}

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

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: 'Montserrat', sans-serif;
}

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

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pros-card {
  background: hsla(var(--secondary), 0.3);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

.cons-card {
  background: hsla(var(--secondary), 0.3);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

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

.pros-title .icon-wrapper {
  padding: 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
}

.cons-title .icon-wrapper {
  padding: 0.5rem;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 0.5rem;
}

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

.pros-item, .cons-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pros-item svg {
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cons-item svg {
  color: #fb923c;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ============================================
   12. REVIEWS & RATINGS
   ============================================ */
.rating-section {
  text-align: center;
  margin-bottom: 3rem;
}

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

.star {
  width: 2rem;
  height: 2rem;
  color: #facc15;
  fill: #facc15;
}

.star.half {
  fill: url(#half-gradient);
}

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

.rating-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-left: 0.5rem;
}

.expert-quote {
  max-width: 42rem;
  margin: 0 auto;
  background: hsla(var(--secondary), 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsla(var(--border), 0.5);
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin: 0 auto 0.75rem;
}

.quote-text {
  font-size: 1.125rem;
  color: white;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.quote-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--border), 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

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

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

.review-avatar {
  width: 3rem;
  height: 3rem;
  background: hsla(var(--primary), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.review-name {
  font-weight: 600;
  color: white;
}

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

.review-stars svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
  fill: #facc15;
}

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

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

/* ============================================
   13. CHANGELOG
   ============================================ */
.changelog {
  max-width: 56rem;
  margin: 0 auto;
}

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

.changelog-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

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

.changelog-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: hsla(var(--secondary), 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid hsla(var(--border), 0.5);
  transition: border-color 0.2s ease;
}

.changelog-item:hover {
  border-color: hsla(var(--primary), 0.3);
}

.changelog-date {
  flex-shrink: 0;
  width: 6rem;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.changelog-dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.375rem;
  border-radius: 50%;
  background: hsl(var(--primary));
}

.changelog-content {
  flex: 1;
  min-width: 0;
}

.changelog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  border: 1px solid;
}

.changelog-badge.bonuses {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
  border-color: rgba(236, 72, 153, 0.3);
}

.changelog-badge.payments {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.changelog-badge.games {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.3);
}

.changelog-badge.withdrawals {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.changelog-badge.verification {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
  border-color: rgba(234, 179, 8, 0.3);
}

.changelog-description {
  font-size: 0.875rem;
  color: white;
  margin: 0;
}

/* ============================================
   14. COMPREHENSIVE FAQ
   ============================================ */
.comprehensive-faq {
  max-width: 56rem;
  margin: 0 auto;
}

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

.faq-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, hsl(var(--purple)), hsl(var(--pink)));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.faq-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.faq-question {
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

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

.faq-paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
}

.faq-checklist {
  background: hsla(var(--card), 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
}

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

.faq-checklist-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.faq-checklist-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

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

.faq-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-checklist-number {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid hsla(var(--purple), 0.5);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

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

.faq-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

/* Checklist Styles - Alternative class names */
.checklist-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.checklist-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.checklist-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checklist-num {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid hsla(var(--purple), 0.5);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.checklist-items li span:last-child {
  color: hsl(var(--muted-foreground));
}

.checklist-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

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

.stats-grid-4 .stat-card {
  background: hsla(var(--secondary), 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid hsla(var(--border), 0.5);
}

.stats-grid-4 .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin: 0;
}

.stats-grid-4 .stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  margin-top: 0.25rem;
}

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

@media (max-width: 480px) {
  .stats-grid-4 {
    grid-template-columns: 1fr;
  }
}

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

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

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

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

.form-select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  accent-color: hsl(var(--primary));
}

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

.form-checkbox-label a {
  color: hsl(var(--primary));
}

.form-tabs {
  display: flex;
  background: hsl(var(--secondary));
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.form-tab {
  flex: 1;
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-tab.active {
  background: hsl(var(--card));
  color: white;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.25rem;
}

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

.full-width-image {
  width: 100%;
  border-radius: 1rem;
}

.rounded-image {
  border-radius: 1rem;
}

.rounded-image-xl {
  border-radius: 1.5rem;
}

.shadow-image {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   17. FOOTER
   ============================================ */
.footer {
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
}

.footer-contact {
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem 0;
}

.footer-contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-email a {
  color: hsl(var(--muted-foreground));
}

.footer-email a:hover {
  color: white;
}

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

.footer-chat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-chat:hover {
  color: white;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: hsla(var(--secondary), 0.5);
  border-radius: 0.25rem;
}

.footer-lang-flag {
  font-size: 1.125rem;
}

.footer-lang-code {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

.footer-section-title {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.footer-payments-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.payment-visa { font-weight: 700; color: white; }
.payment-mastercard { font-weight: 700; color: #f97316; }
.payment-skrill { font-weight: 700; color: #a855f7; }
.payment-paysafe { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.payment-neteller { font-weight: 700; color: #4ade80; }
.payment-rapid { font-weight: 700; color: white; }
.payment-mifinity { font-weight: 700; color: #22d3ee; }
.payment-bitcoin { font-weight: 700; color: #f97316; }
.payment-ethereum { font-weight: 700; color: #c084fc; }

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

.footer-providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.7;
}

.footer-providers-list span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-providers-list span:hover {
  color: white;
}

.footer-links {
  padding: 2.5rem 0;
}

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

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

.footer-nav a,
.footer-nav span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-license-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.footer-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(var(--secondary), 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.footer-license-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

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

.footer-responsible {
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 0;
  background: hsla(var(--secondary), 0.2);
}

.footer-responsible-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-responsible-content svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #eab308;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-responsible-content strong {
  color: white;
}

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

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

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

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

.footer-18plus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #ef4444;
  color: #ef4444;
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-limits {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ============================================
   18. SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px hsla(var(--primary), 0.3);
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: hsl(var(--pink-light));
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   19. 404 PAGE
   ============================================ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: hsl(var(--background));
}

.not-found h1 {
  font-size: 6rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.not-found a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--primary));
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.not-found a:hover {
  background: hsl(var(--pink-light));
  color: white;
}

/* ============================================
   20. UTILITIES
   ============================================ */
.text-gradient-pink {
  background: linear-gradient(to right, hsl(330, 90%, 65%), hsl(330, 85%, 55%), hsl(280, 70%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white { color: white; }
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-success { color: #4ade80; }
.text-warning { color: #facc15; }
.text-error { color: #ef4444; }

.bg-card { background: hsl(var(--card)); }
.bg-card-50 { background: hsla(var(--card), 0.5); }
.bg-card-30 { background: hsla(var(--card), 0.3); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-secondary-30 { background: hsla(var(--secondary), 0.3); }

.border-border { border: 1px solid hsl(var(--border)); }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

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

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

.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

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

.w-full { width: 100%; }

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

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

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

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* ============================================
   21. 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 {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-marquee { animation: marquee 30s linear infinite; }

/* ============================================
   22. MOBILE RESPONSIVE STYLES
   ============================================ */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid.reverse .content-image {
    order: -1;
  }
  
  .author-content {
    flex-direction: row;
  }
  
  .author-trust {
    border-left: 1px solid hsl(var(--border));
    padding-left: 1.5rem;
    min-width: 12.5rem;
  }
  
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

@media (max-width: 1023px) {
  .nav-desktop,
  .header-buttons {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 200px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid .order-1,
  .content-grid .order-2 {
    order: unset;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    width: 100%;
    justify-content: center;
  }
  
  .faq-question {
    font-size: 1.25rem;
  }
}
