/* ====================== CSS RESET & VARIABLES ====================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(222 47% 6%);
  --background-light: hsl(222 47% 10%);
  --foreground: hsl(210 40% 98%);
  --card: hsl(222 47% 8%);
  --card-hover: hsl(222 47% 10%);
  --primary: hsl(45 93% 47%);
  --primary-dark: hsl(35 95% 42%);
  --primary-foreground: hsl(222 47% 6%);
  --secondary: hsl(222 30% 14%);
  --secondary-hover: hsl(222 30% 18%);
  --muted: hsl(222 30% 12%);
  --muted-foreground: hsl(215 20% 65%);
  --accent: hsl(166 72% 40%);
  --accent-light: hsl(166 72% 50%);
  --destructive: hsl(0 84% 60%);
  --border: hsl(222 30% 18%);
  --border-light: hsl(222 30% 22%);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-gold: 0 4px 20px hsla(45, 93%, 47%, 0.25);
  --shadow-card: 0 4px 20px hsla(0, 0%, 0%, 0.3);
  --gradient-gold: linear-gradient(135deg, hsl(45 93% 47%), hsl(35 95% 42%));
  --gradient-card: linear-gradient(145deg, hsl(222 40% 12%), hsl(222 47% 6%));
  --gradient-hero: linear-gradient(180deg, hsl(222 47% 10%) 0%, hsl(222 47% 4%) 100%);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ====================== UTILITY CLASSES ====================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-padding {
  padding: 64px 16px;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px hsla(45, 93%, 47%, 0.35);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--border-light);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ====================== CARDS ====================== */
.casino-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.casino-card-hover {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.casino-card-hover:hover {
  transform: translateY(-2px);
  border-color: hsla(45, 93%, 47%, 0.3);
  box-shadow: 0 8px 30px hsla(45, 93%, 47%, 0.15);
}

/* ====================== BADGES ====================== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: hsla(222, 30%, 14%, 0.5);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.badge-hot {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--destructive);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-featured {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-best {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====================== HEADER ====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsla(222, 47%, 6%, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  color: var(--primary-foreground);
  font-weight: 900;
  font-size: 1.1rem;
  margin-right: 4px;
}

.logo-royal {
  color: var(--foreground);
}

.logo-spin {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--foreground);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.btn-login:hover {
  background: var(--secondary);
  border-color: var(--border-light);
}

.btn-play-now {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: all 0.2s;
}

.btn-play-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px hsla(45, 93%, 47%, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--secondary);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 120px 16px 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, hsla(45, 93%, 47%, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, hsla(166, 72%, 40%, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: hsla(166, 72%, 40%, 0.12);
  border: 1px solid hsla(166, 72%, 40%, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Welcome Bonus Card */
.bonus-card {
  background: var(--gradient-card);
  border: 1px solid hsla(45, 93%, 47%, 0.25);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px hsla(45, 93%, 47%, 0.1);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.bonus-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bonus-card-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.bonus-card-amount {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.bonus-card-spins {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.bonus-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bonus-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.bonus-card-feature .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsla(166, 72%, 40%, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.bonus-card .btn-gold {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.bonus-card-terms {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 12px;
}

/* ====================== FEATURED GAMES ====================== */
.featured-games {
  background: var(--background);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-column {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-column-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-column-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.icon-slots { background: hsla(45, 93%, 47%, 0.15); color: var(--primary); }
.icon-live { background: hsla(166, 72%, 40%, 0.15); color: var(--accent); }
.icon-jackpot { background: hsla(0, 84%, 60%, 0.15); color: var(--destructive); }

.featured-column-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.featured-column-games {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
}

.featured-game-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: hsla(222, 30%, 14%, 0.3);
  transition: background 0.2s;
  cursor: pointer;
}

.featured-game-item:hover {
  background: hsla(222, 30%, 14%, 0.6);
}

.featured-game-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-game-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.featured-game-item:hover .featured-game-icon {
  color: var(--primary);
}

.featured-game-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.featured-game-name {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-game-provider {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.featured-game-arrow {
  color: var(--muted-foreground);
  opacity: 0;
  transition: opacity 0.2s;
}

.featured-game-item:hover .featured-game-arrow {
  opacity: 1;
}

.featured-column-footer {
  padding: 0 24px 20px;
}

.btn-view-all {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-view-all:hover {
  background: hsla(222, 30%, 14%, 0.5);
  border-color: var(--primary);
}

.providers-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.provider-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.provider-tag:hover {
  color: var(--foreground);
}

/* ====================== POPULAR GAMES ====================== */
.popular-games {
  background: var(--background-light);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: hsla(45, 93%, 47%, 0.3);
  box-shadow: 0 8px 30px hsla(45, 93%, 47%, 0.12);
}

.game-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--secondary);
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: hsla(222, 47%, 6%, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-body {
  padding: 14px 16px;
}

.game-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.game-card-category {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* ====================== BONUSES ====================== */
.bonuses {
  background: var(--background);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bonus-offer-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.bonus-offer-card:hover {
  transform: translateY(-2px);
  border-color: hsla(45, 93%, 47%, 0.3);
  box-shadow: 0 8px 30px hsla(45, 93%, 47%, 0.12);
}

.bonus-offer-card.featured {
  border-color: hsla(45, 93%, 47%, 0.35);
  box-shadow: 0 4px 25px hsla(45, 93%, 47%, 0.15);
}

.bonus-offer-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.bonus-offer-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.bonus-offer-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bonus-offer-icon.gold { background: hsla(45, 93%, 47%, 0.15); }
.bonus-offer-icon.teal { background: hsla(166, 72%, 40%, 0.15); }
.bonus-offer-icon.blue { background: hsla(220, 80%, 55%, 0.15); }
.bonus-offer-icon.purple { background: hsla(280, 70%, 55%, 0.15); }

.bonus-offer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bonus-offer-amount {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.bonus-offer-extra {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.bonus-offer-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

.bonus-offer-detail .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-foreground);
  flex-shrink: 0;
}

.bonus-offer-cta {
  margin-top: auto;
  padding-top: 20px;
}

.bonus-offer-cta .btn {
  width: 100%;
}

/* ====================== PAYMENTS ====================== */
.payments {
  background: var(--background-light);
}

.payments-methods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: hsla(222, 30%, 14%, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
  cursor: pointer;
}

.payment-method:hover {
  border-color: hsla(45, 93%, 47%, 0.4);
  background: hsla(222, 30%, 14%, 0.8);
  color: var(--foreground);
}

.payment-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.payment-method:hover .payment-icon {
  transform: scale(1.05);
}

.payment-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-feature {
  text-align: center;
  padding: 24px 16px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.payment-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: hsla(166, 72%, 40%, 0.12);
  color: var(--accent);
  font-size: 1.3rem;
}

.payment-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.payment-feature p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ====================== GAME PROVIDERS ====================== */
.game-providers {
  background: var(--background);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted-foreground);
  transition: all 0.3s;
  cursor: default;
}

.provider-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

/* ====================== WHY PLAY ====================== */
.why-play {
  background: var(--background-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: hsla(45, 93%, 47%, 0.2);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.why-card-icon.gold { background: hsla(45, 93%, 47%, 0.15); color: var(--primary); }
.why-card-icon.teal { background: hsla(166, 72%, 40%, 0.15); color: var(--accent); }
.why-card-icon.blue { background: hsla(220, 80%, 55%, 0.15); color: hsl(220, 80%, 55%); }
.why-card-icon.red { background: hsla(0, 84%, 60%, 0.15); color: var(--destructive); }
.why-card-icon.purple { background: hsla(280, 70%, 55%, 0.15); color: hsl(280, 70%, 55%); }

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.why-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ====================== ABOUT & FAQ ====================== */
.about-faq {
  background: var(--background);
}

.about-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 896px;
  margin: 0 auto;
}

.about-section {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

@media (min-width: 768px) {
  .about-section {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 3rem 4rem;
  }
}

.about-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
}

.about-section p {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-subtitle::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-section {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 2rem;
  }
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 1.875rem;
  }
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--muted-foreground);
  margin-left: 12px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 16px;
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ====================== REVIEWS ====================== */
.reviews-section {
  background: hsla(222,30%,14%,0.2);
}
.reviews-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews-heading h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
.reviews-heading p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}
.reviews-list {
  display: grid;
  gap: 20px;
}
.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: none;
}
.review-card.visible {
  display: block;
}
.review-name {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--foreground);
}
.review-text {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.reviews-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s;
}
.reviews-page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.reviews-page-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.reviews-page-info {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  min-width: 80px;
  text-align: center;
}

@media (min-width: 768px) {
  .reviews-heading h2 {
    font-size: 2.25rem;
  }
  .reviews-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .reviews-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ====================== RESPONSIBLE GAMBLING ====================== */
.responsible-gambling {
  background: var(--background-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rg-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rg-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--destructive);
  color: var(--destructive);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.rg-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.rg-inner p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rg-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.rg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.rg-link:hover {
  border-color: var(--border-light);
  color: var(--foreground);
}

/* ====================== EXPERT REVIEW ====================== */
.expert-review {
  background: var(--background);
}

.expert-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.expert-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: var(--font-heading);
}

.expert-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.expert-text {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.expert-stars {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 1rem;
}

/* ====================== FOOTER ====================== */
.footer {
  background: hsl(222 47% 4%);
  border-top: 1px solid var(--border);
  padding: 64px 16px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-column-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
  font-family: var(--font-heading);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-legal {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: hsla(215, 20%, 65%, 0.6);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-padding {
    padding: 48px 16px;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .payment-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .payments-methods {
    grid-template-columns: repeat(4, 1fr);
  }

  .bonus-card {
    padding: 24px;
  }

  .providers-bar {
    gap: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .payment-features {
    grid-template-columns: 1fr;
  }

  .providers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payments-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .payment-method {
    padding: 12px 8px;
    font-size: 0.72rem;
  }

  .payment-icon {
    height: 32px;
  }

  .bonus-card {
    padding: 20px;
  }

  .expert-card {
    padding: 20px;
  }

  .about-section {
    padding: 1.25rem;
  }

  .faq-section {
    padding: 1.25rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .providers-bar {
    gap: 10px;
    padding: 12px;
  }
}

/* ====================== ARTICLE CONTENT TABLES ====================== */
.article-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  border-collapse: collapse;
}

.article-content table th,
.article-content table td {
  padding: 8px 12px;
  border: 1px solid hsl(222, 20%, 25%);
  white-space: nowrap;
}

.article-content table th {
  background: hsl(222, 30%, 18%);
  font-weight: 600;
}

.article-content table tr:nth-child(even) {
  background: hsl(222, 20%, 12%);
}

/* ====================== SPIN WHEEL MODAL ====================== */
.wheel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}
.wheel-overlay.active {
  display: flex;
}
.wheel-modal {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: var(--gradient-card);
  border: 1px solid hsla(45,93%,47%,0.2);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.wheel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  line-height: 0;
}
.wheel-close:hover {
  background: var(--secondary);
  color: var(--foreground);
}
.wheel-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.wheel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: hsla(45,93%,47%,0.1);
  border: 1px solid hsla(45,93%,47%,0.2);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.wheel-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.35rem;
}
.wheel-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.wheel-container {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 1.5rem;
}
.wheel-pointer {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid hsla(45,93%,47%,0.3);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(0,0,0,0.2);
  transition: none;
  cursor: pointer;
}
.wheel-disc.spinning {
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel-disc svg {
  width: 100%;
  height: 100%;
}
.wheel-disc text {
  font-family: var(--font-body);
  font-weight: 700;
  fill: white;
  font-size: 3.8px;
  pointer-events: none;
}
.wheel-center-outer {
  fill: hsl(222 47% 6%);
  stroke: hsl(45 93% 47%);
  stroke-width: 2;
}
.wheel-center-inner {
  fill: hsl(45 93% 47%);
}
.wheel-result {
  text-align: center;
}
.wheel-result-prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
  margin-bottom: 1rem;
}
.wheel-result-prize span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}
.wheel-actions {
  text-align: center;
}
.wheel-actions .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}
.wheel-no-thanks {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}
.wheel-no-thanks:hover {
  color: var(--foreground);
}
.wheel-disclaimer {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .wheel-modal {
    padding: 1rem;
  }
  .wheel-container {
    width: 220px;
    height: 220px;
  }
  .wheel-title {
    font-size: 1.25rem;
  }
}
