:root{
  --bg:#040914;
  --bg2:#071a3a;
  --bg3:#0a1630;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --line:rgba(255,255,255,.12);
  --text:#fff;
  --muted:#bfd0ef;
  --blue:#2f8cff;
  --cyan:#44e7ff;
  --green:#31e68a;
  --gold:#ffd166;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:24px;
  --radius-lg:34px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Tahoma, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(68,231,255,.18), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(47,140,255,.18), transparent 28%),
    linear-gradient(180deg, #040914, #020711 75%);
  line-height:1.75;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.55), transparent 85%);
  z-index:-1;
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}
.container{width:min(1180px, calc(100% - 32px)); margin:auto}

.nav{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(3,9,20,.82);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  font-weight:900;
}

.brand-logo{
  width:50px;
  height:50px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(68,231,255,.45);
  box-shadow:0 0 30px rgba(68,231,255,.22);
  background:#0a1833;
  flex:0 0 auto;
}

.brand-text{
  white-space:nowrap;
  font-size:22px;
  letter-spacing:.3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-size:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav-links a:hover{color:#fff}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  font-weight:900;
  transition:.2s ease;
  text-align:center;
}

.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  color:#031022;
  box-shadow:0 14px 34px rgba(47,140,255,.3);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 18px 42px rgba(68,231,255,.38)}

.btn-outline{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
  color:#fff;
}
.btn-outline:hover{background:rgba(255,255,255,.11); transform:translateY(-2px)}

.btn-small{
  width:100%;
  padding:11px 14px;
  font-size:13px;
}

.hero{
  padding:72px 0 48px;
  position:relative;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
}

.pulse{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 8px rgba(49,230,138,.12);
}

h1{
  margin:0 0 16px;
  font-size:clamp(34px, 6vw, 66px);
  line-height:1.12;
  letter-spacing:-1.4px;
}

.gradient-text{
  background:linear-gradient(135deg, #fff, var(--cyan), var(--blue));
  -webkit-background-clip:text;
  color:transparent;
}

.hero p{
  margin:0 0 28px;
  color:var(--muted);
  font-size:18px;
  max-width:640px;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.micro-trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}

.hero-visual{
  position:relative;
  padding:16px;
  border-radius:34px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 50% 28%, rgba(68,231,255,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-visual::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:conic-gradient(from 0deg, transparent, rgba(68,231,255,.12), transparent 30%);
  animation:spin 11s linear infinite;
  pointer-events:none;
}

.hero-card{
  position:relative;
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at center, rgba(47,140,255,.20), rgba(2,7,17,.95) 70%);
  display:grid;
  place-items:center;
  padding:22px;
  isolation:isolate;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 18%, rgba(68,231,255,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%, rgba(255,255,255,.02));
  pointer-events:none;
}

.mascot-wrap{
  position:relative;
  width:100%;
  max-width:480px;
  animation:floatY 4.8s ease-in-out infinite;
  z-index:2;
}

.mascot-wrap::before{
  content:"";
  position:absolute;
  inset:6% 8% 14%;
  border-radius:28px;
  background:radial-gradient(circle, rgba(68,231,255,.22), transparent 60%);
  filter:blur(25px);
  z-index:-1;
}

.main-hero-image{
  width:100%;
  height:420px;
  object-fit:contain;
  object-position:center;
  filter:drop-shadow(0 0 45px rgba(68,231,255,.24));
}

.floating-profile{
  position:absolute;
  right:18px;
  left:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(3,9,20,.72);
  backdrop-filter:blur(14px);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  z-index:3;
  animation:softGlow 3s ease-in-out infinite;
}

.floating-profile img{
  width:66px;
  height:66px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(68,231,255,.4);
  flex:0 0 auto;
}

.floating-profile b{
  display:block;
  font-size:26px;
  line-height:1.15;
}

.floating-profile small{
  color:var(--muted);
  font-size:14px;
}

section{padding:56px 0}
.section-head{text-align:center;margin-bottom:28px}
.section-head h2{
  margin:0 0 8px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.2;
}
.section-head p{
  margin:0 auto;
  color:var(--muted);
  max-width:760px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:28px;
}

.stat{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
}

.stat b{
  display:block;
  font-size:28px;
  color:var(--cyan);
  line-height:1.1;
  margin-bottom:4px;
}

.stat span{
  font-size:14px;
  color:var(--muted);
}

.cards,
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card,
.step{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(68,231,255,.12);
  border:1px solid rgba(68,231,255,.25);
  font-size:22px;
  margin-bottom:12px;
}

.card h3,
.step h3{
  margin:0 0 8px;
  font-size:20px;
}

.card p,
.step p{
  margin:0;
  font-size:15px;
  color:var(--muted);
}

.steps{counter-reset:step}
.step:before{
  counter-increment:step;
  content:counter(step);
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  color:#031022;
  font-weight:900;
  margin-bottom:12px;
}

.offers{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
}

.game-card,
.offer-card{
  position:relative;
  overflow:hidden;
  min-height:310px;
  border-radius:28px;
  padding:18px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(47,140,255,.26), rgba(68,231,255,.08));
  box-shadow:0 16px 36px rgba(0,0,0,.18);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
}

.game-card:hover,
.offer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 48px rgba(0,0,0,.24);
  border-color:rgba(68,231,255,.22);
}

.game-card::before,
.offer-card::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(68,231,255,.12);
  top:-70px;
  left:-70px;
  filter:blur(8px);
}

.game-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
  z-index:1;
  margin-bottom:18px;
}

.game-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.game-badge{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(49,230,138,.12);
  color:#9ff3c6;
  border:1px solid rgba(49,230,138,.18);
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.game-card h3,
.offer-card h3{
  margin:0 0 8px;
  font-size:24px;
  position:relative;
  z-index:1;
}

.game-card p,
.offer-card p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  position:relative;
  z-index:1;
}

.game-features{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
  position:relative;
  z-index:1;
}

.chip{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  color:#d7e4fa;
  font-size:12px;
  font-weight:700;
}

.game-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:auto;
  position:relative;
  z-index:1;
}

.page-header{
  padding:58px 0 24px;
}

.breadcrumb{
  color:var(--muted);
  font-size:14px;
  margin-bottom:12px;
}

.breadcrumb a{color:var(--cyan)}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:22px;
}

.filter-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  font-weight:900;
}

.filter-btn.active{
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  color:#031022;
}

.offers-list{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
}

.offer-price{
  font-size:26px;
  font-weight:900;
  color:var(--cyan);
  margin:8px 0 12px;
  position:relative;
  z-index:1;
}

.old-price{
  color:#91a4c8;
  text-decoration:line-through;
  font-size:14px;
  margin-inline-start:8px;
  font-weight:700;
}

.payments{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:14px;
}

.payment-card{
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  background:rgba(255,255,255,.055);
  min-height:185px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.payment-card .pay-icon{
  font-size:30px;
  margin-bottom:8px;
}

.payment-card h3{
  margin:0 0 6px;
  font-size:18px;
}

.payment-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.payment-number-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.payment-number{
  direction:ltr;
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(68,231,255,.08);
  border:1px solid rgba(68,231,255,.18);
  color:var(--cyan);
  font-weight:900;
  letter-spacing:.3px;
}

.copy-btn{
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.07);
  color:#fff;
  cursor:pointer;
  font-weight:900;
  transition:.2s ease;
}
.copy-btn:hover{background:rgba(255,255,255,.12)}

.payment-note{
  margin-top:18px;
  border:1px solid rgba(255,209,102,.26);
  background:rgba(255,209,102,.08);
  color:#ffe8a1;
  border-radius:18px;
  padding:14px 16px;
  font-size:14px;
}

.slider-wrap{position:relative}

.slider-controls{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-bottom:14px;
}

.slider-btn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-size:18px;
  transition:.2s ease;
}

.slider-btn:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}

.slider{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}

.slider::-webkit-scrollbar{height:8px}
.slider::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.12);
  border-radius:999px;
}

.review-card,
.proof-card{
  scroll-snap-align:start;
  flex:0 0 calc(50% - 8px);
  min-width:calc(50% - 8px);
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.review-card{
  padding:18px;
}

.stars{
  color:var(--gold);
  letter-spacing:2px;
  font-size:18px;
  margin-bottom:10px;
  direction:ltr;
  text-align:right;
}

.review-card p{
  margin:0 0 14px;
  color:#eaf2ff;
  min-height:72px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  color:#031022;
  font-weight:900;
  flex:0 0 auto;
}

.review-user small{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.proof-card{overflow:hidden}

.proof-image{
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(47,140,255,.24), rgba(68,231,255,.08)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 10px, rgba(255,255,255,.02) 10px 20px);
  display:grid;
  place-items:center;
  color:var(--muted);
  text-align:center;
  padding:18px;
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
}

.proof-image::after{
  content:"Verified Proof";
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(49,230,138,.12);
  color:#a6f4cf;
  border:1px solid rgba(49,230,138,.2);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.proof-content{padding:16px}
.proof-content h3{margin:0 0 6px;font-size:20px}
.proof-content p{margin:0 0 12px;color:var(--muted);font-size:14px}

.proof-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.proof-meta span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#dce7f7;
}

.review-form-wrap{
  margin-top:20px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  background:rgba(255,255,255,.05);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.review-form-wrap h3{margin:0 0 10px;font-size:22px}
.review-form-wrap p{margin:0 0 18px;color:var(--muted);font-size:14px}

.review-form{
  display:grid;
  grid-template-columns:1fr 180px;
  gap:12px;
}

.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:14px;
  outline:none;
}

.review-form select option{color:#031022}
.review-form textarea{
  min-height:120px;
  resize:vertical;
  grid-column:1 / -1;
}

.review-form button{border:none}
.form-note{margin-top:12px;color:var(--muted);font-size:13px}

.faq{
  max-width:860px;
  margin:auto;
  display:grid;
  gap:12px;
}

details{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  padding:16px 18px;
}

summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0;color:var(--muted)}

.cta-box{
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(68,231,255,.16), transparent 26%),
    linear-gradient(135deg, rgba(47,140,255,.22), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  text-align:center;
}

.cta-box h2{margin:0 0 8px;font-size:clamp(28px, 4vw, 46px)}
.cta-box p{margin:0 auto 22px;max-width:720px;color:var(--muted)}

.footer{
  padding:28px 0 95px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
  text-align:center;
}

.sticky-contact{
  position:fixed;
  left:16px;
  right:16px;
  bottom:14px;
  z-index:110;
  display:none;
  gap:10px;
  justify-content:center;
  padding:10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(3,9,20,.84);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.sticky-contact .btn{
  flex:1;
  padding:12px 14px;
  font-size:14px;
}

@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

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

@keyframes softGlow{
  0%,100%{box-shadow:0 12px 28px rgba(0,0,0,.24)}
  50%{box-shadow:0 16px 34px rgba(68,231,255,.12)}
}

@media (max-width: 1080px){
  .hero-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .cards,.steps{grid-template-columns:1fr}
  .main-hero-image{height:360px}
  .review-card,.proof-card{
    flex:0 0 85%;
    min-width:85%;
  }
}

@media (max-width: 860px){
  .nav-inner{
    flex-wrap:wrap;
    justify-content:center;
  }
  .nav-links{display:none}
  .sticky-contact{display:flex}
  .review-form{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .container{width:min(100% - 22px, 1180px)}
  .stats{grid-template-columns:1fr}
  .actions .btn{width:100%}
  .hero{padding-top:44px}
  .hero-card{min-height:430px}
  .main-hero-image{height:260px}
  .floating-profile{
    position:static;
    margin-top:8px;
  }
  .floating-profile b{font-size:20px}
  .game-actions{grid-template-columns:1fr}
  .payment-number-row{
    flex-direction:column;
    align-items:stretch;
  }
  .review-card,.proof-card{
    flex:0 0 100%;
    min-width:100%;
  }
}