:root{
  --bg:#0f1220;
  --bg2:#12162a;
  --card:#171c33;
  --text:#eef0ff;
  --muted:#b8bedc;
  --line:rgba(255,255,255,.10);
  --gold:#ffc400;
  --cyan:#00c6ff;
  --pink:#ff38a2;
  --green:#45d36e;
  --orange:#ff8a3d;
  --radius:22px;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(255,196,0,.12), transparent 55%),
              radial-gradient(900px 600px at 85% 15%, rgba(0,198,255,.12), transparent 60%),
              radial-gradient(900px 600px at 80% 85%, rgba(255,56,162,.10), transparent 65%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

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

.container{
  width:min(1140px, calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(15,18,32,.72);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-box{
  width:42px; height:42px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(255,196,0,.25), rgba(0,198,255,.18));
  border:1px solid var(--line);
  display:grid; place-items:center;
  font-weight:900;
  letter-spacing:.02em;
}
.logo-title{
  font-weight:900;
  letter-spacing:.08em;
}
.vip-badge{
  margin-left:8px;
  padding:3px 10px;
  border-radius:999px;
  background: rgba(255,196,0,.15);
  border:1px solid rgba(255,196,0,.35);
  color:var(--gold);
  font-size:.78rem;
  font-weight:800;
}
.navbar{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-item{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
  transition: .2s ease;
}
.nav-item:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}
.nav-item.active{
  color:var(--text);
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
}
.header-buttons{
  display:flex; gap:10px;
}
.btn-header-login,.btn-header-register{
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--line);
  transition:.2s ease;
}
.btn-header-login{
  background: rgba(255,255,255,.06);
}
.btn-header-register{
  background: linear-gradient(135deg, rgba(255,196,0,.90), rgba(255,56,162,.75));
  color:#0f1220;
  border-color: rgba(255,196,0,.25);
}
.btn-header-login:hover{background: rgba(255,255,255,.10)}
.btn-header-register:hover{filter:brightness(1.05)}
.mobile-toggle{
  display:none;
  width:46px; height:46px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  cursor:pointer;
}
.mobile-toggle span{
  display:block;
  width:22px; height:2px;
  background: var(--text);
  margin:6px auto;
  border-radius:99px;
}

/* HERO */
.hero{
  position:relative;
  padding:74px 0 30px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  z-index:-2;
}
.hero-bg img{
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}
.hero-shade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,18,32,.40), rgba(15,18,32,.86) 55%, rgba(15,18,32,1));
}
.hero-wrapper{
  width:min(760px, 100%);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:var(--text);
  font-weight:800;
}
.badge-pulse{
  width:10px; height:10px;
  background: var(--green);
  border-radius:50%;
  box-shadow: 0 0 0 0 rgba(69,211,110,.55);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(69,211,110,.55)}
  70%{box-shadow: 0 0 0 14px rgba(69,211,110,0)}
  100%{box-shadow: 0 0 0 0 rgba(69,211,110,0)}
}
.hero h1{
  margin:18px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height:1.12;
}
.rainbow-text{
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-subtitle{
  color: rgba(238,240,255,.86);
  font-size:1.05rem;
  margin:0 0 18px;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:22px 0 18px}
.btn-primary-hero,.btn-secondary-hero{
  border-radius:18px;
  padding:12px 16px;
  font-weight:900;
  border:1px solid var(--line);
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:.2s ease;
}
.btn-primary-hero{
  background: linear-gradient(135deg, rgba(255,196,0,.95), rgba(0,198,255,.55));
  color:#0f1220;
}
.btn-primary-hero:hover{filter:brightness(1.05)}
.btn-secondary-hero{
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.btn-secondary-hero:hover{background: rgba(255,255,255,.12)}
.btn-arrow{font-size:1.1rem}

.hero-features{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:16px 0 8px;
}
.hero-feature{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  color:var(--text);
  font-weight:800;
}
.feature-emoji{font-size:1.2rem}

.active-players{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(0,198,255,.10);
  border:1px solid rgba(0,198,255,.28);
  width:fit-content;
}
.active-players span{color: rgba(238,240,255,.80); font-weight:800}
.active-players strong{font-size:1.25rem}

/* STATS */
.stats{
  padding: 26px 0 46px;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat-box{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:16px;
  text-align:center;
}
.stat-emoji{font-size:1.4rem}
.stat-value{font-size:1.8rem; font-weight:950; margin:6px 0 4px}
.stat-text{color: var(--muted); font-weight:800}

/* SECTIONS */
.section-title{
  margin: 12px 0 18px;
  text-align:center;
}
.title-badge{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  color: var(--text);
  font-weight:900;
}
.section-title h2{
  margin:12px 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.section-title p{
  margin:0 auto;
  color: rgba(238,240,255,.78);
  max-width: 820px;
}

.section-title.light .title-badge{background: rgba(255,255,255,.12)}
.white{color:var(--text)}
.title-badge.white{border-color:rgba(255,255,255,.18)}

/* WHY */
.why{padding: 28px 0 52px}
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.why-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.why-number{
  position:absolute;
  top:14px; right:16px;
  font-weight:950;
  color: rgba(238,240,255,.18);
  font-size:2.2rem;
}
.why-icon{font-size:1.5rem}
.why-card h3{margin:10px 0 8px}
.why-card p{margin:0; color: rgba(238,240,255,.76)}
.card-blue{box-shadow: 0 16px 40px rgba(0,198,255,.08)}
.card-pink{box-shadow: 0 16px 40px rgba(255,56,162,.08)}
.card-green{box-shadow: 0 16px 40px rgba(69,211,110,.08)}
.card-orange{box-shadow: 0 16px 40px rgba(255,138,61,.08)}
.card-purple{box-shadow: 0 16px 40px rgba(170,110,255,.08)}
.card-cyan{box-shadow: 0 16px 40px rgba(0,198,255,.08)}

/* GAMES */
.games{
  padding: 52px 0 56px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.games-showcase{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.game-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:18px;
  box-shadow: var(--shadow);
}
.game-card-header{
  display:flex; align-items:center; gap:12px;
}
.game-emoji-big{font-size:1.8rem}
.game-card p{color: rgba(238,240,255,.76); margin:10px 0 14px}
.game-highlights{
  display:flex; gap:10px;
}
.highlight{
  flex:1;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  text-align:center;
}
.highlight strong{display:block; font-size:1.1rem}
.highlight span{color: var(--muted); font-weight:800; font-size:.9rem}
.game-link{
  display:inline-block;
  margin-top:14px;
  font-weight:950;
  color: var(--gold);
}

/* BONUSES */
.bonuses{padding: 40px 0 56px}
.bonus-layout{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:14px;
  margin-top:18px;
}
.bonus-hero{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:20px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.bonus-tag{
  display:inline-block;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,196,0,.16);
  border:1px solid rgba(255,196,0,.30);
  color: var(--gold);
  font-weight:950;
}
.bonus-percent{
  font-size:3.1rem;
  font-weight:1000;
  margin:10px 0 6px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.bonus-hero p{color: rgba(238,240,255,.76)}
.bonus-specs{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  margin:14px 0 16px;
}
.spec-item{
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  padding:10px 12px;
}
.spec-item span{display:block; color: var(--muted); font-weight:800; font-size:.9rem}
.spec-item strong{font-size:1.05rem}
.btn-bonus-main{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:18px;
  font-weight:950;
  background: linear-gradient(135deg, rgba(255,196,0,.95), rgba(69,211,110,.65));
  color:#0f1220;
  border:1px solid rgba(255,196,0,.25);
}
.btn-bonus-main:hover{filter:brightness(1.05)}
.bonus-sidebar{display:grid; gap:12px}
.bonus-mini{
  display:flex; gap:12px;
  padding:14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-emoji{font-size:1.4rem}
.mini-content h4{margin:0 0 6px}
.mini-content p{margin:0; color: rgba(238,240,255,.76)}

/* GUIDE */
.guide{padding: 40px 0 56px}
.guide-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.guide-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:18px;
  box-shadow: var(--shadow);
}
.guide-card h3{margin:0 0 10px}
.guide-card p{margin:0; color: rgba(238,240,255,.76)}

/* AUTH */
.auth{padding: 40px 0 56px}
.auth-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.auth-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:18px;
  box-shadow: var(--shadow);
}
.small-note{color: rgba(238,240,255,.76); margin:8px 0 14px}
.form-row{display:flex; gap:10px; flex-wrap:wrap}
.input{
  flex:1;
  min-width: 180px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.input::placeholder{color: rgba(238,240,255,.55)}
.btn-form{
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,196,0,.25);
  background: linear-gradient(135deg, rgba(255,196,0,.95), rgba(0,198,255,.55));
  color:#0f1220;
  font-weight:950;
  cursor:pointer;
}

/* FAQ */
.faq{padding: 40px 0 64px}
.faq-wrapper{
  margin-top:18px;
  display:grid;
  gap:12px;
}
.faq-block{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.faq-btn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  background:transparent;
  border:0;
  color:var(--text);
  font-weight:950;
  cursor:pointer;
  text-align:left;
}
.faq-icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.20);
  color: var(--gold);
  font-size:1.2rem;
}
.faq-content{
  padding:0 18px 16px;
  color: rgba(238,240,255,.76);
  display:none;
}
.faq-block.open .faq-content{display:block}
.faq-block.open .faq-icon{color: var(--pink)}

/* CTA */
.cta-section{padding: 8px 0 56px}
.cta-wrapper{
  border-radius: calc(var(--radius) + 8px);
  padding:24px;
  background: linear-gradient(135deg, rgba(255,196,0,.18), rgba(0,198,255,.10), rgba(255,56,162,.10));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  text-align:center;
}
.cta-wrapper p{color: rgba(238,240,255,.80)}
.btn-cta-big{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 18px;
  border-radius:18px;
  font-weight:950;
  background: linear-gradient(135deg, rgba(255,196,0,.95), rgba(255,56,162,.65));
  color:#0f1220;
  border:1px solid rgba(255,196,0,.25);
}

/* FOOTER */
.footer{
  padding: 44px 0 22px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footer-main{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:14px;
}
.footer-brand p{color: rgba(238,240,255,.76)}
.footer-license{
  margin-top:12px;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: rgba(238,240,255,.80);
  font-weight:800;
}
.footer-column h4{margin:0 0 10px}
.footer-column ul{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.footer-column a{
  color: rgba(238,240,255,.80);
  font-weight:800;
}
.footer-column a:hover{color: var(--gold)}
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color: rgba(238,240,255,.70);
  text-align:center;
  font-weight:800;
}

/* SCROLL UP */
.scroll-up{
  position:fixed;
  bottom:18px; right:18px;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight:950;
  cursor:pointer;
  display:none;
}
.scroll-up.show{display:block}

/* RESPONSIVE */
@media (max-width: 980px){
  .navbar{display:none}
  .mobile-toggle{display:block}
  .stats-grid{grid-template-columns: repeat(2, 1fr)}
  .why-grid{grid-template-columns: repeat(2, 1fr)}
  .games-showcase{grid-template-columns: 1fr}
  .bonus-layout{grid-template-columns: 1fr}
  .bonus-specs{grid-template-columns: repeat(2, 1fr)}
  .guide-grid{grid-template-columns: 1fr}
  .auth-grid{grid-template-columns: 1fr}
  .footer-main{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .header-buttons{display:none}
  .footer-main{grid-template-columns: 1fr}
}
