﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: rgba(18, 18, 18, 0.92);
  --line: rgba(212, 175, 55, 0.25);
  --gold: #d4af37;
  --red: #900000;
  --green: #2faa65;
  --text: #f4f1e8;
  --muted: #c8c0b0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(144,0,0,.28), transparent 34%), linear-gradient(180deg, #0a0a0a, #120909 48%, #090909 100%);
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: #efd27d; }
img { max-width: 100%; display: block; }
.section-space { padding: 72px 0; }
.site-header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.92); border-bottom: 1px solid rgba(144, 0, 0, 0.45);
}
.brand-mark {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(212,175,55,.45); object-fit: cover;
}
.brand-name { color: var(--gold); font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-link, .navbar-nav .nav-link.active { color: #f3ede1 !important; }
.nav-link:hover { color: var(--gold) !important; }
.btn-brand, .btn-outline-brand, .btn-outline-light, .btn-success {
  border-radius: 999px; font-weight: 700; letter-spacing: .04em; padding: .8rem 1.35rem;
}
.btn-brand, .btn-success {
  background: linear-gradient(135deg, #b88d1b, #e5bf57); color: #130d02; border: 0; box-shadow: 0 18px 40px rgba(212,175,55,.2);
}
.btn-brand:hover, .btn-success:hover { background: linear-gradient(135deg, #c89a1f, #f1cf72); color: #130d02; }
.btn-outline-brand {
  border: 1px solid rgba(212,175,55,.55); color: var(--gold); background: transparent;
}
.btn-outline-brand:hover, .btn-outline-light:hover {
  background: rgba(212,175,55,.12); color: #fff; border-color: rgba(212,175,55,.85);
}
.hero-panel, .glass-card, .auth-card, .legal-card, .stat-card, .checkout-card, .dashboard-card, .game-card, .ticket-card, .demo-card {
  background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 28px;
}
.hero-panel {
  position: relative; overflow: hidden; min-height: 78vh; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.58)), url('../img/hero.png') center/cover no-repeat;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; margin-bottom: 1rem;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.22); border-radius: 999px; color: #f7df95; font-size: .92rem;
}
.display-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 7vw, 4.75rem); line-height: 1.02; color: var(--gold); text-shadow: 0 0 24px rgba(144,0,0,.45); letter-spacing: .04em;
}
.lead-copy { color: #f4ede1; font-size: 1.1rem; line-height: 1.8; }
.hero-actions, .inline-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.meta-list-inline { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-trust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-top: 2rem;
}
.stat-card, .ticket-card, .game-card, .legal-card, .auth-card, .checkout-card, .dashboard-card, .demo-card { padding: 1.5rem; }
.game-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .85fr); gap: 1.5rem; align-items: end; }
.game-summary-card, .sidebar-panel, .history-card, .feature-row {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.12);
  border-radius: 22px;
  padding: 1.1rem 1.15rem;
}
.game-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  margin-bottom: 1rem;
  padding: .75rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(144,0,0,.08));
  border: 1px solid rgba(212,175,55,.12);
}
.game-hero-logo {
  width: 100%;
  max-width: 320px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
}
.game-kpi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.ticket-card-extended { display: flex; flex-direction: column; }
.compact-list { padding-left: 1rem; line-height: 1.7; }
.compact-list li + li { margin-top: .35rem; }
.game-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-stack { display: grid; gap: 1rem; }
.play-shell { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr); gap: 1.5rem; }
.play-main, .play-sidebar { min-width: 0; }
.sidebar-panel { position: sticky; top: 100px; }
.history-card { margin-top: 1.5rem; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading h2, .section-heading h1 { color: #fff; text-shadow: 0 0 18px rgba(144,0,0,.38); font-family: 'Cinzel', serif; letter-spacing: .03em; }
.section-heading p, .copy-muted, .text-muted-strong { color: var(--muted); line-height: 1.75; }

h2, h3, h4, h5, h6 { font-family: 'Cinzel', serif; letter-spacing: .025em; }

p, li, a, button, input, textarea, label, span, div { font-feature-settings: 'liga' 1, 'kern' 1; }
.game-card { height: 100%; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.game-card:hover, .ticket-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.5); }
.game-card img, .cover-image {
  aspect-ratio: 16 / 10; object-fit: cover; border-radius: 18px; margin-bottom: 1.25rem; border: 1px solid rgba(212,175,55,.24);
}
.featured-draws-intro {
  margin: -1rem 0 2rem;
}
.featured-draws-copy {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.draw-showcase-card {
  position: relative;
  height: 100%;
  padding: 1.1rem 1.1rem 1.05rem;
  text-align: left;
  overflow: hidden;
}
.draw-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.1), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}
.draw-showcase-card > * {
  position: relative;
  z-index: 1;
}
.draw-showcase-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .65rem;
  margin-bottom: .75rem;
}
.draw-logo-badge {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 210px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.draw-logo-mark {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .06em;
}
.draw-logo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 264px;
  height: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16));
}
.draw-showcase-body {
  padding: .15rem .2rem 0;
}
.draw-showcase-body h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}
.draw-microcopy {
  color: #e9ddb5;
  font-size: .88rem;
  line-height: 1.52;
  max-width: 30ch;
  margin: 0;
}
.draw-key-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}
.draw-fact-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.14);
  background: rgba(255,255,255,.035);
  color: #efe4c3;
  font-size: .8rem;
  line-height: 1.2;
}
.draw-fact-pill i {
  color: var(--gold);
}
.draw-cta-stack {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin-top: 1rem;
}
.draw-cta-stack .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-top: .72rem;
  padding-bottom: .72rem;
}
.meta-list { display: grid; gap: .75rem; margin-top: 1.25rem; }
.meta-chip, .status-pill, .price-pill {
  display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border-radius: 999px; font-size: .9rem;
}
.meta-chip, .status-pill { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #f3ede1; }
.price-pill { background: rgba(212,175,55,.16); color: #f8e29b; border: 1px solid rgba(212,175,55,.25); }
.transparency-grid, .policy-grid, .contact-grid, .dashboard-grid, .checkout-grid, .info-grid { display: grid; gap: 1.5rem; }
.transparency-grid, .policy-grid, .contact-grid, .info-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-layout { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 1.5rem; align-items: start; }
.contact-info-card, .contact-form-card { height: 100%; }
.contact-points { display: grid; gap: 1rem; }
.contact-point {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,.14);
  background: rgba(255,255,255,.03);
}
.contact-links { display: flex; flex-wrap: wrap; gap: .85rem; }
.dashboard-grid, .checkout-grid { grid-template-columns: 1.3fr .9fr; }
.alert-panel { display: none; border-radius: 18px; padding: 1rem 1.1rem; border: 1px solid transparent; }
.alert-panel.show { display: block; }
.alert-panel.success { background: rgba(47,170,101,.12); border-color: rgba(47,170,101,.35); color: #dcf5e6; }
.alert-panel.error { background: rgba(184,54,54,.14); border-color: rgba(184,54,54,.35); color: #ffdddd; }
.alert-panel.info { background: rgba(212,175,55,.14); border-color: rgba(212,175,55,.35); color: #f5ebc5; }
.form-control, .form-select {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: #fff; border-radius: 16px; padding: .95rem 1rem;
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,.06); color: #fff; border-color: rgba(212,175,55,.55); box-shadow: 0 0 0 .25rem rgba(212,175,55,.12);
}
.form-label { color: #f5ecd7; font-weight: 700; letter-spacing: .02em; }
.number-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); gap: .8rem; margin-top: 1.25rem; }
.number-ball, .spin-slot {
  display: inline-flex; align-items: center; justify-content: center; min-height: 64px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: #fff; font-weight: 700; cursor: pointer;
  font-size: 1.05rem; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.number-ball:hover, .spin-slot:hover, .number-ball.active, .spin-slot.active {
  transform: translateY(-2px); border-color: rgba(212,175,55,.6); background: rgba(212,175,55,.2);
}
.draw-results { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.draw-badge {
  min-width: 46px; min-height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(144,0,0,.28); border: 1px solid rgba(212,175,55,.25); color: #fff; font-weight: 700;
}
.order-row, .cart-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.order-row:last-child, .cart-row:last-child { border-bottom: 0; }
.site-footer { padding: 28px 0 40px; color: #d9cfb5; }
.site-footer .footer-shell { border-top: 1px solid rgba(144,0,0,.4); padding-top: 1.25rem; text-align: center; letter-spacing: .06em; }
.empty-state {
  padding: 1.75rem; border: 1px dashed rgba(212,175,55,.28); border-radius: 22px; color: var(--muted); text-align: center;
}
.quick-list { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.85; }
.page-hero { padding: 70px 0 30px; }
.page-hero .hero-panel { min-height: 48vh; }
.small-note { color: #cabfa7; font-size: .94rem; }
@media (max-width: 991px) {
  .dashboard-grid, .checkout-grid, .cart-row, .order-row, .game-hero-grid, .play-shell, .game-kpi-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: auto; padding: 56px 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .sidebar-panel { position: static; }
  .game-hero-media {
    min-height: 150px;
  }
  .game-hero-logo {
    max-height: 130px;
  }
}
@media (max-width: 575px) {
  .display-title { font-size: 2.4rem; }
  .btn-brand, .btn-outline-brand, .btn-outline-light, .btn-success { width: 100%; justify-content: center; }
  .hero-actions { display: grid; }
  .draw-showcase-card { padding-left: 1.2rem; padding-right: 1.2rem; }
  .draw-logo-badge {
    min-height: 160px;
  }
  .draw-logo-image {
    max-height: 200px;
  }
  .draw-cta-stack {
    display: grid;
  }
}


.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(14px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  width: min(100%, 560px);
  background: linear-gradient(180deg, rgba(18,18,18,.98), rgba(28,12,12,.96));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.age-gate__top {
  padding: 28px 28px 20px;
  background: radial-gradient(circle at top, rgba(144,0,0,.38), transparent 60%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1203;
  background: linear-gradient(135deg, #d9b447, #f1d57b);
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.24);
}

.age-gate__title {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #f7edd0;
  letter-spacing: .04em;
}

.age-gate__text {
  margin: 0;
  color: #d5cab4;
  line-height: 1.8;
}

.age-gate__body {
  padding: 24px 28px 30px;
}

.age-gate__note {
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.16);
  background: rgba(255,255,255,.03);
  color: #efe4c3;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.age-gate__actions .btn {
  flex: 1 1 220px;
}

.body-age-locked {
  overflow: hidden;
}

@media (max-width: 575px) {
  .age-gate__top,
  .age-gate__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .age-gate__actions {
    display: grid;
  }
}
