body.scroll-lock {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.age-gate.active {
  opacity: 1;
  visibility: visible;
}

.age-gate-panel {
  width: min(520px, 100%);
  background: var(--ink-card);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.age-gate-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-warm);
}

.age-gate-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-soft);
  border-radius: 16px;
  font-size: 1.75rem;
  color: var(--gold);
}

.age-gate-panel h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.age-gate-panel p {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 1rem;
  text-align: left;
}

.age-gate-panel p strong {
  color: var(--text);
}

.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-dim);
}

.age-gate-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.age-gate-btn {
  width: 100%;
  padding: 0.9375rem 1.5rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--ease);
}

.age-gate-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.age-gate-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.cookie-banner-text i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.cookie-banner-text a {
  color: var(--gold-soft);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}

.cookie-decline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--ink-line);
}

.cookie-decline:hover {
  border-color: var(--text-faint);
  color: var(--text);
}

.cookie-accept {
  background: var(--grad-warm);
  color: var(--ink);
}

.cookie-accept:hover {
  box-shadow: var(--shadow-warm);
}

@media (max-width: 767.98px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

.play-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--ink);
}

.play-header {
  text-align: center;
  margin-bottom: 2rem;
}

.play-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.play-header p {
  color: var(--text-dim);
  margin: 0;
  font-size: 1rem;
}

.play-disclaimer {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
}

.play-disclaimer h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.play-disclaimer p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.play-disclaimer p:last-child {
  margin-bottom: 0;
}

.slot-machine {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 24px;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
}

.slot-machine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.slot-machine.win-glow {
  animation: machine-glow 1.5s ease;
}

@keyframes machine-glow {
  0%, 100% { box-shadow: var(--shadow-warm); }
  50% { box-shadow: 0 0 60px rgba(251, 191, 36, 0.4); }
}

.slot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.slot-title {
  font-weight: 800;
  font-size: 1.125rem;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slot-credits {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.slot-credits span {
  color: var(--gold-soft);
  font-weight: 700;
}

.reels-wrap {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--ink-soft);
  border: 2px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.reel {
  flex: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  font-size: 2.5rem;
  transition: transform 0.08s ease;
}

.reel.spinning {
  filter: blur(1px);
}

.slot-result {
  text-align: center;
  min-height: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.slot-result.win {
  color: var(--gold-soft);
  font-weight: 600;
}

.slot-result.lose {
  color: var(--rose);
}

.spin-btn {
  width: 100%;
  padding: 1rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  z-index: 1;
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
}

.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bj-table {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(145deg, #1a3d2e 0%, #0f2920 100%);
  border: 2px solid rgba(251, 191, 36, 0.25);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.bj-table.win-glow {
  animation: machine-glow 1.5s ease;
}

.bj-table::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.bj-area {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.bj-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.bj-score {
  font-size: 0.875rem;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  min-height: 100px;
}

.bj-card {
  width: 64px;
  height: 90px;
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: card-deal 0.4s ease;
}

@keyframes card-deal {
  from { transform: translateY(-20px) scale(0.8); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.bj-card-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--card-accent, #1e293b);
}

.bj-card i {
  font-size: 1.25rem;
  color: var(--card-accent, #1e293b);
}

.bj-card-back {
  background: linear-gradient(145deg, #5b21b6, #7c3aed);
  color: rgba(255, 255, 255, 0.8);
}

.bj-result {
  text-align: center;
  min-height: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0;
  position: relative;
  z-index: 1;
}

.bj-result.win { color: var(--gold-soft); font-weight: 600; }
.bj-result.lose { color: var(--rose); }

.bj-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bj-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: all var(--ease);
}

.bj-btn:hover:not(:disabled) {
  background: rgba(251, 191, 36, 0.2);
  border-color: var(--gold);
}

.bj-btn.primary {
  background: var(--grad-warm);
  color: var(--ink);
  border: none;
}

.bj-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.roulette-stage {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.roulette-stage.win-glow {
  animation: machine-glow 1.5s ease;
}

.roulette-wheel-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 2rem;
}

.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  border: 4px solid var(--gold);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
  transform: rotate(0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-center {
  width: 35%;
  height: 35%;
  background: var(--ink-card);
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.roulette-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #fff, #fbbf24);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateY(-130px);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  z-index: 2;
}

.roulette-ball.orbiting {
  animation: ball-orbit 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

@keyframes ball-orbit {
  0% { transform: translate(-50%, -50%) translateY(-130px); }
  100% { transform: translate(-50%, -50%) translateY(-130px) rotate(1440deg); }
}

.roulette-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--gold);
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.roulette-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.roulette-credits {
  font-size: 0.9375rem;
  color: var(--text-dim);
}

.roulette-credits span {
  color: var(--gold-soft);
  font-weight: 700;
}

.roulette-bets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.roulette-bet {
  padding: 0.625rem 1.125rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--ink-line);
  background: var(--ink-card);
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--ease);
}

.roulette-bet:hover {
  border-color: var(--gold);
  color: var(--text);
}

.roulette-bet.selected {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.roulette-bet.bet-red.selected { background: rgba(220, 38, 38, 0.2); border-color: #dc2626; color: #fca5a5; }
.roulette-bet.bet-black.selected { background: rgba(30, 41, 59, 0.8); border-color: #64748b; color: #e2e8f0; }

.roulette-result {
  text-align: center;
  min-height: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.roulette-result.win { color: var(--gold-soft); font-weight: 600; }
.roulette-result.lose { color: var(--rose); }

.roulette-spin-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--ease);
}

.roulette-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
}

.roulette-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--ink-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--ease);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
  color: var(--gold);
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.contact-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  text-align: center;
}

.contact-block i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-block h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 1rem 0;
}

.contact-email:hover {
  color: var(--gold);
}

@media (max-width: 767.98px) {
  .reels-wrap {
    gap: 0.5rem;
    padding: 1rem;
  }

  .reel {
    font-size: 1.75rem;
  }

  .roulette-wheel-wrap {
    width: 260px;
    height: 260px;
  }

  .roulette-ball {
    transform: translate(-50%, -50%) translateY(-105px);
  }
}
