/* ============================================
   CrownRoyalTablesss.com — Global Stylesheet
   ============================================ */

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

/* ── Color System ── */
:root {
  --gold-100: #fff8e7;
  --gold-200: #fdefc4;
  --gold-300: #f9d97a;
  --gold-400: #f4c430;
  --gold-500: #d4a017;
  --gold-600: #a87d0e;
  --gold-700: #7c5c08;

  --crimson-100: #fde8e8;
  --crimson-200: #f9b8b8;
  --crimson-300: #f27070;
  --crimson-400: #e03030;
  --crimson-500: #b91c1c;
  --crimson-600: #8b0000;

  --dark-900: #0a0a0c;
  --dark-800: #111115;
  --dark-700: #18181f;
  --dark-600: #222230;
  --dark-500: #2e2e42;
  --dark-400: #3d3d58;

  --neutral-100: #f5f5f0;
  --neutral-200: #e8e8e0;
  --neutral-300: #c8c8be;
  --neutral-400: #a0a096;
  --neutral-500: #70706a;
  --neutral-600: #404040;

  --success-400: #22c55e;
  --success-500: #16a34a;
  --warning-400: #f59e0b;
  --warning-500: #d97706;
  --error-400: #ef4444;
  --error-500: #dc2626;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --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(212,160,23,0.35);
  --shadow-glow: 0 0 40px rgba(212,160,23,0.2);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark-800);
  color: var(--neutral-200);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.7; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-gold { color: var(--gold-400); }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(212,160,23,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(212,160,23,0.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--dark-900);
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: rgba(212,160,23,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--neutral-200);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-danger {
  background: linear-gradient(135deg, var(--crimson-500), var(--crimson-400));
  color: #fff;
}
.btn-danger:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.5; pointer-events: none; }

/* ── Card ── */
.card {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}
.card:hover {
  border-color: rgba(212,160,23,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-sm { padding: 20px; }

/* ── Divider ── */
.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }

/* ── Section Header ── */
.section-header { margin-bottom: 56px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--neutral-400); max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}
.site-header.scrolled {
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-crown {
  width: 38px;
  height: 38px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.logo-text span { color: var(--gold-400); }
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-top: 1px;
}

.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-300);
  transition: all var(--transition-fast);
}
.nav-link:hover { color: var(--gold-400); background: rgba(212,160,23,0.08); }
.nav-link.active { color: var(--gold-400); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.coin-display {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
}
.coin-display.visible { display: flex; }
.coin-icon { font-size: 1rem; }

.user-menu {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
  position: relative;
}
.user-menu:hover { background: rgba(255,255,255,0.06); }
.user-menu.visible { display: flex; }
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-900);
}
.user-name { font-size: 0.875rem; font-weight: 500; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark-600);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
}
.user-dropdown.open { display: block; }
.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--neutral-300);
  transition: all var(--transition-fast);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.dropdown-item:hover { background: rgba(255,255,255,0.07); color: var(--neutral-100); }
.dropdown-item.danger { color: var(--error-400); }
.dropdown-item.danger:hover { background: rgba(239,68,68,0.1); }

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neutral-200);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--dark-800);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  padding: 20px 24px;
  z-index: 899;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { display: block; padding: 12px 16px; font-size: 1rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.75) 50%, rgba(17,17,21,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .badge { margin-bottom: 24px; }
.hero-title { margin-bottom: 24px; }
.hero-title em {
  font-style: normal;
  color: var(--gold-400);
  position: relative;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-400);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  z-index: 1;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.15);
  animation: ring-spin 20s linear infinite;
}
.hero-ring:nth-child(1) { inset: 0; animation-duration: 30s; }
.hero-ring:nth-child(2) { inset: 60px; animation-duration: 20s; animation-direction: reverse; }
.hero-ring:nth-child(3) { inset: 120px; animation-duration: 15s; }

.crown-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.crown-emblem svg { filter: drop-shadow(0 0 32px rgba(212,160,23,0.5)); }

@keyframes ring-spin { to { transform: rotate(360deg); } }

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section { background: var(--dark-900); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,160,23,0.4);
  box-shadow: var(--shadow-gold);
}

.game-card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-visual.poker-theme {
  background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 50%, #0d3020 100%);
}
.game-card-visual.slots-theme {
  background: linear-gradient(135deg, #1a0a0a 0%, #3a1010 50%, #200d0d 100%);
}
.game-card-visual.roulette-theme {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d20 100%);
}

.game-card-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px rgba(212,160,23,0.6));
  animation: float 3s ease-in-out infinite;
}
.game-card:nth-child(2) .game-card-icon { animation-delay: 1s; }
.game-card:nth-child(3) .game-card-icon { animation-delay: 2s; }

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

.game-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.1) 0%, transparent 70%);
}

.game-card-body { padding: 28px; }
.game-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.game-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(212,160,23,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.game-players {
  font-size: 0.8rem;
  color: var(--neutral-500);
}
.game-card-body h3 { margin-bottom: 8px; }
.game-card-body p {
  font-size: 0.875rem;
  color: var(--neutral-400);
  margin-bottom: 20px;
  line-height: 1.6;
}
.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.game-difficulty {
  font-size: 0.75rem;
  color: var(--neutral-500);
}
.game-difficulty span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-600);
  margin-right: 3px;
}
.game-difficulty span.lit { background: var(--gold-400); }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section { background: var(--dark-800); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
}
.feature-card:hover {
  border-color: rgba(212,160,23,0.2);
  background: var(--dark-600);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h4 { margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--neutral-400); line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
  border-top: 1px solid rgba(212,160,23,0.1);
  border-bottom: 1px solid rgba(212,160,23,0.1);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p { color: var(--neutral-400); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--neutral-500);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-400); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--neutral-500);
}
.contact-icon {
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin: 32px 0;
  padding: 24px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-600);
}
.footer-disclaimer h6 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 10px;
}
.disclaimer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.disclaimer-links a {
  font-size: 0.75rem;
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.disclaimer-links a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--neutral-600);
}
.footer-age {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--neutral-600);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  border: 1.5px solid rgba(239,68,68,0.4);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--error-400);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--dark-700);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all var(--transition-base);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-box-wide { max-width: 580px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--neutral-100); }

.modal-header { text-align: center; margin-bottom: 32px; }
.modal-crown {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 16px rgba(212,160,23,0.5));
}
.modal-header h2 { margin-bottom: 8px; }
.modal-header p { font-size: 0.9rem; color: var(--neutral-400); }

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 4px;
}
.modal-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--neutral-500);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.modal-tab.active {
  background: var(--dark-700);
  color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-400);
}
.form-input {
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--neutral-100);
  transition: all var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(0,0,0,0.4);
}
.form-input::placeholder { color: var(--neutral-600); }

.form-error {
  font-size: 0.78rem;
  color: var(--error-400);
  margin-top: 2px;
}
.input-error { border-color: var(--error-400) !important; }

.form-submit { margin-top: 8px; width: 100%; }

.bonus-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--success-400);
}

/* Age Modal */
.age-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
  border: 2px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.age-confirm-text { font-size: 0.9rem; color: var(--neutral-400); margin-bottom: 24px; }

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 20px;
}
.checkbox-wrapper:hover { background: rgba(0,0,0,0.35); }
.checkbox-wrapper input[type="checkbox"] { display: none; }
.custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
}
.checkbox-wrapper.checked .custom-checkbox {
  background: var(--gold-500);
  border-color: var(--gold-500);
}
.checkbox-checkmark {
  color: var(--dark-900);
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.checkbox-wrapper.checked .checkbox-checkmark { opacity: 1; }
.checkbox-label { font-size: 0.875rem; color: var(--neutral-300); line-height: 1.5; }
.checkbox-label a { color: var(--gold-400); text-decoration: underline; text-underline-offset: 2px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 24px;
  right: 24px;
  max-width: 1152px;
  margin: 0 auto;
  background: var(--dark-600);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 950;
  box-shadow: var(--shadow-lg);
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { bottom: 24px; }
.cookie-text { flex: 1; }
.cookie-text p { font-size: 0.875rem; color: var(--neutral-400); }
.cookie-text a { color: var(--gold-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + 64px) 0 64px;
  background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--neutral-400); max-width: 560px; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.content-aside { position: sticky; top: calc(var(--header-height) + 24px); }
.content-nav { display: flex; flex-direction: column; gap: 4px; }
.content-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--neutral-400);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}
.content-nav a:hover, .content-nav a.active {
  color: var(--gold-400);
  background: rgba(212,160,23,0.06);
  border-left-color: var(--gold-500);
}
.content-body { max-width: 720px; }
.content-body h2 { margin: 48px 0 16px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin: 28px 0 12px; color: var(--gold-400); font-size: 1.1rem; }
.content-body p { color: var(--neutral-400); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.content-body ul { margin: 0 0 16px 0; padding-left: 20px; list-style: disc; }
.content-body ul li { color: var(--neutral-400); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.7; }
.content-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 40px 0;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.step-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-900);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--neutral-400); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question h4 { font-size: 0.95rem; font-weight: 500; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-weight: 700;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--neutral-400); margin-bottom: 32px; font-size: 0.95rem; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212,160,23,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.channel-info strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.channel-info span { font-size: 0.8rem; color: var(--neutral-500); }

.contact-form-card {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 { margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea {
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--neutral-100);
  resize: vertical;
  min-height: 120px;
  transition: all var(--transition-fast);
}
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.contact-form textarea::placeholder { color: var(--neutral-600); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.visible { display: block; }
.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h4 { margin-bottom: 8px; color: var(--success-400); }
.form-success p { color: var(--neutral-400); font-size: 0.9rem; }

/* ============================================
   COMMUNITY PAGE
   ============================================ */
.leaderboard-table { width: 100%; }
.leaderboard-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition-fast);
}
.leaderboard-row:hover { background: rgba(255,255,255,0.02); }
.leaderboard-rank {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-600);
  text-align: center;
}
.rank-gold { color: var(--gold-400); }
.rank-silver { color: #aaa; }
.rank-bronze { color: #cd7f32; }
.leaderboard-player { display: flex; align-items: center; gap: 12px; }
.player-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-900);
  flex-shrink: 0;
}
.player-name { font-size: 0.9rem; font-weight: 500; }
.player-level { font-size: 0.75rem; color: var(--neutral-500); }
.leaderboard-score {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-400);
  text-align: right;
}
.leaderboard-games {
  font-size: 0.8rem;
  color: var(--neutral-500);
  text-align: right;
}

/* ============================================
   HELP CENTER
   ============================================ */
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.help-category {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}
.help-category:hover {
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-3px);
}
.help-cat-icon { font-size: 2rem; margin-bottom: 12px; }
.help-category h4 { margin-bottom: 6px; font-size: 1rem; }
.help-category p { font-size: 0.8rem; color: var(--neutral-500); }

/* ============================================
   GAME PAGES
   ============================================ */
.game-page {
  padding-top: var(--header-height);
  min-height: 100vh;
  background: var(--dark-900);
}

.game-arena {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 32px 0 48px;
}

.game-main-area {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.game-title-area { display: flex; align-items: center; gap: 12px; }
.game-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--neutral-400);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.game-back-btn:hover { color: var(--neutral-200); background: rgba(255,255,255,0.1); }
.game-info-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
}

.game-play-area { padding: 32px; }
.game-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-card h4 { font-size: 0.9rem; margin-bottom: 16px; color: var(--gold-400); }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--neutral-500); }
.stat-value { font-weight: 600; color: var(--neutral-200); }
.stat-value.gold { color: var(--gold-400); }

/* ── Poker Game ── */
.poker-table-felt {
  background: radial-gradient(ellipse at center, #1a5c2e 0%, #0d3a1c 60%, #081f10 100%);
  border: 4px solid #4a2a08;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.5);
}
.poker-table-rail {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 8px solid #6b3d0d;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.poker-community-cards {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.playing-card {
  width: 56px;
  height: 80px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  transition: all var(--transition-base);
  cursor: default;
  flex-shrink: 0;
}
.playing-card.face-down {
  background: linear-gradient(135deg, #1a2a5e 0%, #0d1540 100%);
  color: transparent;
}
.playing-card.face-down::after {
  content: '♠';
  position: absolute;
  color: rgba(212,160,23,0.4);
  font-size: 1.8rem;
}
.card-suit-red { color: var(--crimson-400); }
.card-suit-black { color: var(--dark-900); }

.poker-player-hand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.player-cards { display: flex; gap: 8px; }
.poker-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
}

.bet-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.bet-input {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--neutral-100);
  width: 120px;
  text-align: center;
}
.bet-input:focus { outline: none; border-color: var(--gold-500); }

.game-message-box {
  padding: 12px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
  color: var(--neutral-400);
  min-height: 44px;
}
.game-message-box.win { color: var(--success-400); border-color: rgba(34,197,94,0.2); }
.game-message-box.lose { color: var(--error-400); border-color: rgba(239,68,68,0.2); }

/* ── Slots Game ── */
.slots-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.slots-cabinet {
  background: linear-gradient(180deg, #2a0a0a 0%, #1a0505 100%);
  border: 3px solid var(--gold-600);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 40px rgba(212,160,23,0.1), inset 0 0 40px rgba(0,0,0,0.5);
}
.slots-title-bar {
  text-align: center;
  margin-bottom: 24px;
}
.slots-title-bar h3 {
  color: var(--gold-400);
  font-size: 1.4rem;
  text-shadow: 0 0 16px rgba(212,160,23,0.5);
}
.slots-reels-window {
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.slots-reels-window::before,
.slots-reels-window::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}
.slots-reels-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.slots-reels-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.slots-reel {
  width: 80px;
  height: 120px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
}
.reel-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.15s linear;
}
.reel-symbol {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}
.slots-win-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  border: 2px solid rgba(212,160,23,0.0);
  border-radius: var(--radius-sm);
  z-index: 4;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.slots-win-line.active { border-color: rgba(212,160,23,0.6); }

.slots-info-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
}
.slots-info-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  text-align: center;
}
.info-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--neutral-600); }
.info-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold-400); }

.slots-lever {
  width: 100%;
  max-width: 480px;
}

/* ── Roulette Game ── */
.roulette-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.roulette-wheel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 1.0);
}
.roulette-ball-track {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  pointer-events: none;
}
.roulette-ball {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 35%, #fff, #ccc);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8);
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.roulette-ball.visible { opacity: 1; }
.roulette-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 20px solid var(--gold-400);
  z-index: 10;
  filter: drop-shadow(0 0 8px rgba(212,160,23,0.5));
}
.roulette-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #2a2a2a, #111);
  border: 3px solid var(--gold-600);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-400);
}

.roulette-betting-board {
  width: 100%;
  overflow-x: auto;
}
.roulette-number-grid {
  display: grid;
  grid-template-columns: 40px repeat(12, 1fr);
  gap: 3px;
  margin-bottom: 8px;
  min-width: 400px;
}
.roulette-chip {
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
  user-select: none;
}
.roulette-chip:hover { transform: scale(1.05); filter: brightness(1.2); }
.roulette-chip.selected { box-shadow: 0 0 10px rgba(212,160,23,0.6); border-color: var(--gold-400); }
.chip-zero { background: #15803d; color: #fff; }
.chip-red { background: #b91c1c; color: #fff; }
.chip-black { background: #1c1c1c; color: #fff; }
.roulette-outside-bets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.outside-bet {
  padding: 8px 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--neutral-300);
}
.outside-bet:hover { background: rgba(212,160,23,0.15); border-color: rgba(212,160,23,0.3); color: var(--gold-400); }
.outside-bet.selected { background: rgba(212,160,23,0.2); border-color: var(--gold-400); color: var(--gold-400); }

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.org-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.org-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.org-link:hover { border-color: rgba(212,160,23,0.3); background: var(--dark-600); }
.org-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}
.org-link span { font-size: 0.875rem; color: var(--neutral-300); }
.org-link strong { display: block; font-size: 0.8rem; color: var(--gold-400); font-weight: 600; }

/* ============================================
   TOAST
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark-600);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  min-width: 260px;
  animation: slideIn 0.3s ease;
}
.toast.success { border-left: 3px solid var(--success-400); }
.toast.error { border-left: 3px solid var(--error-400); }
.toast.info { border-left: 3px solid var(--gold-400); }
@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100px); opacity: 0; }
}
.toast.removing { animation: slideOut 0.3s ease forwards; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-visual { display: none; }
  .game-arena { grid-template-columns: 1fr; }
  .game-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .help-categories { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions .btn:last-child { display: inline-flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .roulette-outside-bets { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .step-item { flex-direction: column; gap: 12px; }
  .modal-box { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: 1fr; }
  .disclaimer-links { flex-direction: column; }
  .hero-stats { gap: 24px; }
}
