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

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

/* --- Variables --- */
:root {
  --brand-primary: #e8a020;
  --brand-secondary: #f0c040;
  --brand-accent: #e05c20;
  --brand-dark: #0a0c10;
  --brand-surface: #111420;
  --brand-card: #161a28;
  --brand-border: #252b3f;
  --brand-muted: #3a4160;

  --text-primary: #f0f2f8;
  --text-secondary: #9aa3c0;
  --text-muted: #5a6380;

  --success: #2db87a;
  --warning: #e8a020;
  --error: #e03c3c;
  --info: #2080e8;

  --gradient-gold: linear-gradient(135deg, #e8a020, #f0c040);
  --gradient-fire: linear-gradient(135deg, #e05c20, #e8a020);
  --gradient-dark: linear-gradient(180deg, #0a0c10 0%, #111420 100%);
  --gradient-card: linear-gradient(145deg, #161a28, #1a1f30);
  --gradient-hero: radial-gradient(ellipse at 60% 40%, rgba(232,160,32,0.15) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(224,92,32,0.1) 0%, transparent 50%), #0a0c10;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(232,160,32,0.3);
  --shadow-fire: 0 0 24px rgba(224,92,32,0.3);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  --container-max: 1200px;
  --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(--brand-dark);
  color: var(--text-primary);
  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; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--brand-primary); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0c10;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(232,160,32,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--brand-border);
}
.btn-secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-fire {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: var(--shadow-fire);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  z-index: 1000;
  transition: background var(--transition-base);
}
.site-header.scrolled { background: rgba(10,12,16,0.97); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.header-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0a0c10;
  flex-shrink: 0;
}
.header-logo-text span { color: var(--brand-primary); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.header-nav a:hover, .header-nav a.active { color: var(--text-primary); background: rgba(255,255,255,0.06); }

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

.header-coins-display {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-secondary);
}
.header-coins-display .coin-icon { font-size: 1rem; }

.header-user-menu {
  position: relative;
}
.header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0a0c10;
  cursor: pointer;
  transition: box-shadow var(--transition-fast);
}
.header-avatar:hover { box-shadow: 0 0 0 3px rgba(232,160,32,0.3); }

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
}
.user-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.user-dropdown a, .user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.user-dropdown a:hover, .user-dropdown button:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.user-dropdown hr { border: none; border-top: 1px solid var(--brand-border); margin: 6px 0; }
.user-dropdown .logout-btn { color: var(--error); }

.hamburger-btn {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger-btn:hover { background: rgba(255,255,255,0.06); }
.hamburger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-border);
  padding: 16px 24px 24px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav .mobile-auth-btns { display: flex; gap: 10px; margin-top: 16px; }
.mobile-nav .mobile-auth-btns .btn { flex: 1; justify-content: center; }

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(16px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

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

.modal-logo { text-align: center; margin-bottom: 24px; }
.modal-logo .modal-logo-mark {
  width: 52px; height: 52px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #0a0c10;
  margin: 0 auto 12px;
}
.modal-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; text-align: center; }
.modal-subtitle { font-size: 0.9rem; color: var(--text-secondary); text-align: center; margin-top: 6px; }

.modal-tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-full);
  padding: 4px;
  margin: 24px 0;
}
.modal-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-base);
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.modal-tab.active { background: var(--gradient-gold); color: #0a0c10; }

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-input:focus { border-color: var(--brand-primary); }
.form-input::placeholder { color: var(--text-muted); }

.form-error { font-size: 0.8rem; color: var(--error); display: none; }
.form-error.show { display: block; }

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

.form-terms {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-terms a { color: var(--brand-primary); }
.form-terms a:hover { text-decoration: underline; }

.modal-bonus-badge {
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.modal-bonus-badge .bonus-icon { font-size: 1.4rem; }
.modal-bonus-badge .bonus-text { font-size: 0.875rem; color: var(--brand-secondary); font-weight: 500; }
.modal-bonus-badge .bonus-amount { font-size: 1rem; font-weight: 700; color: var(--brand-primary); }

/* Age verification modal */
.age-modal-content { text-align: center; }
.age-modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.age-modal-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.age-modal-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition-fast);
}
.age-check-label:hover { border-color: rgba(232,160,32,0.3); }
.age-check-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.age-check-label span { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.age-confirm-btn { width: 100%; }
.age-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.age-confirm-btn:disabled:hover::after { background: none; }
.age-confirm-btn:disabled:active { transform: none; }

/* Cookie consent */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 820px;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.cookie-icon { font-size: 1.8rem; flex-shrink: 0; }
.cookie-text { flex: 1; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-text a { color: var(--brand-primary); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: url(images/bg.png) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,92,32,0.1) 0%, transparent 70%);
  bottom: 0; left: -100px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-heading .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-item { }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cards-stack {
  position: relative;
  width: 360px;
  height: 400px;
}
.hero-game-card {
  position: absolute;
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}
.hero-card-1 {
  width: 220px;
  top: 40px; left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-card-2 {
  width: 240px;
  top: 20px; right: 10px;
  transform: rotate(4deg);
  z-index: 2;
}
.hero-card-3 {
  width: 260px;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
}
.hero-cards-stack:hover .hero-card-1 { transform: rotate(-8deg) translateY(-8px); }
.hero-cards-stack:hover .hero-card-2 { transform: rotate(6deg) translateY(-12px); }
.hero-cards-stack:hover .hero-card-3 { transform: translateX(-50%) rotate(-3deg) translateY(-6px); }

.game-preview-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.game-preview-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.game-preview-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  display: inline-block;
}
.game-preview-players {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.player-dots { display: flex; gap: -4px; }
.player-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--brand-card);
  margin-left: -6px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-muted);
}
.player-dot:first-child { margin-left: 0; }

/* --- Section Layout --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Games Section --- */
.games-section {
  padding: 96px 0;
  background: var(--brand-surface);
  position: relative;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,160,32,0.3);
  box-shadow: var(--shadow-gold);
}
.game-card-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-card-bg-1 { background: linear-gradient(135deg, #1a1228 0%, #2a1a18 100%); }
.game-card-bg-2 { background: linear-gradient(135deg, #0f1a28 0%, #1a2818 100%); }
.game-card-bg-3 { background: linear-gradient(135deg, #1a1818 0%, #281a10 100%); }
.game-card-icon-wrap {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}
.game-card:hover .game-card-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.game-card-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232,160,32,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.game-card-body { padding: 20px 24px 24px; }
.game-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.game-card-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.game-card-players {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.game-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(232,160,32,0.1);
  color: var(--brand-secondary);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}
.game-card-btn { width: 100%; }

/* --- Benefits Section --- */
.benefits-section { padding: 96px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.2);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(232,160,32,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.benefit-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* --- CTA Section --- */
.cta-section {
  padding: 96px 0;
  background: var(--brand-surface);
}
.cta-box {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta-box-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-box-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* --- Footer --- */
.site-footer {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}
.footer-brand { }
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.footer-brand-logo .footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: #0a0c10;
}
.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }

.footer-contact-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-border);
}

.footer-contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-disclaimer-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0;
}
.footer-disclaimer-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-disclaimer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-disclaimer-links a {
  font-size: 0.8rem;
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition-fast);
}
.footer-disclaimer-links a:hover { opacity: 0.8; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-age-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,60,60,0.1);
  border: 1px solid rgba(224,60,60,0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e08080;
  letter-spacing: 0.04em;
}

/* --- Inner pages --- */
.page-wrapper {
  padding-top: var(--header-height);
  min-height: 100vh;
}
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--brand-border);
  background: linear-gradient(180deg, rgba(232,160,32,0.04) 0%, transparent 100%);
}
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero-desc { font-size: 1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }

.page-content { padding: 64px 0 96px; }
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text-primary);
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.prose p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.prose a { color: var(--brand-primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { opacity: 0.8; }
.prose strong { color: var(--text-primary); font-weight: 600; }

/* --- How It Works --- */
.hiw-steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.hiw-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.hiw-step:last-child { padding-bottom: 0; }
.hiw-step-line {
  position: absolute;
  left: 19px; top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--brand-border);
}
.hiw-step:last-child .hiw-step-line { display: none; }
.hiw-step-num {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a0c10;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hiw-step-body { padding-top: 6px; }
.hiw-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.hiw-step-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Community --- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.community-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.community-card-icon { font-size: 2rem; margin-bottom: 14px; }
.community-card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.community-card-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* --- About page --- */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a0c10;
  margin: 0 auto 14px;
}
.team-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--brand-primary); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.value-title { font-weight: 600; margin-bottom: 6px; }
.value-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 36px; height: 36px;
  background: rgba(232,160,32,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-method-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }

.contact-form-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--transition-fast);
}
.contact-form textarea:focus { border-color: var(--brand-primary); }
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.contact-success.show { display: block; }
.contact-success-icon { font-size: 3rem; margin-bottom: 14px; }
.contact-success-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.contact-success-desc { font-size: 0.9rem; color: var(--text-secondary); }

/* --- Help Center --- */
.help-search-box {
  max-width: 540px;
  margin: 0 auto 56px;
  position: relative;
}
.help-search-input {
  width: 100%;
  background: var(--gradient-card);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-full);
  padding: 14px 52px 14px 20px;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}
.help-search-input:focus { border-color: var(--brand-primary); }
.help-search-icon {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.help-cat-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-base);
  cursor: pointer;
}
.help-cat-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); }
.help-cat-icon { font-size: 1.8rem; margin-bottom: 12px; }
.help-cat-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.help-cat-count { font-size: 0.8rem; color: var(--text-muted); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  gap: 12px;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-chevron {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition-base);
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-answer-inner { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Responsible Gaming --- */
.rg-warning-box {
  background: rgba(224,60,60,0.06);
  border: 1px solid rgba(224,60,60,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rg-warning-icon { font-size: 1.6rem; flex-shrink: 0; }
.rg-warning-title { font-weight: 600; margin-bottom: 6px; }
.rg-warning-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rg-tool-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.rg-tool-icon { font-size: 1.5rem; margin-bottom: 10px; }
.rg-tool-title { font-weight: 600; margin-bottom: 6px; }
.rg-tool-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.rg-orgs { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.rg-org-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-primary);
  transition: all var(--transition-fast);
}
.rg-org-link:hover { border-color: rgba(232,160,32,0.3); }

/* --- Games Pages --- */
.game-page-wrapper { padding-top: var(--header-height); min-height: 100vh; }
.game-page-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 32px 0 64px;
  align-items: start;
}
.game-stage {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.game-stage-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game-stage-title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }
.game-stage-coins {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-secondary);
}
.game-area { padding: 24px; }

.game-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--gradient-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-card-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-stat-value { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.sidebar-stat-value.positive { color: var(--success); }
.sidebar-stat-value.negative { color: var(--error); }

/* Slots game */
.slots-machine { text-align: center; }
.slots-display {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.slot-reel {
  width: 100px; height: 120px;
  background: rgba(0,0,0,0.3);
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.slot-reel.spinning { animation: reel-blur 0.1s infinite alternate; }
@keyframes reel-blur { from { filter: blur(0px); } to { filter: blur(3px); } }
.slots-bet-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bet-adj-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-border);
  color: var(--text-secondary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
}
.bet-adj-btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.bet-display {
  min-width: 80px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
}
.slots-spin-btn { width: 100%; }
.slots-result-msg {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  opacity: 0;
  transition: all var(--transition-base);
}
.slots-result-msg.win { background: rgba(45,184,122,0.15); color: var(--success); opacity: 1; }
.slots-result-msg.lose { background: rgba(224,60,60,0.1); color: var(--error); opacity: 1; }
.slots-paytable { text-align: left; margin-top: 20px; }
.paytable-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.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.8rem; }
.paytable-row:last-child { border-bottom: none; }
.paytable-symbols { font-size: 0.9rem; letter-spacing: 2px; }
.paytable-mult { font-weight: 600; color: var(--brand-secondary); }

/* Roulette game */
.roulette-table { text-align: center; }
.roulette-wheel-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}
.roulette-wheel-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #1a3a1a 0deg 9.73deg, #c8290a 9.73deg 19.46deg,
    #1a3a1a 19.46deg 29.19deg, #c8290a 29.19deg 38.92deg,
    #1a3a1a 38.92deg 48.65deg, #c8290a 48.65deg 58.38deg,
    #1a3a1a 58.38deg 68.11deg, #c8290a 68.11deg 77.84deg,
    #1a3a1a 77.84deg 87.57deg, #c8290a 87.57deg 97.3deg,
    #1a3a1a 97.3deg 107.03deg, #c8290a 107.03deg 116.76deg,
    #1a3a1a 116.76deg 126.49deg, #c8290a 126.49deg 136.22deg,
    #1a3a1a 136.22deg 145.95deg, #c8290a 145.95deg 155.68deg,
    #1a3a1a 155.68deg 165.41deg, #c8290a 165.41deg 175.14deg,
    #0a0c10 175.14deg 184.87deg, #c8290a 184.87deg 194.6deg,
    #1a3a1a 194.6deg 204.33deg, #c8290a 204.33deg 214.06deg,
    #1a3a1a 214.06deg 223.79deg, #c8290a 223.79deg 233.52deg,
    #1a3a1a 233.52deg 243.25deg, #c8290a 243.25deg 252.98deg,
    #1a3a1a 252.98deg 262.71deg, #c8290a 262.71deg 272.44deg,
    #1a3a1a 272.44deg 282.17deg, #c8290a 282.17deg 291.9deg,
    #1a3a1a 291.9deg 301.63deg, #c8290a 301.63deg 311.36deg,
    #1a3a1a 311.36deg 321.09deg, #c8290a 321.09deg 330.82deg,
    #1a3a1a 330.82deg 340.55deg, #c8290a 340.55deg 350.27deg,
    #1a3a1a 350.27deg 360deg
  );
  border: 4px solid var(--brand-primary);
  box-shadow: 0 0 20px rgba(232,160,32,0.3), inset 0 0 40px rgba(0,0,0,0.5);
  transition: transform 0.05s linear;
}
.roulette-ball {
  position: absolute;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-fast);
}
.roulette-center-dot {
  position: absolute;
  width: 40px; height: 40px;
  background: var(--brand-dark);
  border: 3px solid var(--brand-primary);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.roulette-bet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.roulette-bet-option {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-border);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  background: none;
  color: var(--text-secondary);
}
.roulette-bet-option:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.roulette-bet-option.selected { background: rgba(232,160,32,0.15); border-color: var(--brand-primary); color: var(--brand-secondary); }
.roulette-bet-option.red-opt { color: #e04040; border-color: rgba(224,64,64,0.3); }
.roulette-bet-option.red-opt:hover, .roulette-bet-option.red-opt.selected { background: rgba(224,64,64,0.15); border-color: #e04040; color: #ff8080; }
.roulette-bet-option.green-opt { color: var(--success); border-color: rgba(45,184,122,0.3); }
.roulette-bet-option.green-opt:hover, .roulette-bet-option.green-opt.selected { background: rgba(45,184,122,0.15); border-color: var(--success); color: var(--success); }
.roulette-spin-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.roulette-result {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}
.roulette-result.win { background: rgba(45,184,122,0.15); color: var(--success); }
.roulette-result.lose { background: rgba(224,60,60,0.1); color: var(--error); }
.roulette-result.neutral { background: rgba(255,255,255,0.04); color: var(--text-muted); }

/* Blackjack game */
.blackjack-area { }
.bj-felt {
  background: linear-gradient(180deg, #0a2010 0%, #0f2a18 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  min-height: 260px;
  position: relative;
  border: 2px solid rgba(45,120,60,0.3);
}
.bj-dealer-area, .bj-player-area { margin-bottom: 16px; }
.bj-area-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.bj-cards { display: flex; gap: 8px; min-height: 80px; align-items: center; }
.bj-card {
  width: 56px; height: 80px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.5);
  position: relative;
  flex-shrink: 0;
  animation: card-deal 0.3s ease;
}
@keyframes card-deal {
  from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}
.bj-card.red-card { color: #c00; }
.bj-card.hidden {
  background: linear-gradient(135deg, #1a2a4a 25%, #0f1828 25%, #0f1828 50%, #1a2a4a 50%, #1a2a4a 75%, #0f1828 75%);
  background-size: 16px 16px;
}
.bj-card .card-value { font-size: 0.85rem; font-weight: 800; line-height: 1; }
.bj-card .card-suit { font-size: 1rem; line-height: 1; }
.bj-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  padding: 0 8px;
  margin-left: 8px;
}
.bj-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bj-actions .btn { flex: 1; min-width: 80px; }
.bj-message {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bj-message.win { background: rgba(45,184,122,0.15); color: var(--success); }
.bj-message.lose { background: rgba(224,60,60,0.1); color: var(--error); }
.bj-message.push { background: rgba(232,160,32,0.1); color: var(--brand-secondary); }
.bj-message.info { background: rgba(255,255,255,0.04); color: var(--text-secondary); }

/* --- Toast notifications --- */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + 16px);
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3000;
  pointer-events: none;
}
.toast {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  animation: toast-in 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: all;
}
@keyframes toast-in {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.toast.toast-success { border-left: 3px solid var(--success); }
.toast.toast-error { border-left: 3px solid var(--error); }
.toast.toast-info { border-left: 3px solid var(--info); }
.toast.toast-warning { border-left: 3px solid var(--warning); }
.toast-fade-out { animation: toast-out 0.3s ease forwards; }
@keyframes toast-out {
  to { transform: translateX(60px); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
  .hero-cards-stack { width: 300px; height: 340px; }
  .game-page-inner { grid-template-columns: 1fr; }
  .game-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .header-nav { display: none; }
  .hamburger-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .games-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: 1fr; }
  .rg-tools-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; gap: 12px; bottom: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .modal-box { padding: 28px 20px; }
  .roulette-bet-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-display { gap: 8px; }
  .slot-reel { width: 80px; height: 100px; }
  .game-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 28px; }
  .hero-heading { font-size: 2rem; }
  .cta-box { padding: 40px 24px; }
}
