/* ASEBET landing — asebet.xyz */

:root {
  --bg: #07090f;
  --bg-2: #0c0f18;
  --surface: #11151f;
  --surface-2: #161b28;
  --line: rgba(255, 255, 255, 0.07);
  --text: #f4f6fb;
  --muted: #97a0b3;
  --gold: #f0b429;
  --gold-2: #ffd34d;
  --red: #e5484d;
  --green: #34d97b;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.15;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1400;
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.3);
}

.btn-gold:hover { box-shadow: 0 14px 40px rgba(240, 180, 41, 0.45); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav.scrolled {
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  font-size: 20px;
  color: #1a1400;
  background: linear-gradient(160deg, var(--gold-2), var(--gold));
  box-shadow: 0 6px 18px rgba(240, 180, 41, 0.35);
}

.logo-text { font-size: 21px; font-weight: 700; color: var(--text); letter-spacing: 0.04em; }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -340px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 217, 123, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 217, 123, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 217, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 217, 123, 0); }
}

h1 { font-size: clamp(38px, 6.4vw, 66px); font-weight: 700; margin-bottom: 22px; }

.grad {
  background: linear-gradient(92deg, var(--gold-2) 10%, var(--gold) 55%, #ff9d3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.stat {
  padding: 18px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.stat strong { display: block; font-size: clamp(20px, 3vw, 28px); font-family: "Space Grotesk", sans-serif; color: var(--gold-2); }
.stat span { font-size: 12.5px; color: var(--muted); }

/* floating decorations */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  opacity: 0.14;
  font-size: 46px;
  animation: float 7s ease-in-out infinite;
}

.suit-1 { top: 22%; left: 8%; color: var(--red); animation-delay: 0s; }
.suit-2 { top: 60%; left: 14%; color: var(--text); font-size: 34px; animation-delay: 1.4s; }
.suit-3 { top: 28%; right: 10%; color: var(--red); font-size: 38px; animation-delay: 0.7s; }
.suit-4 { top: 64%; right: 7%; color: var(--text); animation-delay: 2.1s; }

.chip {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 5px dashed rgba(255, 255, 255, 0.6);
  opacity: 0.12;
}

.chip-1 { top: 14%; right: 26%; background: var(--red); animation-delay: 0.4s; }
.chip-2 { top: 74%; left: 30%; background: #5c6bc0; animation-delay: 1.8s; }
.chip-3 { top: 44%; right: 4%; background: var(--green); width: 32px; height: 32px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-22px) rotate(5deg); }
}

/* ---------- Sections ---------- */

.section { padding: 92px 0; }

.section-alt {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

h2 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: 14px; }

.section-sub { color: var(--muted); max-width: 540px; margin-bottom: 26px; }

/* ---------- Games ---------- */

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.game-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.game-art {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.art-slot { background: radial-gradient(circle at 50% 0%, #2c2347 0%, #181327 70%); }
.art-roulette { background: radial-gradient(circle at 50% 0%, #145432 0%, #0c2e1c 70%); }
.art-soon { background: radial-gradient(circle at 50% 0%, #22293a 0%, #131722 70%); color: #5c6bc0; }

.slot-reels { display: flex; gap: 10px; }

.slot-reels span {
  width: 52px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: #0b0d14;
  border: 2px solid rgba(240, 180, 41, 0.5);
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-2);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.7);
  animation: reelGlow 2.4s ease-in-out infinite;
}

.slot-reels span:nth-child(2) { animation-delay: 0.3s; }
.slot-reels span:nth-child(3) { animation-delay: 0.6s; }

@keyframes reelGlow {
  0%, 100% { box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.7), 0 0 0 rgba(240, 180, 41, 0); }
  50% { box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.7), 0 0 22px rgba(240, 180, 41, 0.35); }
}

.mini-wheel {
  position: relative;
  width: 124px; height: 124px;
  border-radius: 50%;
  padding: 9px;
  background: linear-gradient(145deg, #a97142, #6d4c2f);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.mini-wheel-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #2e7d32 0deg 27.7deg,
    #c62828 27.7deg 55.4deg, #15181f 55.4deg 83.1deg,
    #c62828 83.1deg 110.8deg, #15181f 110.8deg 138.5deg,
    #c62828 138.5deg 166.2deg, #15181f 166.2deg 193.9deg,
    #c62828 193.9deg 221.6deg, #15181f 221.6deg 249.3deg,
    #c62828 249.3deg 276.9deg, #15181f 276.9deg 304.6deg,
    #c62828 304.6deg 332.3deg, #15181f 332.3deg 360deg
  );
  animation: spin 9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.mini-wheel-hub {
  position: absolute;
  inset: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 18, 0.95);
  border: 2px solid var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--gold-2);
}

.soon-rocket { animation: float 5s ease-in-out infinite; }

.game-body { padding: 22px; }

.game-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.game-tag.live { background: rgba(52, 217, 123, 0.13); color: var(--green); }
.game-tag.soon { background: rgba(92, 107, 192, 0.16); color: #8d9bf0; }

.game-body h3 { font-size: 21px; margin-bottom: 8px; }
.game-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }

.game-link { color: var(--gold-2); text-decoration: none; font-weight: 600; font-size: 14.5px; }
.game-link:hover { text-decoration: underline; }
.game-link.muted { color: var(--muted); }

/* ---------- Features ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.feature {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover { border-color: rgba(240, 180, 41, 0.35); transform: translateY(-4px); }

.feature-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--gold-2);
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.22);
}

.feature h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ---------- Steps ---------- */

.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 44px 0 40px;
}

.step {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1400;
  background: linear-gradient(160deg, var(--gold-2), var(--gold));
  margin-bottom: 16px;
}

.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

.step-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 26px;
  flex-shrink: 0;
}

.tiny-note { margin-top: 14px; color: var(--muted); font-size: 13px; }

/* ---------- FAQ ---------- */

.faq-list { margin-top: 38px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] { border-color: rgba(240, 180, 41, 0.35); }

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(circle at 50% 120%, rgba(240, 180, 41, 0.18) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.cta-band h2 { margin-bottom: 10px; }
.cta-band .section-sub { margin: 0 auto 28px; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 56px 0 0; background: var(--bg-2); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 250px; }

.footer-col h4 { font-size: 14px; margin-bottom: 14px; letter-spacing: 0.04em; }

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 9px;
}

.footer-col a:hover { color: var(--text); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-small { color: var(--muted); font-size: 12.5px; line-height: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .games-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 16px 24px; border-top: 1px solid var(--line); }

  .nav-burger { display: flex; }

  .hero { padding-top: 130px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .games-grid, .features-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; }

  .step-arrow { transform: rotate(90deg); align-self: center; }

  .footer-inner { grid-template-columns: 1fr; }
}
