/* ===== DESIGN SYSTEM ===== */
:root {
  --primary: #e8a020;
  --primary-dark: #c4841a;
  --primary-light: #f5c060;
  --secondary: #1a2540;
  --secondary-light: #253350;
  --accent: #e84040;
  --accent-light: #ff6060;
  --success: #22c55e;
  --success-light: #4ade80;
  --warning: #f59e0b;
  --error: #ef4444;
  --neutral-900: #0a0e1a;
  --neutral-800: #111827;
  --neutral-700: #1f2937;
  --neutral-600: #374151;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --surface: #111827;
  --surface-2: #1f2937;
  --surface-3: #253350;
  --border: rgba(255,255,255,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px rgba(232,160,32,0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--neutral-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #0a0e1a;
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232,160,32,0.08);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-game { width: 100%; margin-top: 16px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(232,160,32,0.15);
}
.age-modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.age-modal-logo .logo-icon { font-size: 2rem; color: var(--primary); }
.age-modal-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.age-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.modal-box h2 { margin-bottom: 12px; color: var(--text-primary); }
.modal-box p { color: var(--text-secondary); margin-bottom: 12px; font-size: 0.95rem; }
.age-sub { font-size: 0.85rem !important; color: var(--text-muted) !important; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 20px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-500);
  border-radius: 4px;
  background: transparent;
  transition: all 0.2s;
  position: relative;
  margin-top: 2px;
}
.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #0a0e1a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  z-index: 9000;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.cookie-banner.hidden { display: none; }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 0.9rem; color: var(--text-secondary); min-width: 200px; }
.cookie-content a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,14,26,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--primary); }
.logo-icon { font-size: 1.6rem; color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--primary); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
  padding: 8px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
}
.nav-links .nav-cta:hover { color: #0a0e1a; box-shadow: var(--shadow-gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,14,26,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,160,32,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,64,64,0.08) 0%, transparent 50%),
              linear-gradient(180deg, var(--neutral-900) 0%, #0d1224 100%);
  padding: 120px 24px 80px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; color: var(--text-primary); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
}
.card-fan {
  position: relative;
  width: 220px;
  height: 300px;
}
.playing-card {
  position: absolute;
  width: 100px;
  height: 140px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.card-a { color: #0a0e1a; top: 40px; left: 0; transform: rotate(-15deg); z-index: 4; }
.card-k { color: #e84040; top: 20px; left: 40px; transform: rotate(-5deg); z-index: 3; }
.card-q { color: #e84040; top: 30px; left: 80px; transform: rotate(5deg); z-index: 2; }
.card-j { color: #0a0e1a; top: 50px; left: 110px; transform: rotate(15deg); z-index: 1; }
.card-fan:hover .card-a { transform: rotate(-20deg) translateY(-15px); }
.card-fan:hover .card-k { transform: rotate(-7deg) translateY(-10px); }
.card-fan:hover .card-q { transform: rotate(7deg) translateY(-10px); }
.card-fan:hover .card-j { transform: rotate(20deg) translateY(-15px); }

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ===== GAMES SECTION ===== */
.games-section {
  padding: 100px 0;
  background: var(--neutral-800);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 40px rgba(232,160,32,0.15); }
.game-card-bg {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.poker-bg {
  background: linear-gradient(135deg, #0d4a2c 0%, #1a7a4a 50%, #0d4a2c 100%);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px
  );
}
.poker-bg::after {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 12px;
  white-space: nowrap;
}
.slots-bg {
  background: linear-gradient(135deg, #1a1240 0%, #2d1a6e 50%, #1a1240 100%);
}
.slots-bg::after {
  content: '⭐ 💎 🔔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  letter-spacing: 8px;
  white-space: nowrap;
}
.roulette-bg {
  background: linear-gradient(135deg, #1a0d0d 0%, #5a1010 50%, #1a0d0d 100%);
}
.roulette-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px solid rgba(232,160,32,0.3);
  box-shadow: inset 0 0 20px rgba(232,160,32,0.1);
}
.game-card-content { padding: 24px; }
.game-icon { font-size: 2.5rem; margin-bottom: 12px; }
.game-card h3 { margin-bottom: 10px; color: var(--text-primary); }
.game-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.game-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-body);
}
.game-players { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.dot-live {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.featured-game {
  border-color: rgba(232,160,32,0.4);
  box-shadow: 0 0 30px rgba(232,160,32,0.1);
}
.featured-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 5px 40px;
  transform: rotate(45deg);
  z-index: 10;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  background: var(--neutral-900);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.3);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--surface-3) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-900);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.65;
  max-width: 300px;
}
.footer-logo { margin-bottom: 8px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-contact a {
  color: var(--primary);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--primary-light); }
.footer-disclaimer {
  background: rgba(232,64,64,0.06);
  border: 1px solid rgba(232,64,64,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.footer-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.disclaimer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.disclaimer-links a {
  color: var(--primary);
  font-size: 0.85rem;
  text-decoration: underline;
  font-weight: 500;
}
.disclaimer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--neutral-900) 100%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTENT PAGE ===== */
.content-page {
  padding: 80px 0 100px;
  background: var(--neutral-900);
}
.content-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-section h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--primary);
}
.content-section h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--text-primary);
}
.content-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.content-section ul, .content-section ol {
  color: var(--text-secondary);
  margin: 0 0 16px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.content-section li { margin-bottom: 8px; }
.content-section a { color: var(--primary); text-decoration: underline; }

/* ===== STEP CARDS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* ===== FAQ ACCORDION ===== */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s;
  font-size: 1.2rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== GAME PAGE STYLES ===== */
.game-layout {
  min-height: 100vh;
  padding: 90px 24px 60px;
  background: var(--neutral-900);
}
.game-header {
  max-width: 960px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.game-header h1 { font-size: 1.8rem; color: var(--text-primary); }
.game-balance {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  text-align: center;
}
.balance-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.balance-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.game-container {
  max-width: 960px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }

/* ===== POKER GAME ===== */
.poker-table {
  background: radial-gradient(ellipse at center, #1a6a3a 0%, #0d4a2c 60%, #073018 100%);
  border: 4px solid #8b6914;
  border-radius: 160px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.6);
}
.poker-board {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.poker-players {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.player-area { text-align: center; }
.player-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.player-cards { display: flex; gap: 6px; justify-content: center; }
.pot-area { text-align: center; }
.pot-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.pot-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.p-card {
  width: 56px;
  height: 80px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}
.p-card.face-down {
  background: linear-gradient(135deg, #1a3060 0%, #2a4888 100%);
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px,
    transparent 2px, transparent 10px
  );
  color: transparent;
}
.p-card.empty {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.15);
}
.p-card.red { color: #e84040; }
.p-card.black { color: #111; }
.poker-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.poker-controls button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-fold { background: rgba(255,255,255,0.1); color: var(--text-secondary); border: 1px solid var(--border) !important; }
.btn-fold:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3) !important; }
.btn-check { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3) !important; }
.btn-check:hover { background: rgba(34,197,94,0.25); }
.btn-raise { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #0a0e1a; }
.btn-raise:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn-allin { background: linear-gradient(135deg, var(--accent), #c42020); color: #fff; }
.btn-allin:hover { transform: translateY(-2px); }
.game-message {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.msg-win { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.msg-lose { background: rgba(232,64,64,0.12); color: var(--accent-light); border: 1px solid rgba(232,64,64,0.25); }
.msg-info { background: rgba(232,160,32,0.12); color: var(--primary); border: 1px solid rgba(232,160,32,0.25); }

/* ===== SLOTS GAME ===== */
.slots-machine {
  background: linear-gradient(180deg, #1a1240 0%, #0d0a24 100%);
  border: 2px solid #4a3080;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 24px;
  box-shadow: 0 0 60px rgba(74,48,128,0.3), inset 0 0 40px rgba(0,0,0,0.5);
}
.slots-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  text-shadow: 0 0 20px rgba(232,160,32,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reels-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
}
.reel {
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.reel-inner {
  transition: transform 0.05s linear;
  font-size: 3rem;
  line-height: 1;
}
.reel.spinning .reel-inner {
  animation: slot-spin 0.1s linear infinite;
}
@keyframes slot-spin {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}
.slots-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.slots-stat {
  flex: 1;
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px;
}
.slots-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.slots-stat-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.bet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bet-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bet-btn:hover { background: rgba(232,160,32,0.2); border-color: var(--primary); }
.bet-display {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 80px;
  text-align: center;
}
.spin-btn {
  width: 100%;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}
.spin-btn:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.paytable {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}
.paytable h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}
.paytable-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.paytable-symbols { font-size: 1.2rem; letter-spacing: 4px; }
.paytable-mult { color: var(--primary); font-weight: 600; font-family: var(--font-display); }

/* ===== ROULETTE GAME ===== */
.roulette-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.roulette-wheel-area { text-align: center; }
.roulette-wheel {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    #c00 0deg, #c00 9.73deg,
    #111 9.73deg, #111 19.45deg,
    #c00 19.45deg, #c00 29.18deg,
    #111 29.18deg, #111 38.9deg,
    #c00 38.9deg, #c00 48.63deg,
    #111 48.63deg, #111 58.35deg,
    #c00 58.35deg, #c00 68.08deg,
    #111 68.08deg, #111 77.8deg,
    #c00 77.8deg, #c00 87.53deg,
    #111 87.53deg, #111 97.25deg,
    #c00 97.25deg, #c00 106.98deg,
    #111 106.98deg, #111 116.7deg,
    #c00 116.7deg, #c00 126.43deg,
    #111 126.43deg, #111 136.15deg,
    #c00 136.15deg, #c00 145.88deg,
    #111 145.88deg, #111 155.6deg,
    #c00 155.6deg, #c00 165.33deg,
    #111 165.33deg, #111 175.05deg,
    #198754 175.05deg, #198754 184.78deg,
    #c00 184.78deg, #c00 194.5deg,
    #111 194.5deg, #111 204.23deg,
    #c00 204.23deg, #c00 213.95deg,
    #111 213.95deg, #111 223.68deg,
    #c00 223.68deg, #c00 233.4deg,
    #111 233.4deg, #111 243.13deg,
    #c00 243.13deg, #c00 252.85deg,
    #111 252.85deg, #111 262.58deg,
    #c00 262.58deg, #c00 272.3deg,
    #111 272.3deg, #111 282.03deg,
    #c00 282.03deg, #c00 291.75deg,
    #111 291.75deg, #111 301.48deg,
    #c00 301.48deg, #c00 311.2deg,
    #111 311.2deg, #111 320.93deg,
    #c00 320.93deg, #c00 330.65deg,
    #111 330.65deg, #111 340.38deg,
    #c00 340.38deg, #c00 350.1deg,
    #111 350.1deg, #111 360deg
  );
  border: 6px solid #8b6914;
  margin: 0 auto 16px;
  position: relative;
  box-shadow: 0 0 30px rgba(0,0,0,0.5), 0 0 60px rgba(232,160,32,0.1);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #c4841a, #6b4510);
  border: 3px solid #8b6914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
}
.wheel-marker {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--primary);
  z-index: 3;
}
.roulette-result {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  min-height: 48px;
}
.roulette-result .result-num { display: inline-block; padding: 4px 16px; border-radius: 8px; }
.result-red { background: var(--accent); }
.result-black { background: var(--neutral-700); }
.result-green { background: var(--success); }
.roulette-bets { }
.bet-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.bet-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bet-chip {
  flex: 1;
  min-width: 60px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bet-chip:hover { border-color: var(--primary); color: var(--primary); }
.bet-chip.selected { background: rgba(232,160,32,0.2); border-color: var(--primary); color: var(--primary); }
.bet-chip.red-chip { color: #ff8080; border-color: rgba(232,64,64,0.3); }
.bet-chip.red-chip:hover, .bet-chip.red-chip.selected { background: rgba(232,64,64,0.2); border-color: var(--accent); color: var(--accent-light); }
.bet-chip.black-chip { color: #aaa; }
.bet-chip.black-chip:hover, .bet-chip.black-chip.selected { background: rgba(150,150,150,0.15); border-color: rgba(200,200,200,0.4); color: #e0e0e0; }
.number-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.num-btn {
  padding: 8px 4px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.num-btn.red { background: rgba(192,0,0,0.4); color: #ff9090; }
.num-btn.black { background: rgba(30,30,30,0.6); color: #d0d0d0; }
.num-btn.green { background: rgba(25,135,84,0.4); color: #80d0a0; }
.num-btn:hover { transform: scale(1.05); border-color: var(--primary); }
.num-btn.selected-num { border-color: var(--primary) !important; box-shadow: 0 0 8px rgba(232,160,32,0.5); }
.roulette-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip-select {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.chip-val {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.chip-val:hover { border-color: var(--primary); color: var(--primary); }
.chip-val.active { background: rgba(232,160,32,0.2); border-color: var(--primary); color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; }
  .hero-visual { margin-top: 40px; }
  .roulette-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .poker-players { justify-content: center; }
  .poker-table { padding: 20px; border-radius: 80px; }
  .slots-machine { padding: 24px; }
  .reels-container { gap: 6px; }
  .reel { width: 80px; height: 80px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 20px; }
  .roulette-wheel { width: 220px; height: 220px; }
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
