:root {
  --bg: #080a0f;
  --bg2: #11151d;
  --panel: rgba(255,255,255,.075);
  --panel2: rgba(255,255,255,.12);
  --text: #f6f7fb;
  --muted: #a9b0c2;
  --orange: #fea62f;
  --orange2: #ffd088;
  --coal: #222733;
  --red: #ff4f4f;
  --line: rgba(255,255,255,.15);
  --shadow: 0 30px 90px rgba(0,0,0,.48);
  --radius: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(254,166,47,.2), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(255,79,79,.12), transparent 28rem),
    linear-gradient(135deg, #06080d 0%, #111723 48%, #07080b 100%);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 45%, rgba(254,166,47,.06) 45% 47%, transparent 47% 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { color: var(--text); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(254,166,47,.18);
  background: rgba(8,10,15,.6);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
.brand img { width: 176px; height: auto; }
.main-nav {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}
.main-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 13px;
  font-size: .94rem;
  font-weight: 850;
  white-space: nowrap;
}
.main-nav a:hover { color: #111; background: var(--orange); }

.hero {
  max-width: var(--max);
  margin: 26px auto 0;
  padding: 56px 22px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 38px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 950;
}
h1, h2, h3 { margin: 0; line-height: 1.03; }
h1 {
  font-size: clamp(2.7rem, 7.6vw, 6.9rem);
  letter-spacing: -.08em;
  max-width: 900px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.06em;
}
h3 { font-size: 1.25rem; letter-spacing: -.035em; }
p { margin: 0; color: var(--muted); }
.lead { margin-top: 22px; font-size: clamp(1.07rem, 1.9vw, 1.32rem); max-width: 760px; }
.hero-actions, .age-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #15100a; background: linear-gradient(135deg, var(--orange), #ffe0a0); box-shadow: 0 16px 42px rgba(254,166,47,.24); }
.btn-outline, .btn-muted { color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(254,166,47,.2); background: rgba(254,166,47,.08); color: var(--text); font-size: .9rem; }

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.carbon-rings {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 36%, rgba(254,166,47,.13) 36% 37%, transparent 37% 53%, rgba(255,255,255,.12) 53% 54%, transparent 54% 100%),
    conic-gradient(from 30deg, rgba(254,166,47,.4), transparent, rgba(255,79,79,.18), transparent, rgba(254,166,47,.4));
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.45));
  opacity: .9;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.casino-dashboard {
  position: relative;
  z-index: 3;
  width: min(430px, 94%);
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(35,39,50,.92), rgba(7,9,14,.94));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(254,166,47,.08);
  transform: rotate(-2deg);
}
.dashboard-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.dashboard-top img { width: 170px; }
.dashboard-top span { color: var(--orange2); font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.slot-strip { display: grid; grid-template-columns: 1fr 1.45fr 1fr; gap: 12px; margin-top: 28px; }
.slot-strip span {
  min-height: 110px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #f5f5f5;
  color: #151515;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 1000;
  box-shadow: inset 0 -16px 28px rgba(0,0,0,.14);
}
.table-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.table-row div { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 16px; background: rgba(255,255,255,.06); }
.table-row small { display: block; color: var(--muted); font-weight: 800; }
.table-row strong { font-size: 2rem; color: var(--orange2); }
.card, .chip-coin { position: absolute; z-index: 4; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.card { width: 86px; height: 118px; display: grid; place-items: center; border-radius: 16px; font-weight: 1000; font-size: 2rem; background: #f7f7f7; color: #181818; }
.card-a { left: 5%; top: 18%; transform: rotate(-15deg); }
.card-b { right: 4%; bottom: 18%; transform: rotate(14deg); color: #c62828; }
.chip-coin { left: 14%; bottom: 10%; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 999px; color: #111; background: repeating-conic-gradient(from 0deg, var(--orange) 0 18deg, #131313 18deg 30deg); border: 10px solid #f9d18c; font-weight: 1000; }

.notice, .section, .site-footer { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 22px; padding-right: 22px; }
.notice { margin-top: 14px; padding: 20px 24px; border-radius: 22px; border: 1px solid rgba(254,166,47,.22); background: rgba(254,166,47,.075); color: var(--muted); }
.notice strong { color: var(--orange2); }
.section { padding-top: 96px; }
.section-head { max-width: 850px; margin-bottom: 32px; }
.section-head p:not(.eyebrow) { margin-top: 16px; font-size: 1.08rem; }
.split-head { max-width: none; display: grid; grid-template-columns: 1fr .76fr; gap: 28px; align-items: end; }

.info-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 16px; }
.info-card, .game-card, .bonus-panel, .phone-panel, .rule-grid div, details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.info-card { padding: 26px; border-radius: var(--radius); min-height: 240px; }
.number { display: inline-flex; margin-bottom: 26px; color: #111; background: var(--orange); padding: 6px 11px; border-radius: 999px; font-weight: 1000; }
.info-card p, .game-card p { margin-top: 12px; }
.large-card { background: linear-gradient(135deg, rgba(254,166,47,.16), rgba(255,255,255,.06)); }
.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.game-card { padding: 24px; border-radius: 26px; min-height: 280px; }
.game-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 18px; color: #111; background: linear-gradient(135deg, var(--orange), #fff0b8); font-weight: 1000; box-shadow: 0 16px 40px rgba(254,166,47,.18); }

.bonus-panel { display: grid; grid-template-columns: 1fr 330px; gap: 26px; align-items: stretch; padding: 34px; border-radius: 34px; background: linear-gradient(135deg, rgba(35,39,50,.86), rgba(254,166,47,.1)); }
.bonus-panel p:not(.eyebrow) { margin-top: 16px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text); }
.check-list li::before { content: "◆"; position: absolute; left: 0; color: var(--orange); }
.bonus-ticket { border-radius: 28px; border: 1px dashed rgba(254,166,47,.5); background: rgba(7,9,14,.5); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
.bonus-ticket span { color: var(--orange2); font-weight: 1000; letter-spacing: .16em; }
.bonus-ticket strong { font-size: 2.4rem; line-height: 1; }

.phone-panel { display: grid; grid-template-columns: 1fr 330px; gap: 28px; align-items: center; padding: 34px; border-radius: 34px; }
.phone-copy p:not(.eyebrow) { margin-top: 16px; }
.phone-mock { justify-self: center; width: 260px; min-height: 430px; padding: 26px 22px; border-radius: 40px; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(180deg, #1a1f2a, #06080d); box-shadow: var(--shadow); }
.phone-notch { width: 74px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.18); margin: 0 auto 38px; }
.phone-mock img { width: 180px; margin: 0 auto 28px; }
.mobile-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
.mobile-reels span { min-height: 62px; display: grid; place-items: center; border-radius: 14px; background: var(--orange); color: #111; font-weight: 1000; }
.phone-mock p { text-align: center; }

.rule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rule-grid div { padding: 24px; border-radius: 26px; }
.rule-grid strong { display: block; color: var(--orange2); font-size: 2rem; }
.rule-grid span { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
details { border-radius: 22px; padding: 20px 22px; }
summary { cursor: pointer; font-weight: 950; color: var(--text); }
details p { margin-top: 12px; }
.site-footer { margin-top: 96px; padding-top: 34px; padding-bottom: 34px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 26px; }
.site-footer img { width: 180px; margin-bottom: 16px; }
.site-footer p { max-width: 680px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; align-content: flex-start; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--orange2); }

.age-overlay { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; background: rgba(5,7,10,.88); backdrop-filter: blur(14px); }
.age-overlay.is-hidden { display: none; }
.age-card { max-width: 620px; padding: 34px; border-radius: 30px; border: 1px solid rgba(254,166,47,.25); background: #11151d; box-shadow: var(--shadow); }
.age-card img { width: 190px; margin-bottom: 26px; }
.age-card h1 { font-size: 2.4rem; letter-spacing: -.04em; margin-bottom: 12px; }
.locked-message { min-height: 100vh; display: grid; place-items: center; padding: 22px; text-align: center; }
.locked-message div { max-width: 540px; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); padding: 34px; }

@media (max-width: 1020px) {
  .site-header { position: static; flex-direction: column; align-items: flex-start; }
  .main-nav { width: 100%; overflow-x: auto; }
  .hero, .split-head, .bonus-panel, .phone-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
  .info-grid, .game-grid, .rule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-ticket { min-height: 230px; }
}
@media (max-width: 640px) {
  .brand img { width: 150px; }
  .hero-visual { min-height: 420px; }
  .casino-dashboard { padding: 18px; }
  .dashboard-top { align-items: flex-start; flex-direction: column; }
  .slot-strip span { min-height: 82px; font-size: 2rem; }
  .card { display: none; }
  .chip-coin { left: 2%; bottom: 8%; transform: scale(.82); }
  .hero-actions, .age-actions { flex-direction: column; }
  .btn { width: 100%; }
  .info-grid, .game-grid, .rule-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.15rem; }
  .section { padding-top: 70px; }
  .site-footer { flex-direction: column; }
}
