@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0e0b06;
  --bg2: #161009;
  --bg3: #1e160a;
  --gold: #d4920a;
  --gold2: #f5b429;
  --gold3: #ffd166;
  --red: #e63b2e;
  --text: #f0e6d3;
  --text2: #8a7a65;
  --border: #2a2015;
  --card: #1a1208;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; }

/* NAV */
.nav {
  background: rgba(14,11,6,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--gold2);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold2); background: rgba(212,146,10,0.1);
}
.nav-btns { display: flex; gap: 8px; }
.btn-nav {
  background: var(--gold);
  color: #000; padding: 10px 22px;
  border-radius: 8px; font-weight: 700;
  font-size: 13px; text-decoration: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold2); }
.btn-nav-out {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text2); padding: 10px 22px;
  border-radius: 8px; font-weight: 600;
  font-size: 13px; text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-out:hover { border-color: var(--gold); color: var(--gold2); }

/* HERO */
.hero {
  background: radial-gradient(ellipse at 70% 50%, #3a1a05 0%, #1a0d03 40%, var(--bg) 100%);
  min-height: 520px; display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-glow {
  position: absolute; right: 5%; top: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,146,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 20px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  position: relative; z-index: 1; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,146,10,0.1);
  border: 1px solid rgba(212,146,10,0.25);
  color: var(--gold2); padding: 6px 14px;
  border-radius: 20px; font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 58px; font-weight: 900;
  line-height: 1; letter-spacing: -2px;
  color: #fff; margin-bottom: 16px;
}
.hero-title .gold { color: var(--gold2); }
.hero-title .red { color: var(--red); }
.hero-desc {
  color: var(--text2); font-size: 16px;
  line-height: 1.7; margin-bottom: 32px;
  max-width: 440px;
}
.hero-meta {
  display: flex; gap: 24px; margin-bottom: 32px;
}
.hero-meta-item { }
.hero-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 4px; }
.hero-meta-val { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; color: var(--gold2); }
.hero-meta-divider { width: 1px; background: var(--border); }
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-hero-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(212,146,10,0.3);
  transition: all 0.2s;
}
.btn-hero-main:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(212,146,10,0.4); }
.btn-hero-main .play-icon {
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.btn-hero-sec {
  color: var(--text2); font-size: 14px;
  text-decoration: none; font-weight: 600;
  transition: color 0.2s;
}
.btn-hero-sec:hover { color: var(--gold2); }

/* HERO VISUAL */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.crash-meter {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  width: 100%; max-width: 360px;
  text-align: center;
}
.crash-meter-label { font-size: 12px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.crash-multiplier {
  font-family: 'Unbounded', sans-serif;
  font-size: 72px; font-weight: 900;
  color: var(--gold2); line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(212,146,10,0.5);
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow { 0%,100%{text-shadow:0 0 40px rgba(212,146,10,0.5)} 50%{text-shadow:0 0 60px rgba(212,146,10,0.8)} }
.crash-meter-sub { font-size: 13px; color: var(--text2); margin-bottom: 20px; }
.crash-bets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.crash-bet {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px;
}
.crash-bet-player { font-size: 11px; color: var(--text2); margin-bottom: 2px; }
.crash-bet-amount { font-size: 14px; font-weight: 700; color: var(--gold3); }
.crash-bet-mul { font-size: 11px; color: var(--text2); }
.crash-bet.win .crash-bet-amount { color: #4ade80; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }

/* SECTION HEAD */
.sh { margin-bottom: 36px; }
.sh-eye {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 10px;
}
.sh-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1.2;
  letter-spacing: -0.5px;
}
.sh-title .acc { color: var(--gold2); }
.sh-sub { color: var(--text2); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* GAME CARDS */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none; color: var(--text);
}
.game-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.game-card-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative;
}
.game-card-thumb.crash-bg { background: radial-gradient(circle at 50% 50%, #3a1a05, #0e0b06); }
.game-card-thumb.aviator-bg { background: radial-gradient(circle at 50% 50%, #050a3a, #060610); }
.game-card-thumb.mine-bg { background: radial-gradient(circle at 50% 50%, #0a2a0a, #060e06); }
.game-card-thumb.plinko-bg { background: radial-gradient(circle at 50% 50%, #1a0a3a, #0a0610); }
.game-card-thumb.hilo-bg { background: radial-gradient(circle at 50% 50%, #3a0a0a, #0e0606); }
.game-card-rtp {
  position: absolute; top: 12px; right: 12px;
  background: rgba(212,146,10,0.15);
  border: 1px solid rgba(212,146,10,0.3);
  color: var(--gold2); padding: 4px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
}
.game-card-body { padding: 16px; }
.game-card-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.game-card-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 14px; }
.game-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 600;
}
.tag.hot { background: rgba(230,59,46,0.1); border-color: rgba(230,59,46,0.3); color: var(--red); }
.tag.new { background: rgba(212,146,10,0.1); border-color: rgba(212,146,10,0.3); color: var(--gold2); }
.btn-game {
  display: block; background: var(--gold);
  color: #000; text-align: center; padding: 10px;
  border-radius: 8px; font-weight: 700;
  font-size: 13px; text-decoration: none;
  transition: background 0.2s;
}
.btn-game:hover { background: var(--gold2); }

/* HOW TO PLAY */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  position: relative;
}
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px; font-weight: 900;
  color: rgba(212,146,10,0.15); line-height: 1;
  margin-bottom: 12px;
}
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.step-text { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* INFO TABLE */
.info-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
}
.info-table tr:nth-child(even) { background: var(--bg3); }
.info-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--text2); font-weight: 600; width: 220px; }
.info-table td:last-child { color: var(--text); }
.badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
}
.badge-gold { background: rgba(212,146,10,0.15); color: var(--gold2); border: 1px solid rgba(212,146,10,0.3); }
.badge-red { background: rgba(230,59,46,0.15); color: var(--red); border: 1px solid rgba(230,59,46,0.3); }

/* FAQ */
.faq-wrap { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--card); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 18px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--text); transition: background 0.2s;
}
.faq-q:hover { background: var(--bg3); }
.faq-q .ico { font-size: 20px; color: var(--gold); transition: transform 0.2s; }
.faq-q.open .ico { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--text2); line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-a.open { max-height: 200px; padding: 0 20px 18px; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #1e1205, #0e0b06);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 56px 40px;
  text-align: center; margin: 60px 0;
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(212,146,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 900;
  color: #fff; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--gold2); }
.cta-sub { color: var(--text2); margin-bottom: 28px; font-size: 15px; position: relative; z-index: 1; }
.btn-cta {
  display: inline-block;
  background: var(--gold); color: #000;
  padding: 16px 48px; border-radius: 12px;
  font-weight: 800; font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(212,146,10,0.3);
  transition: all 0.2s;
  position: relative; z-index: 1;
}
.btn-cta:hover { background: var(--gold2); transform: translateY(-2px); }

/* REGISTER PAGE */
.reg-page {
  min-height: calc(100vh - 64px);
  background: radial-gradient(ellipse at 50% 0%, #2a1505 0%, var(--bg) 60%);
  display: flex; align-items: center;
  justify-content: center; padding: 40px 20px;
}
.reg-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px 40px;
  max-width: 460px; width: 100%; text-align: center;
}
.reg-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px; font-weight: 900;
  color: var(--gold2); margin-bottom: 28px;
}
.reg-bonus-block {
  background: var(--bg3); border: 1px solid rgba(212,146,10,0.2);
  border-radius: 16px; padding: 28px; margin-bottom: 28px;
}
.reg-bonus-title {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text2); margin-bottom: 20px;
}
.reg-bonus-nums { display: flex; justify-content: center; gap: 40px; }
.reg-bonus-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px; font-weight: 900;
  color: var(--gold2); line-height: 1;
}
.reg-bonus-sub { font-size: 11px; color: var(--text2); margin-top: 6px; }
.btn-reg-main {
  display: block; width: 100%;
  background: var(--gold); color: #000;
  padding: 16px; border-radius: 12px;
  font-weight: 800; font-size: 17px;
  text-decoration: none; margin-bottom: 10px;
  box-shadow: 0 0 30px rgba(212,146,10,0.25);
  transition: all 0.2s;
}
.btn-reg-main:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-login-main {
  display: block; width: 100%;
  background: transparent; border: 1px solid var(--border);
  color: var(--text2); padding: 14px;
  border-radius: 12px; font-weight: 600;
  font-size: 15px; text-decoration: none;
  transition: all 0.2s;
}
.btn-login-main:hover { border-color: var(--gold); color: var(--gold2); }
.reg-note { font-size: 11px; color: #3d3020; margin-top: 16px; line-height: 1.6; }

/* LICENSES */
.licenses {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; padding: 20px 0;
  border-top: 1px solid var(--border);
}
.license-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text2);
}
.license-badge {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; color: var(--text2);
}

/* FOOTER */
.footer { background: #060402; border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 900; color: var(--gold2);
}
.footer-text { font-size: 11px; color: #2a2015; max-width: 500px; line-height: 1.7; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .games-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
