:root{
  --bg:#03070f;
  --bg-2:#071426;
  --panel:#07111f;
  --panel-2:#0a1a30;
  --blue:#2f7cff;
  --blue-soft:#73b3ff;
  --gold:#f5c84c;
  --gold-bright:#ffe68a;
  --gold-deep:#b87800;
  --text:#f7f9ff;
  --muted:#b9c6db;
  --radius:28px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  overflow-x:hidden;
  color:var(--text);
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(48,116,255,.28), transparent 34%),
    radial-gradient(circle at 8% 36%, rgba(255,199,62,.08), transparent 26%),
    radial-gradient(circle at 92% 70%, rgba(28,92,215,.14), transparent 30%),
    linear-gradient(180deg,#091a33 0%,#06111f 28%,#03070f 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-5;
  pointer-events:none;
  opacity:.17;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(to bottom,black,transparent 88%);
}

.page-glow{
  position:fixed;
  border-radius:999px;
  filter:blur(80px);
  pointer-events:none;
  z-index:-4;
}

.glow-one{
  width:300px;
  height:300px;
  top:-130px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(47,124,255,.28);
}

.glow-two{
  width:230px;
  height:230px;
  top:380px;
  right:-140px;
  background:rgba(255,194,44,.10);
}

.stars{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background-image:
    radial-gradient(circle at 14% 12%,rgba(255,232,150,.8) 0 1px,transparent 1.8px),
    radial-gradient(circle at 76% 16%,rgba(152,202,255,.75) 0 1px,transparent 1.8px),
    radial-gradient(circle at 88% 38%,rgba(255,224,116,.62) 0 1px,transparent 1.8px),
    radial-gradient(circle at 22% 54%,rgba(136,194,255,.6) 0 1px,transparent 1.8px),
    radial-gradient(circle at 68% 70%,rgba(255,225,127,.58) 0 1px,transparent 1.8px),
    radial-gradient(circle at 35% 86%,rgba(140,196,255,.5) 0 1px,transparent 1.8px);
}

.container{
  width:min(100%, 460px);
  margin:0 auto;
  padding:20px 16px 28px;
}

.card,
.feature{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border:1px solid rgba(249,202,77,.31);
  background:
    linear-gradient(180deg,rgba(12,30,55,.96),rgba(5,13,25,.98));
  box-shadow:
    0 24px 48px rgba(0,0,0,.26),
    0 0 0 1px rgba(98,157,255,.025) inset,
    0 0 36px rgba(38,104,221,.08);
}

.card::before,
.feature::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 85% 0%,rgba(62,132,255,.13),transparent 30%),
    linear-gradient(120deg,rgba(255,255,255,.035),transparent 34%);
}

.hero{
  padding:34px 24px 26px;
  text-align:center;
  border-radius:34px;
}

.hero::after{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  box-shadow:0 0 14px rgba(245,200,76,.45);
}

.hero-orbit{
  position:absolute;
  width:260px;
  height:260px;
  top:-142px;
  left:50%;
  transform:translateX(-50%);
  border:1px solid rgba(109,171,255,.13);
  border-radius:50%;
  box-shadow:0 0 60px rgba(56,126,255,.13);
}

.badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 17px;
  margin-bottom:22px;
  border:1px solid rgba(255,217,104,.64);
  border-radius:999px;
  color:#ffe187;
  background:linear-gradient(180deg,rgba(17,38,70,.96),rgba(7,18,34,.96));
  box-shadow:
    0 0 20px rgba(47,124,255,.13),
    inset 0 1px 0 rgba(255,255,255,.07);
  font-size:12px;
  font-weight:800;
  letter-spacing:.65px;
}

.badge-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ffe27a;
  box-shadow:0 0 10px #ffd557;
  animation:pulseDot 1.8s ease-in-out infinite;
}

.hero h1{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-family:'Anton','Arial Narrow',sans-serif;
  font-size:clamp(42px,11vw,54px);
  font-weight:400;
  line-height:.98;
  letter-spacing:.7px;
  text-transform:uppercase;
}

.hero-white{
  color:#f8fbff;
  text-shadow:
    0 2px 0 rgba(0,0,0,.28),
    0 0 18px rgba(97,163,255,.16);
}

.gold{
  color:transparent;
  background:
    linear-gradient(180deg,#fff8c5 0%,#ffe57b 18%,#ffc933 46%,#e5a30f 70%,#fff0a4 100%);
  -webkit-background-clip:text;
  background-clip:text;
  filter:drop-shadow(0 4px 8px rgba(199,128,0,.18));
}

.gold-small{
  font-size:.84em;
  margin-top:2px;
}

.hero p{
  max-width:345px;
  margin:22px auto 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.cta{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:58px;
  margin-top:25px;
  padding:15px 24px;
  overflow:hidden;
  border:1px solid rgba(255,222,116,.88);
  border-radius:999px;
  color:#ffdf77;
  background:
    radial-gradient(circle at 50% -70%,rgba(93,159,255,.44),transparent 66%),
    linear-gradient(180deg,#163963 0%,#0b2341 48%,#07182f 100%);
  box-shadow:
    0 10px 26px rgba(0,0,0,.32),
    0 0 0 1px rgba(45,121,255,.12) inset,
    0 0 22px rgba(37,109,233,.18),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -10px 18px rgba(0,0,0,.12);
  font-size:18px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.15px;
  cursor:pointer;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.cta::before{
  content:"";
  position:absolute;
  top:-85%;
  left:-38%;
  width:26%;
  height:270%;
  transform:rotate(22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),rgba(255,247,202,.85),rgba(255,255,255,.08),transparent);
  animation:buttonSweep 3.5s ease-in-out infinite;
}

.cta::after{
  content:"✦";
  position:absolute;
  top:8px;
  right:22px;
  color:#fff3b0;
  font-size:14px;
  text-shadow:0 0 5px #fff,0 0 11px #ffd65c,0 0 18px rgba(255,204,61,.65);
  animation:buttonStar 1.7s ease-in-out infinite;
}

.cta:hover,
.cta:focus-visible{
  transform:translateY(-2px);
  border-color:#ffe89a;
  box-shadow:
    0 14px 32px rgba(0,0,0,.38),
    0 0 28px rgba(49,124,255,.28),
    0 0 16px rgba(244,196,63,.13),
    inset 0 1px 0 rgba(255,255,255,.16);
  outline:none;
}

.cta:active{
  transform:translateY(0) scale(.992);
}

.sparkle{
  position:absolute;
  z-index:2;
  width:4px;
  height:4px;
  pointer-events:none;
  border-radius:50%;
  background:#fff9ce;
  box-shadow:0 0 7px #fff,0 0 13px #ffd866;
  animation:sparklePop 700ms ease-out forwards;
}

.mini{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-top:23px;
  color:#dfe9fb;
  font-size:11px;
  font-weight:600;
}

.mini div{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:55px;
  padding:8px 5px;
  border:1px solid rgba(113,171,255,.11);
  border-radius:14px;
  background:rgba(255,255,255,.025);
}

.mini span{
  font-size:16px;
}

.title{
  margin:32px 0 18px;
  text-align:center;
}

.title small{
  display:block;
  margin-bottom:2px;
  color:#cad7ea;
  font-size:12px;
  font-weight:800;
  letter-spacing:2.2px;
}

.title span{
  display:block;
  color:transparent;
  background:linear-gradient(180deg,#fff6bd 0%,#ffd659 38%,#e8a90f 78%,#ffe68c 100%);
  -webkit-background-clip:text;
  background-clip:text;
  font-family:'Anton','Arial Narrow',sans-serif;
  font-size:46px;
  line-height:1;
  letter-spacing:.5px;
  filter:drop-shadow(0 4px 10px rgba(171,111,0,.12));
}

.features{
  display:grid;
  gap:13px;
}

.feature{
  display:flex;
  align-items:center;
  gap:16px;
  min-height:128px;
  padding:18px;
  border-radius:24px;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.feature:hover{
  transform:translateY(-2px);
  border-color:rgba(255,211,91,.45);
  box-shadow:0 18px 38px rgba(0,0,0,.24),0 0 26px rgba(37,103,221,.10);
}

.icon{
  display:grid;
  place-items:center;
  flex:0 0 74px;
  width:74px;
  height:74px;
  border:1px solid rgba(255,212,89,.26);
  border-radius:21px;
  background:
    radial-gradient(circle at 50% 0%,rgba(75,145,255,.28),transparent 55%),
    linear-gradient(180deg,#123563,#07182f);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 18px rgba(0,0,0,.20);
  font-size:34px;
}

.content{
  min-width:0;
}

.content h3{
  color:#ffd85f;
  font-size:20px;
  line-height:1.2;
  letter-spacing:.1px;
}

.content p{
  margin-top:7px;
  color:#b9c6d9;
  font-size:13px;
  line-height:1.65;
}

.rating{
  margin-top:22px;
  padding:31px 24px;
  border-radius:28px;
  text-align:center;
}

.rating-label{
  color:#8fa6c7;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.8px;
}

.star{
  margin-top:11px;
  color:#ffd659;
  font-size:28px;
  letter-spacing:5px;
  text-shadow:0 0 13px rgba(255,198,50,.28);
}

.score{
  margin-top:5px;
  color:transparent;
  background:linear-gradient(180deg,#fff6b8,#ffc92c 65%,#d99800);
  -webkit-background-clip:text;
  background-clip:text;
  font-family:'Anton','Arial Narrow',sans-serif;
  font-size:68px;
  line-height:1;
}

.score span{
  font-family:'Poppins',sans-serif;
  font-size:22px;
  font-weight:700;
}

.rating p{
  margin-top:8px;
  color:#aebdd3;
  font-size:13px;
}

.bottom{
  margin-top:22px;
  padding:32px 24px 27px;
  border-radius:30px;
  text-align:center;
}

.bottom-icon{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  margin:0 auto 10px;
  border:1px solid rgba(255,213,91,.38);
  border-radius:50%;
  color:#ffe274;
  background:rgba(255,204,61,.07);
  box-shadow:0 0 20px rgba(255,204,61,.08);
}

.bottom h2{
  color:transparent;
  background:linear-gradient(180deg,#fff6bc 0%,#ffd65a 45%,#dda010 100%);
  -webkit-background-clip:text;
  background-clip:text;
  font-family:'Anton','Arial Narrow',sans-serif;
  font-size:39px;
  line-height:1.04;
  letter-spacing:.35px;
}

.bottom p{
  margin-top:12px;
  color:#bac8dc;
  font-size:14px;
  line-height:1.7;
}

.footer{
  padding:23px 8px 8px;
  color:#647894;
  text-align:center;
  font-size:11px;
  letter-spacing:.4px;
}

.legacy-link{
  display:none !important;
}

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

.reveal.is-visible{
  opacity:1;
  transform:none;
}

@keyframes pulseDot{
  0%,100%{opacity:.55;transform:scale(.78)}
  50%{opacity:1;transform:scale(1.18)}
}

@keyframes buttonSweep{
  0%,22%{left:-42%;opacity:0}
  36%{opacity:1}
  60%{left:124%;opacity:.8}
  61%,100%{left:124%;opacity:0}
}

@keyframes buttonStar{
  0%,100%{opacity:.15;transform:scale(.55) rotate(0deg)}
  45%{opacity:1;transform:scale(1.25) rotate(90deg)}
  65%{opacity:.65;transform:scale(.9) rotate(150deg)}
}

@keyframes sparklePop{
  0%{opacity:0;transform:scale(.25)}
  35%{opacity:1;transform:scale(1.35)}
  100%{opacity:0;transform:scale(.25) translateY(-9px)}
}

@media (max-width:380px){
  .container{padding-inline:12px}
  .hero{padding-inline:18px}
  .feature{padding:16px;gap:13px}
  .icon{flex-basis:66px;width:66px;height:66px;font-size:30px}
  .content h3{font-size:18px}
  .mini{gap:5px;font-size:10px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .reveal{opacity:1;transform:none}
}
.redirect-loader{
  margin-top:22px;
  padding:16px;
  border:1px solid rgba(255,205,70,.25);
  border-radius:16px;
  background:rgba(5,15,30,.65);
}

#status{
  font-size:13px;
  color:#dce7f7;
  margin-bottom:10px;
}

.progress{
  width:100%;
  height:8px;
  overflow:hidden;
  border-radius:50px;
  background:#07101e;
  border:1px solid rgba(255,205,70,.18);
}

.fill{
  width:0%;
  height:100%;
  border-radius:50px;

  background:linear-gradient(
    90deg,
    #327cff,
    #64adff,
    #ffd65a,
    #e4a900
  );

  box-shadow:
    0 0 8px rgba(62,139,255,.6),
    0 0 12px rgba(255,202,50,.35);
}

.loader-info{
  display:flex;
  justify-content:space-between;
  margin-top:9px;
  font-size:12px;
  color:#ffd75c;
}