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

:root {
  --bg: #f8f9fc;
  --white: #ffffff;
  --dark: #0d1117;
  --dark2: #161b22;
  --neon: #00e676;
  --neon2: #00c853;
  --purple: #7c3aed;
  --purple2: #6d28d9;
  --text: #0d1117;
  --text2: #57606a;
  --border: #d0d7de;
  --card-bg: #ffffff;
  --red: #e53935;
}

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

/* NAV */
.nav {
  background: var(--dark);
  padding: 0;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center;
  justify-content: space-between; height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--neon); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--neon); }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  color: #8b949e; text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-btns { display: flex; gap: 8px; }
.btn-nav-play {
  background: var(--neon); color: var(--dark);
  padding: 8px 20px; border-radius: 8px;
  font-weight: 700; font-size: 13px;
  text-decoration: none; transition: background 0.2s;
}
.btn-nav-play:hover { background: var(--neon2); }
.btn-nav-login {
  background: rgba(255,255,255,0.1);
  color: #fff; padding: 8px 20px;
  border-radius: 8px; font-weight: 600;
  font-size: 13px; text-decoration: none;
  transition: background 0.2s;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.15); }

/* HERO */
.hero {
  background: var(--dark);
  min-height: 480px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/baner.webp') center/cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,17,23,0.95) 40%, transparent);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 20px;
  position: relative; z-index: 1;
  max-width: 600px; padding-left: 40px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,230,118,0.15); border: 1px solid rgba(0,230,118,0.3);
  color: var(--neon); padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hero-tag::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 16px;
}
.hero-title .neon { color: var(--neon); }
.hero-desc { color: #8b949e; font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.hero-bonus-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 8px 16px;
  border-radius: 20px; font-size: 13px; font-weight: 600;
}
.hero-pill .val { color: var(--neon); }
.hero-cta { display: flex; gap: 12px; align-items: center; }
.btn-hero {
  background: var(--neon); color: var(--dark);
  padding: 14px 36px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0,230,118,0.3);
  transition: all 0.2s;
}
.btn-hero:hover { background: var(--neon2); box-shadow: 0 0 40px rgba(0,230,118,0.5); transform: translateY(-1px); }
.hero-note { color: #57606a; font-size: 12px; }

/* STATS BAR */
.stats-bar {
  background: var(--dark2);
  border-bottom: 1px solid #30363d;
  padding: 16px 0;
}
.stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; justify-content: space-around;
}
.stat-item { text-align: center; }
.stat-val {
  font-size: 22px; font-weight: 800; color: var(--neon);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 11px; color: #57606a; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* MAIN */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }

/* SECTION HEAD */
.section-head { margin-bottom: 32px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--neon); margin-bottom: 8px;
}
.section-h2 {
  font-size: 28px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.5px; line-height: 1.2;
}
.section-h2 span { color: var(--purple); }
.section-sub { color: var(--text2); font-size: 15px; margin-top: 8px; line-height: 1.6; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: var(--neon); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,230,118,0.05));
  border: 1px solid rgba(0,230,118,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.card-text { font-size: 13px; color: var(--text2); line-height: 1.6; }
.card-val { font-size: 28px; font-weight: 900; color: var(--neon); margin: 8px 0 4px; }

/* TABLE */
.data-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; margin: 20px 0;
  background: var(--white);
}
.data-table th {
  background: var(--dark); color: #fff;
  padding: 12px 16px; font-size: 12px;
  font-weight: 700; text-align: left;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.data-table td {
  padding: 12px 16px; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f6f8fa; }
.data-table td:first-child { color: var(--text2); font-weight: 600; width: 220px; }
.badge-green {
  display: inline-block;
  background: rgba(0,200,83,0.1); color: var(--neon2);
  border: 1px solid rgba(0,200,83,0.2);
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}

/* PROMO CARDS */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.promo-card:hover { transform: translateY(-3px); }
.promo-card img { width: 100%; display: block; aspect-ratio: 16/7; object-fit: cover; }
.promo-card-body { padding: 16px; background: var(--white); }
.promo-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.promo-card-desc { font-size: 12px; color: var(--text2); margin-bottom: 12px; line-height: 1.5; }
.btn-promo {
  display: block; background: var(--dark);
  color: #fff; text-align: center; padding: 10px;
  border-radius: 8px; font-weight: 700;
  font-size: 13px; text-decoration: none;
  transition: background 0.2s;
}
.btn-promo:hover { background: var(--purple); }

/* LIST */
.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
  font-size: 14px; color: var(--text2);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--neon); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 800;
  margin-top: 1px;
}

/* FAQ */
.faq { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; transition: background 0.2s; color: var(--dark);
}
.faq-q:hover { background: #f6f8fa; }
.faq-q .icon { font-size: 18px; color: var(--neon); transition: transform 0.2s; }
.faq-q.open .icon { 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 16px; }

/* REGISTER PAGE */
.reg-wrap {
  min-height: calc(100vh - 60px);
  background: var(--dark);
  display: flex; align-items: center;
  justify-content: center; padding: 40px 20px;
  position: relative; overflow: hidden;
}
.reg-wrap::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.reg-wrap::after {
  content: '';
  position: absolute; bottom: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.reg-box {
  background: var(--dark2); border: 1px solid #30363d;
  border-radius: 20px; padding: 40px;
  max-width: 460px; width: 100%;
  text-align: center; position: relative; z-index: 1;
}
.reg-logo {
  font-size: 28px; font-weight: 900; color: #fff;
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.reg-logo span { color: var(--neon); }
.reg-bonus-box {
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 14px; padding: 24px;
  margin-bottom: 28px;
}
.reg-bonus-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: #57606a; margin-bottom: 16px;
}
.reg-bonus-row { display: flex; justify-content: center; gap: 32px; }
.reg-bonus-num { font-size: 44px; font-weight: 900; color: var(--neon); line-height: 1; }
.reg-bonus-sub { font-size: 11px; color: #57606a; margin-top: 4px; }
.btn-reg-main {
  display: block; width: 100%;
  background: var(--neon); color: var(--dark);
  padding: 16px; border-radius: 12px;
  font-weight: 800; font-size: 17px;
  text-decoration: none; margin-bottom: 10px;
  box-shadow: 0 0 30px rgba(0,230,118,0.25);
  transition: all 0.2s;
}
.btn-reg-main:hover { background: var(--neon2); transform: translateY(-1px); }
.btn-login-main {
  display: block; width: 100%;
  background: transparent; border: 1px solid #30363d;
  color: #8b949e; 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(--neon); color: var(--neon); }
.reg-fine { font-size: 11px; color: #444; margin-top: 16px; line-height: 1.6; }

/* CTA STRIP */
.cta-strip {
  background: var(--dark); padding: 48px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: 32px; font-weight: 900; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.cta-strip h2 span { color: var(--neon); }
.cta-strip p { color: #57606a; margin-bottom: 24px; font-size: 15px; }
.btn-cta-main {
  display: inline-block;
  background: var(--neon); color: var(--dark);
  padding: 16px 48px; border-radius: 12px;
  font-weight: 800; font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(0,230,118,0.3);
  transition: all 0.2s;
}
.btn-cta-main:hover { background: var(--neon2); transform: translateY(-2px); }

/* FOOTER */
.footer { background: #080d13; padding: 28px 0; border-top: 1px solid #1c2128; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-brand {
  font-size: 16px; font-weight: 800; color: #fff;
}
.footer-brand span { color: var(--neon); }
.footer-text { font-size: 11px; color: #3d444d; max-width: 500px; line-height: 1.7; }

@media (max-width: 768px) {
  .hero-title { font-size: 34px; }
  .cards-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .data-table td:first-child { width: 130px; }
}
