:root{
  --bg0:#070d1b;
  --bg1:#0a1428;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.09);
  --stroke:rgba(255,255,255,.12);
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.78);
  --muted2:rgba(245,247,255,.62);
  --gold:#ffc107;
  --gold2:#ffd76a;
  --danger:#ff4d4d;
  --ok:#2ee59d;

  --radius:18px;
  --radius2:24px;
  --shadow:0 20px 80px rgba(0,0,0,.55);
  --shadow2:0 12px 40px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg0),var(--bg1));
  overflow-x:hidden;
}

a{color:inherit}
a:hover{opacity:.95}

.skip{
  position:absolute;
  left:-999px;
  top:8px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:1000;
}
.skip:focus{left:12px}

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.bg{position:fixed; inset:0; pointer-events:none; z-index:-1;}
.bg__stars{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.18) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.10) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.15) 0 1px, transparent 2px);
  background-size: 280px 280px;
  opacity:.45;
  animation: drift 18s linear infinite;
}
.bg__glow{
  position:absolute;
  width:820px;
  height:820px;
  filter:blur(60px);
  opacity:.75;
}
.bg__glow--a{
  left:-280px;
  top:-260px;
  background:radial-gradient(circle at 30% 30%, rgba(255,193,7,.35), transparent 60%);
}
.bg__glow--b{
  right:-320px;
  bottom:-320px;
  background:radial-gradient(circle at 50% 50%, rgba(255,92,92,.22), transparent 60%);
}

@keyframes drift{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-60px, 40px, 0)}
}

@media (prefers-reduced-motion: reduce){
  .bg__stars{animation:none}
}

.top{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background:rgba(7,13,27,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand__logo{height:38px; width:auto; object-fit:contain;}
.brand__meta{line-height:1.05}
.brand__kicker{font-size:12px; color:var(--muted2)}
.brand__name{font-size:14px; font-weight:700}

.trust{display:flex; align-items:center; gap:12px;}
.trust__badge{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.trust__dot{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(180deg,var(--gold),var(--gold2));
  box-shadow:0 0 0 3px rgba(255,193,7,.18);
}
.trust__em{color:var(--gold2)}
.trust__link{
  color:var(--muted);
  font-weight:600;
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.35);
}

.hero{padding:46px 0 24px;}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

.hero__title{
  margin:14px 0 12px;
  font-size:46px;
  line-height:1.04;
  letter-spacing:-.02em;
}
.hero__titleEm{
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6; max-width:58ch;}

.hero__highlights{display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin:18px 0 22px;}
.highlight{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px;
}
.highlight__title{font-weight:800; font-size:13px; letter-spacing:.02em;}
.highlight__text{margin-top:6px; font-size:13px; color:var(--muted2); line-height:1.5;}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.01em;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.22)}
.btn:active{transform:translateY(0)}
.btn--primary{
  border:none;
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  color:#111;
  box-shadow:0 18px 55px rgba(255,193,7,.16);
}
.btn--primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.16);
  color:var(--text);
}
.btn--full{width:100%}

.fineprint{margin:16px 0 0; color:var(--muted2); font-size:13px; line-height:1.6;}
.fineprint a{color:var(--gold2); text-decoration:none; border-bottom:1px dashed rgba(255,215,106,.55)}

.hero__media{display:flex; justify-content:flex-end;}
.prizeCard{
  width:min(520px, 100%);
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.prizeCard__top{display:flex; justify-content:space-between; gap:10px; padding:18px 18px 12px;}
.prizeTag, .moneyTag{
  border-radius:16px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
}
.prizeTag__label, .moneyTag__label{font-size:12px; color:var(--muted2); font-weight:700;}
.prizeTag__value{font-size:16px; font-weight:900; margin-top:3px;}
.moneyTag__value{font-size:16px; font-weight:900; margin-top:3px; color:var(--gold2)}

.prizeCard__img{
  width:100%;
  display:block;
  transform:translateY(2px);
  filter:drop-shadow(0 28px 50px rgba(0,0,0,.55));
}

.prizeCard__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px 18px;
}
.seal{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:132px;
  height:92px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.seal__ring{
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,193,7,.22), transparent 55%),
    conic-gradient(from 0deg, rgba(255,215,106,.25), rgba(255,255,255,0), rgba(255,193,7,.22), rgba(255,255,255,0));
  animation: spin 8s linear infinite;
  opacity:.9;
}
.seal__text{position:relative; text-align:center; font-size:11px; color:rgba(245,247,255,.86); letter-spacing:.08em;}
.seal__text strong{display:block; font-size:13px; letter-spacing:.12em; color:var(--gold2)}

@keyframes spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.prizeCard__note{font-size:12px; color:var(--muted2); max-width:22ch;}

.register{padding:30px 0 40px;}
.register__grid{display:grid; grid-template-columns: 1fr 1.05fr; gap:26px; align-items:start;}

.sectionTitle{margin:0 0 10px; font-size:30px; letter-spacing:-.02em;}
.sectionText{margin:0 0 18px; color:var(--muted); line-height:1.7;}

.infoBox{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow2);
}
.infoBox__title{font-weight:900; margin-bottom:10px;}
.infoBox__list{margin:0; padding-left:18px; color:var(--muted); line-height:1.8;}

.microTrust{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}
.microTrust__item{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted2);
  font-weight:700;
  font-size:12px;
}

.formCard{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.form{padding:18px;}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap:12px;}

.field{display:block; margin-bottom:12px;}
.field__label{display:block; font-size:12px; color:rgba(245,247,255,.88); font-weight:800; margin:0 0 8px;}
.field__control{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.field__control::placeholder{color:rgba(245,247,255,.38)}
.field__control:focus{border-color:rgba(255,215,106,.55); box-shadow:0 0 0 3px rgba(255,193,7,.12)}
.field__hint{display:block; margin-top:6px; font-size:12px; color:var(--muted2)}

.phone{display:flex; align-items:stretch; gap:10px;}
.phone__prefix{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(245,247,255,.82);
  font-weight:900;
}
.phone__input{flex:1}

.check{display:flex; gap:10px; align-items:flex-start; margin:12px 0;}
.check__box{margin-top:3px; width:18px; height:18px; accent-color: var(--gold);}
.check__text{color:var(--muted); font-size:13px; line-height:1.55;}
.check__text a{color:var(--gold2); text-decoration:none; border-bottom:1px dashed rgba(255,215,106,.55)}

.formMsg{
  margin-top:12px;
  min-height:22px;
  color:var(--muted);
  font-weight:700;
}
.formMsg--ok{color:rgba(46,229,157,.98)}
.formMsg--err{color:rgba(255,77,77,.98)}

.legal{margin:12px 0 0; color:var(--muted2); font-size:12px; line-height:1.6;}

.legalSection{padding:22px 0 26px;}
.legalSection__inner{
  border-radius:var(--radius2);
  padding:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.09);
}
.legalGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px;}
.legalCard{padding:14px; border-radius:16px; background:rgba(0,0,0,.20); border:1px solid rgba(255,255,255,.10)}
.legalCard__title{margin:0 0 8px; font-size:14px; font-weight:900}
.legalCard__text{margin:0; color:var(--muted); line-height:1.65; font-size:13px}

.bullets{margin:10px 0 0; color:var(--muted); line-height:1.8; padding-left:18px;}

.footer{
  padding:18px 0 26px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(7,13,27,.25);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px;}
.footer__logo{height:30px; width:auto}
.footer__copy{color:var(--muted2); font-weight:700; font-size:12px; margin-top:6px}
.footer__contact{color:var(--muted2); font-weight:700; font-size:12px; margin-top:4px}
.footer__left{display:flex; align-items:center; gap:12px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__right a{color:var(--muted); font-weight:700; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.28)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;}
  .hero__media{justify-content:flex-start;}
  .hero__highlights{grid-template-columns:1fr;}
  .register__grid{grid-template-columns:1fr;}
  .legalGrid{grid-template-columns:1fr;}
}

@media (max-width: 560px){
  .top__inner{flex-direction:column; align-items:flex-start;}
  .hero__title{font-size:38px;}
  .form__row{grid-template-columns:1fr;}
}

@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
  .seal__ring{animation:none}
}
