
:root{
  --blue:#006eff;
  --blue-soft:#88a4ff;
  --ink:#101a25;
  --ink-2:#151d26;
  --card:rgba(27,27,27,.66);
  --card-strong:rgba(23,28,34,.92);
  --border:#003984;
  --text:#ffffff;
  --muted:#d2d2d2;
  --dim:#8f8f8f;
  --container:1480px;
  --header-h:60px;
  --shadow:0 16px 60px rgba(0,0,0,.25);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--text);
  background:#111820;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  font-size:16px;
  line-height:1.35;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(rgba(18,26,35,.88),rgba(18,26,35,.88)),
    url("../img/site-bg.webp") center top/cover no-repeat;
}
body::after{
  content:"NSKRP";
  position:fixed;
  inset:auto auto 7vh -5vw;
  z-index:-2;
  color:rgba(255,255,255,.025);
  font:900 italic clamp(160px,22vw,500px)/1 Arial Black,Arial,sans-serif;
  filter:blur(3px);
  transform:rotate(-12deg);
  pointer-events:none;
}
a{color:inherit}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
img{max-width:100%}
.wide-container{
  width:min(calc(100% - 48px),var(--container));
  margin-inline:auto;
}
.site-header{
  height:var(--header-h);
  position:relative;
  z-index:100;
  background:rgba(27,27,27,.58);
  border-bottom:1px solid rgba(0,110,255,.28);
  backdrop-filter:blur(12px);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:inline-flex;
  align-items:center;
  flex:none;
  text-decoration:none;
}
.brand img{
  display:block;
  width:141px;
  height:auto;
  object-fit:contain;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.desktop-nav a{
  min-height:34px;
  padding:7px 15px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-size:20px;
  letter-spacing:-.04em;
  transition:.2s ease;
}
.desktop-nav a:hover,.desktop-nav a.active{
  background:rgba(0,110,255,.20);
}
.desktop-nav a.active::after{
  content:"";
  display:block;
  height:1px;
  margin-top:4px;
  background:linear-gradient(90deg,var(--blue),var(--blue-soft));
}
.desktop-nav .nav-download,.mobile-menu .nav-download{
  background:var(--blue);
  box-shadow:0 0 15px rgba(0,110,255,.25);
}
.menu-toggle{
  display:none;
  width:44px;
  height:40px;
  border:0;
  border-radius:8px;
  background:transparent;
  padding:8px;
}
.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  margin:5px auto;
  background:#fff;
  border-radius:2px;
  transition:.2s;
}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{
  display:none;
  position:fixed;
  top:calc(var(--header-h) + 10px);
  right:14px;
  z-index:200;
  width:min(300px,calc(100vw - 28px));
  padding:10px;
  background:rgba(17,24,32,.98);
  border:1px solid rgba(0,110,255,.45);
  border-radius:14px;
  box-shadow:0 20px 70px rgba(0,0,0,.55);
}
.mobile-menu.open{display:grid;gap:7px}
.mobile-menu a{
  padding:14px 16px;
  border-radius:9px;
  text-decoration:none;
  font-weight:800;
}
.mobile-menu a.active{background:rgba(0,110,255,.22)}

.hero{
  min-height:1020px;
  position:relative;
  overflow:hidden;
  border-bottom:2px solid rgba(0,110,255,.35);
  background:
    linear-gradient(90deg,rgba(11,25,37,.45),rgba(11,25,37,.20)),
    url("../img/hero-bg.webp") center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 48%,rgba(0,110,255,.08),transparent 28%),
    linear-gradient(90deg,rgba(12,25,37,.90) 0%,rgba(12,25,37,.43) 43%,rgba(12,25,37,.10) 100%);
}
.hero-character{
  position:absolute;
  right:-1.5%;
  bottom:-2%;
  width:min(67vw,1280px);
  max-height:97%;
  object-fit:contain;
  object-position:right bottom;
  filter:saturate(.98) contrast(1.03);
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:3;
  min-height:1020px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding-bottom:15px;
}
.year-badge{
  display:inline-flex;
  align-items:center;
  min-height:53px;
  padding:8px 35px;
  margin-bottom:38px;
  border-radius:11px;
  background:var(--blue);
  font-weight:900;
  font-style:italic;
  font-size:33px;
}
.hero h1{
  width:min(840px,58%);
  margin:0 0 38px;
  font-family:Arial Black,Inter,sans-serif;
  font-size:clamp(64px,5vw,96px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.hero h1 em{
  color:var(--blue);
  font-style:normal;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:37px;
}
.primary-button,.secondary-button{
  min-height:100px;
  border:0;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-family:Arial Black,Inter,sans-serif;
  font-weight:900;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.primary-button{
  min-width:570px;
  padding:20px 55px;
  background:var(--blue);
  color:#fff;
  font-size:36px;
  box-shadow:0 0 25px rgba(0,110,255,.38);
}
.primary-button:hover,.cta-button:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,110,255,.35)}
.online{
  min-width:190px;
  line-height:1.05;
}
.online strong{
  display:block;
  font-size:32px;
  font-weight:900;
  font-style:italic;
}
.online strong span{color:var(--blue)}
.online small{color:var(--muted);font-size:20px}

.page-main{
  position:relative;
  background:
    linear-gradient(rgba(27,27,27,.74),rgba(27,27,27,.74)),
    url("../img/site-bg.webp") center top/cover fixed;
}
.section{
  position:relative;
  padding:92px 0 72px;
}
.section.glow::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:min(110vw,2080px);
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(ellipse at center,rgba(0,110,255,.14),transparent 66%);
  pointer-events:none;
}
.section-heading{
  position:relative;
  min-height:130px;
  margin-bottom:54px;
  display:grid;
  place-items:center;
  text-align:center;
}
.section-heading .ghost{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  color:rgba(255,255,255,.16);
  font-family:Arial Black,Inter,sans-serif;
  font-size:96px;
  line-height:1;
  letter-spacing:-.04em;
  white-space:nowrap;
}
.section-heading h2{
  position:relative;
  z-index:2;
  margin:50px 0 0;
  font-size:40px;
  letter-spacing:-.03em;
}
.section-heading h2::before,.section-heading h2::after{
  content:"";
  position:absolute;
  top:52%;
  width:239px;
  height:3px;
  background:linear-gradient(90deg,transparent,var(--blue));
}
.section-heading h2::before{right:calc(100% + 16px)}
.section-heading h2::after{left:calc(100% + 16px);transform:scaleX(-1)}
.section-heading .ticks{
  width:110px;
  height:13px;
  margin-top:7px;
  background:repeating-linear-gradient(90deg,var(--blue) 0 4px,transparent 4px 10px);
  clip-path:polygon(0 35%,100% 35%,92% 65%,8% 65%);
}
.card{
  background:var(--card);
  border:1px solid rgba(0,57,132,.50);
  border-radius:0 0 18px 0;
  border-top-left-radius:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(5px);
}
.feature-grid,.requirements-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}
.feature-card,.requirement-card{
  min-height:332px;
  padding:66px 31px 35px;
}
.feature-card h3,.requirement-card h3,.rule-card h3{
  margin:0 0 25px;
  color:#e5f0ff;
  font-size:24px;
  line-height:1.15;
}
.feature-card p,.requirement-card p{
  margin:0;
  color:var(--muted);
  font-size:20px;
}

.horizontal-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding:4px 2px 12px;
}
.horizontal-track::-webkit-scrollbar{display:none}
.horizontal-track>*{scroll-snap-align:center}
.promo-card{
  min-width:calc((100% - 48px)/3);
  padding:36px 40px;
  border:1px solid var(--border);
  border-radius:15px;
  background:rgba(27,27,27,.82);
  display:grid;
  grid-template-columns:152px 1fr;
  gap:14px;
}
.promo-code{
  display:grid;
  gap:12px;
}
.promo-code strong{
  display:flex;
  height:41px;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:var(--blue);
  font-size:22px;
}
.copy-button{
  height:28px;
  border:1px dashed var(--blue);
  border-radius:5px;
  color:#b8b8b8;
  background:#1f1f1f;
  font-size:12px;
}
.copy-button.copied{color:#fff;background:rgba(0,110,255,.35)}
.promo-content h3{margin:0 0 18px;color:#b8b8b8;font-size:16px}
.promo-content ul{margin:0;padding-left:21px;color:#527097;font-size:14px}
.slider-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  margin-top:18px;
}
.slider-controls button{
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(0,110,255,.5);
  color:#fff;background:rgba(27,27,27,.85)
}
.slider-controls button:hover{background:var(--blue)}
.slider-controls .dot{width:9px;height:9px;padding:0;background:#3c4653;border:0}
.slider-controls .dot.active{background:var(--blue)}

.screenshot-card{
  flex:0 0 calc((100% - 87px)/4);
  aspect-ratio:348/196;
  border-radius:13px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg,rgba(0,110,255,.12),rgba(255,255,255,.02)),
    #363636;
  border:1px solid rgba(255,255,255,.035);
}
.screenshot-card::before{
  content:"NSKRP";
  position:absolute;
  right:-10%;
  bottom:-12%;
  color:rgba(255,255,255,.045);
  font:900 italic 42px Arial Black,sans-serif;
  transform:rotate(-8deg);
}
.screenshot-card span{
  position:absolute;left:16px;bottom:14px;color:rgba(255,255,255,.35);font-weight:800
}

.requirement-card{min-height:253px;padding-top:58px}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:48px 116px;
}
.faq-item{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(27,27,27,.82);
  overflow:hidden;
}
.faq-item:nth-child(3){grid-column:1/-1;width:calc(50% - 58px);justify-self:center}
.faq-question{
  width:100%;
  border:0;
  padding:32px 50px 15px;
  background:transparent;
  color:#e5f0ff;
  text-align:left;
  font-size:24px;
  font-weight:900;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  color:var(--muted);
  padding:0 50px;
  font-size:20px;
  transition:max-height .25s ease,padding .25s ease;
}
.faq-item.open .faq-answer{max-height:240px;padding:10px 50px 33px}

.review-card{
  flex:0 0 calc((100% - 225px)/4);
  min-height:357px;
  padding:48px 37px;
  border-radius:14px;
  background:
    linear-gradient(rgba(0,110,255,.10),rgba(0,110,255,.10)),
    rgba(27,27,27,.25);
  border:1px solid rgba(0,110,255,.16);
}
.review-card h3{margin:0 0 28px;font-size:24px}
.review-card p{margin:0;font-size:20px;line-height:1.35}

.site-footer{
  min-height:280px;
  background:#1b1b1b;
  border-top:1px solid #00295e;
}
.footer-inner{
  min-height:280px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.footer-brand{display:grid;grid-template-columns:auto 1fr;gap:18px 22px;align-items:center}
.footer-logo img{width:152px}
.footer-links{display:flex;gap:11px;flex-wrap:wrap}
.footer-links a{color:#8f8f8f;text-decoration:none;font-size:13px}
.social-links{grid-column:2;display:flex;gap:14px}
.social-links a{
  width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
  color:#8f8f8f;text-decoration:none;border:1px solid #444;font-size:12px
}
.legal{max-width:430px;color:#8f8f8f;text-align:right;font-size:16px;line-height:1.25}

/* Internal page hero */
.inner-hero{
  min-height:580px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 80% 40%,rgba(0,110,255,.12),transparent 40%),
    linear-gradient(rgba(16,26,37,.84),rgba(16,26,37,.92)),
    url("../img/hero-bg.webp") center/cover;
}
.inner-hero h1{
  max-width:1000px;
  margin:0 0 26px;
  font:900 clamp(56px,5vw,96px)/1.05 Arial Black,Inter,sans-serif;
  letter-spacing:-.04em;
}
.inner-hero p{max-width:920px;margin:0;color:var(--muted);font-size:24px;line-height:1.45}

.rules-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:36px;
}
.rule-card{
  min-height:285px;
  padding:24px 31px 45px;
}
.rule-card p{margin:0;color:var(--muted);font-size:16px}
.rule-card .num{font-family:Inter,sans-serif;font-weight:900}

/* Form pages */
.form-layout{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(340px,.75fr);
  gap:42px;
  align-items:start;
}
.form-card,.summary-card,.info-card{
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(24,28,34,.90);
  box-shadow:var(--shadow);
}
.form-card{padding:42px}
.summary-card{padding:34px;position:sticky;top:25px}
.form-card h2,.summary-card h2{margin:0 0 26px;font-size:32px}
.field-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.field{display:grid;gap:9px;margin-bottom:20px}
.field.full{grid-column:1/-1}
.field label{font-weight:800;color:#e5f0ff}
.field input,.field textarea,.field select{
  width:100%;
  min-height:58px;
  padding:14px 16px;
  border:1px solid rgba(0,110,255,.34);
  border-radius:10px;
  background:#151b22;
  color:#fff;
  outline:none;
}
.field textarea{min-height:150px;resize:vertical}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,110,255,.12)}
.quick-amounts{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.quick-amounts button{
  min-height:44px;border:1px solid rgba(0,110,255,.45);border-radius:9px;
  background:#192431;color:#fff;font-weight:800
}
.quick-amounts button:hover,.quick-amounts button.active{background:var(--blue)}
.checkline{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:14px;line-height:1.35}
.checkline input{margin-top:3px}
.cta-button{
  width:100%;min-height:64px;border:0;border-radius:11px;background:var(--blue);color:#fff;
  font:900 21px Arial Black,Inter,sans-serif;box-shadow:0 0 20px rgba(0,110,255,.28)
}
.summary-row{display:flex;justify-content:space-between;gap:20px;padding:15px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.summary-row span{color:#8f8f8f}
.summary-row strong{color:#fff}
.payment-logo{
  margin-top:24px;padding:18px;border:1px solid rgba(0,110,255,.28);border-radius:10px;
  display:flex;align-items:center;gap:14px;color:#d2d2d2
}
.payment-logo b{color:#fff}
.notice{
  margin:0 0 24px;padding:15px 18px;border:1px solid rgba(0,110,255,.35);
  border-radius:10px;background:rgba(0,110,255,.10);color:#cfe3ff
}
.notice.error{border-color:#8d3131;background:rgba(160,35,35,.14);color:#ffd4d4}
.notice.success{border-color:#2d7545;background:rgba(35,140,70,.12);color:#d6ffe1}

/* Download */
.download-panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.download-card{
  padding:50px;
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(23,28,34,.91);
}
.download-card h2{font-size:42px;margin:0 0 20px}
.download-card p{font-size:20px;color:var(--muted)}
.download-steps{display:grid;gap:18px}
.download-step{
  display:grid;grid-template-columns:55px 1fr;gap:18px;align-items:start;padding:22px;
  border-radius:14px;background:rgba(27,27,27,.62);border:1px solid rgba(0,57,132,.35)
}
.download-step strong{
  width:55px;height:55px;border-radius:12px;background:var(--blue);display:grid;place-items:center;font-size:24px
}
.download-step h3{margin:0 0 7px}
.download-step p{margin:0;font-size:16px}

/* Status pages */
.status-page{min-height:calc(100vh - var(--header-h));display:grid;place-items:center;padding:60px 20px}
.status-card{max-width:780px;padding:55px;border:1px solid var(--border);border-radius:20px;background:#171d25;text-align:center}
.status-icon{width:90px;height:90px;border-radius:50%;display:grid;place-items:center;margin:0 auto 25px;background:rgba(0,110,255,.18);font-size:40px}
.status-card h1{font-size:42px}
.status-card p{color:var(--muted);font-size:18px}
.status-card .primary-button{min-width:0;min-height:60px;font-size:20px;margin-top:16px}

@media(min-width:2560px){
  :root{--container:1880px;--header-h:78px}
  body{font-size:19px}
  .brand img{width:185px}
  .desktop-nav a{font-size:24px}
  .hero,.hero-content{min-height:1320px}
  .hero h1{font-size:118px;width:1000px}
  .year-badge{font-size:40px}
  .primary-button{min-width:700px;min-height:118px;font-size:42px}
  .section{padding-block:120px 95px}
  .section-heading .ghost{font-size:120px}
  .section-heading h2{font-size:52px}
  .feature-card{min-height:390px}
  .feature-card h3,.requirement-card h3{font-size:29px}
  .feature-card p,.requirement-card p{font-size:23px}
}
@media(min-width:3800px){
  :root{--container:2720px;--header-h:108px}
  body{font-size:25px}
  .brand img{width:250px}
  .desktop-nav{gap:28px}
  .desktop-nav a{font-size:32px;padding:12px 24px}
  .hero,.hero-content{min-height:1840px}
  .hero h1{font-size:168px;width:1450px}
  .year-badge{font-size:55px;min-height:80px}
  .primary-button{min-width:980px;min-height:160px;font-size:60px}
  .online strong{font-size:50px}.online small{font-size:30px}
  .section-heading .ghost{font-size:170px}
  .section-heading h2{font-size:72px}
  .feature-card{min-height:540px;padding:95px 50px}
  .feature-card h3,.requirement-card h3{font-size:40px}
  .feature-card p,.requirement-card p{font-size:32px}
  .review-card{min-height:520px}.review-card h3{font-size:36px}.review-card p{font-size:30px}
  .site-footer,.footer-inner{min-height:410px}
  .legal{max-width:650px;font-size:24px}
}

@media(max-width:1100px){
  :root{--container:900px}
  .desktop-nav{gap:5px}
  .desktop-nav a{font-size:16px;padding-inline:9px}
  .hero,.hero-content{min-height:760px}
  .hero h1{font-size:64px}
  .primary-button{min-width:410px;min-height:80px;font-size:28px}
  .feature-grid,.requirements-grid,.rules-grid{grid-template-columns:repeat(2,1fr)}
  .promo-card{min-width:calc((100% - 24px)/2)}
  .review-card{flex-basis:calc((100% - 75px)/2.5)}
  .faq-grid{gap:30px}.faq-item:nth-child(3){width:calc(50% - 15px)}
}
@media(max-width:760px){
  :root{--header-h:50px}
  .wide-container{width:min(calc(100% - 32px),440px)}
  .brand img{width:89px}
  .desktop-nav{display:none}
  .menu-toggle{display:block}
  .hero{min-height:690px}
  .hero::before{
    background:
      radial-gradient(circle at 70% 30%,rgba(0,110,255,.10),transparent 40%),
      linear-gradient(rgba(12,25,37,.80),rgba(12,25,37,.92));
  }
  .hero-character{display:none}
  .hero-content{min-height:690px;justify-content:flex-start;padding-top:63px}
  .year-badge{min-height:36px;padding:6px 18px;margin-bottom:20px;font-size:20px;border-radius:7px}
  .hero h1{width:100%;font-size:54px;line-height:1.02;margin-bottom:25px}
  .hero-actions{display:grid;gap:17px;width:100%}
  .primary-button{width:100%;min-width:0;min-height:60px;font-size:21px;border-radius:8px}
  .online strong{font-size:23px}.online small{font-size:13px}
  .section{padding:55px 0 42px}
  .section-heading{min-height:85px;margin-bottom:28px}
  .section-heading .ghost{font-size:43px;white-space:normal}
  .section-heading h2{margin-top:35px;font-size:17px}
  .section-heading h2::before,.section-heading h2::after{width:62px;height:1px}
  .section-heading h2::before{right:calc(100% + 8px)}
  .section-heading h2::after{left:calc(100% + 8px)}
  .section-heading .ticks{width:42px;height:6px}
  .feature-grid,.requirements-grid,.rules-grid{
    display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:9px;padding:0 6px 10px;
    scrollbar-width:none
  }
  .feature-grid::-webkit-scrollbar,.requirements-grid::-webkit-scrollbar,.rules-grid::-webkit-scrollbar{display:none}
  .feature-card,.requirement-card,.rule-card{
    flex:0 0 calc(100% - 18px);
    min-height:0;
    padding:28px 25px 35px;
    scroll-snap-align:center
  }
  .feature-card h3,.requirement-card h3,.rule-card h3{font-size:18px;margin-bottom:15px}
  .feature-card p,.requirement-card p{font-size:14px}
  .promo-card{min-width:calc(100% - 18px);grid-template-columns:1fr;padding:26px 19px}
  .promo-code strong{font-size:18px}
  .promo-content{display:none}
  .screenshot-card{flex-basis:calc(100% - 16px)}
  .faq-grid{display:grid;grid-template-columns:1fr;gap:10px}
  .faq-item:nth-child(3){grid-column:auto;width:100%}
  .faq-question{padding:17px 16px 10px;font-size:14px}
  .faq-answer{padding-inline:16px;font-size:13px}
  .faq-item.open .faq-answer{padding:5px 16px 17px}
  .review-card{flex-basis:calc(70% - 9px);min-height:250px;padding:26px 18px}
  .review-card h3{font-size:15px;margin-bottom:18px}.review-card p{font-size:12px}
  .site-footer{min-height:390px}
  .footer-inner{min-height:390px;display:grid;align-content:center;gap:28px}
  .footer-brand{display:grid;grid-template-columns:1fr}
  .footer-logo img{width:105px}
  .footer-links{display:grid;gap:5px}
  .social-links{grid-column:auto}
  .legal{text-align:left;font-size:10px;max-width:100%}
  .inner-hero{min-height:410px}
  .inner-hero h1{font-size:48px}
  .inner-hero p{font-size:16px}
  .form-layout,.download-panel{grid-template-columns:1fr}
  .form-card{padding:24px 18px}
  .summary-card{position:static;padding:24px 18px}
  .field-grid{grid-template-columns:1fr}
  .quick-amounts{grid-template-columns:repeat(2,1fr)}
  .download-card{padding:28px 20px}
  .download-card h2{font-size:31px}
}


/* v2: image quality, contained mobile carousels, functional carousel controls */
html,body{max-width:100%;overflow-x:hidden;overscroll-behavior-x:none}
.section{overflow:hidden}
.brand img{width:auto;height:34px;max-width:180px;object-fit:contain}
.footer-logo img{width:auto;height:58px;max-width:220px}
.hero-character{
  right:0;
  bottom:0;
  width:auto;
  height:100%;
  max-width:65vw;
  max-height:none;
  object-fit:contain;
  object-position:right bottom;
}
.horizontal-track{
  width:100%;
  max-width:100%;
  min-width:0;
  margin:0;
  padding-inline:0;
  overscroll-behavior-x:contain;
  overscroll-behavior-inline:contain;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-padding-inline:0;
  touch-action:pan-x pan-y;
}
.horizontal-track > *{
  flex-shrink:0;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.slider-controls button:disabled{opacity:.4;cursor:default}
@media(min-width:2560px){
  .brand img{height:46px;max-width:240px}
  .hero-character{max-width:67vw}
}
@media(min-width:3800px){
  .brand img{height:64px;max-width:340px}
  .hero-character{max-width:68vw}
}
@media(max-width:760px){
  .wide-container{width:calc(100% - 32px);max-width:440px;min-width:0;overflow:hidden}
  .brand img{height:25px;width:auto;max-width:108px}
  .footer-logo img{height:38px;width:auto;max-width:145px}
  .section,.page-main,.wide-container{max-width:100%}
  .horizontal-track{gap:0;overflow-x:auto;overflow-y:hidden}
  .promo-card,
  .screenshot-card,
  .review-card{
    flex:0 0 100%;
    width:100%;
    min-width:100%;
    max-width:100%;
    margin:0;
  }
  .feature-grid,.requirements-grid,.rules-grid{
    width:100%;
    max-width:100%;
    padding:0;
    gap:0;
    overscroll-behavior-x:contain;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    scroll-padding-inline:0;
  }
  .feature-card,.requirement-card,.rule-card{
    flex:0 0 100%;
    width:100%;
    min-width:100%;
    max-width:100%;
    margin:0;
    scroll-snap-stop:always;
  }
  .slider-controls{position:relative;z-index:4}
}


/* v6: supplied high-resolution transparent character */
.hero-character{
  right:-1.5%;
  bottom:0;
  width:auto;
  height:96%;
  max-width:68vw;
  max-height:none;
  object-fit:contain;
  object-position:right bottom;
  filter:none;
}

/* Small custom payment confirmation checkbox */
.checkline{
  display:grid;
  grid-template-columns:24px minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
  cursor:pointer;
}
.checkline input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  width:22px;
  height:22px;
  min-width:22px;
  min-height:22px;
  margin:0;
  padding:0;
  border:1px solid rgba(0,110,255,.72);
  border-radius:5px;
  background:#121922;
  box-shadow:none;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.checkline input[type="checkbox"]:hover{
  border-color:#4f9bff;
}
.checkline input[type="checkbox"]:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(0,110,255,.18);
}
.checkline input[type="checkbox"]:checked{
  border-color:var(--blue);
  background-color:var(--blue);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m4 10 4 4 8-9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;
}

/* Only Telegram remains in the footer */
.social-links{
  grid-column:2;
  display:flex;
  gap:14px;
}
.social-links .telegram-link{
  width:34px;
  height:34px;
  padding:7px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(0,136,204,.12);
  border:1px solid rgba(0,136,204,.55);
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.social-links .telegram-link:hover{
  transform:translateY(-2px);
  background:#0088cc;
  border-color:#0088cc;
}
.social-links .telegram-link svg{
  display:block;
  width:100%;
  height:100%;
  fill:currentColor;
}

@media(min-width:2560px){
  .hero-character{height:97%;max-width:70vw}
  .checkline{grid-template-columns:30px minmax(0,1fr);font-size:18px}
  .checkline input[type="checkbox"]{width:28px;height:28px;min-width:28px;min-height:28px;background-size:20px}
}
@media(min-width:3800px){
  .hero-character{height:98%;max-width:72vw}
  .checkline{grid-template-columns:38px minmax(0,1fr);font-size:24px}
  .checkline input[type="checkbox"]{width:34px;height:34px;min-width:34px;min-height:34px;background-size:25px}
}
@media(max-width:760px){
  .hero-character{display:none}
  .checkline{
    grid-template-columns:22px minmax(0,1fr);
    gap:10px;
    align-items:start;
    font-size:13px;
  }
  .checkline input[type="checkbox"]{
    width:20px;
    height:20px;
    min-width:20px;
    min-height:20px;
    border-radius:4px;
    background-size:15px;
  }
  .social-links{grid-column:auto}
}


/* v7: separate high-quality header/footer logos */
.site-header .brand img{
  display:block;
  width:auto;
  height:30px;
  max-width:155px;
  object-fit:contain;
}
.footer-logo img{
  display:block;
  width:auto;
  height:64px;
  max-width:270px;
  object-fit:contain;
}

/* Uploaded screenshots */
.screenshot-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.screenshot-card.has-image::before{
  display:none;
}
.screenshot-card.has-image span{
  padding:6px 10px;
  border-radius:7px;
  background:rgba(15,20,27,.72);
  backdrop-filter:blur(6px);
  color:#fff;
}

@media(min-width:2560px){
  .site-header .brand img{height:42px;max-width:220px}
  .footer-logo img{height:86px;max-width:360px}
}
@media(min-width:3800px){
  .site-header .brand img{height:58px;max-width:300px}
  .footer-logo img{height:116px;max-width:490px}
}
@media(max-width:760px){
  .site-header .brand img{height:22px;max-width:108px}
  .footer-logo img{height:45px;max-width:190px}
}


/* v8: project channel/support buttons */
.footer-actions{
  grid-column:2;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer-action{
  min-width:190px;
  min-height:46px;
  padding:10px 13px 10px 16px;
  border:1px solid rgba(0,110,255,.38);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#d9e9ff;
  background:rgba(0,110,255,.08);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.footer-action:hover{
  transform:translateY(-2px);
  border-color:rgba(0,110,255,.9);
  background:rgba(0,110,255,.22);
}
.footer-action svg{
  flex:none;
  width:25px;
  height:25px;
  fill:currentColor;
}
.telegram-action{color:#65c6ff}
.support-action{color:#a8c9ff}

@media(min-width:2560px){
  .footer-action{min-width:250px;min-height:60px;padding:14px 18px;font-size:19px}
  .footer-action svg{width:32px;height:32px}
}
@media(min-width:3800px){
  .footer-action{min-width:350px;min-height:82px;padding:18px 25px;font-size:26px;border-radius:15px}
  .footer-action svg{width:44px;height:44px}
}
@media(max-width:760px){
  .footer-actions{grid-column:auto;display:grid;grid-template-columns:1fr;width:100%}
  .footer-action{width:100%;min-width:0}
}


/* v9: corrected footer action layout and online colors */
.online strong{
  display:flex;
  align-items:baseline;
  gap:0;
  color:#fff;
}
.online strong .online-current{
  color:var(--blue);
}
.online strong .online-separator,
.online strong .online-slots{
  color:#fff;
}

/* Override the old small circular social link rules */
.footer-actions.social-links{
  grid-column:2;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.footer-actions.social-links .footer-action{
  width:auto;
  height:auto;
  min-width:190px;
  min-height:48px;
  padding:11px 14px 11px 17px;
  border:1px solid rgba(0,110,255,.38);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#d9e9ff;
  background:rgba(0,110,255,.08);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1.1;
}
.footer-actions.social-links .footer-action span{
  display:block;
  white-space:nowrap;
}
.footer-actions.social-links .footer-action svg{
  display:block;
  flex:0 0 auto;
  width:24px;
  height:24px;
  fill:currentColor;
}
.footer-actions.social-links .footer-action:hover{
  transform:translateY(-2px);
  border-color:rgba(0,110,255,.9);
  background:rgba(0,110,255,.22);
}
.footer-actions.social-links .telegram-action{
  color:#65c6ff;
}
.footer-actions.social-links .support-action{
  color:#a8c9ff;
}

@media(min-width:2560px){
  .footer-actions.social-links .footer-action{
    min-width:250px;
    min-height:62px;
    padding:14px 18px;
    font-size:19px;
    border-radius:13px;
  }
  .footer-actions.social-links .footer-action svg{
    width:32px;
    height:32px;
  }
}

@media(min-width:3800px){
  .footer-actions.social-links .footer-action{
    min-width:350px;
    min-height:84px;
    padding:18px 25px;
    font-size:26px;
    border-radius:16px;
  }
  .footer-actions.social-links .footer-action svg{
    width:44px;
    height:44px;
  }
}

@media(max-width:760px){
  .footer-actions.social-links{
    grid-column:auto;
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    gap:10px;
  }
  .footer-actions.social-links .footer-action{
    width:100%;
    min-width:0;
  }
}


/* v10: strict online colors, isolated footer actions, sharper header logo */
.site-header .brand img{
  display:block;
  width:auto;
  height:31px;
  max-width:165px;
  object-fit:contain;
  image-rendering:auto;
}

.online .online-number,
.online strong.online-number{
  display:flex;
  align-items:baseline;
  gap:0;
  color:#fff;
}
.online .online-current{
  color:#087dff !important;
}
.online .online-separator,
.online .online-slots{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

/* This wrapper intentionally does not use .social-links. */
.footer-actions{
  grid-column:2;
  display:grid;
  grid-template-columns:repeat(2,minmax(190px,220px));
  gap:12px;
  align-items:center;
}
.footer-actions .footer-action{
  width:100%;
  min-width:0;
  height:52px;
  padding:7px 8px 7px 17px;
  border:1px solid rgba(0,110,255,.42);
  border-radius:12px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 38px;
  align-items:center;
  gap:12px;
  color:#e5efff;
  background:linear-gradient(
    135deg,
    rgba(0,110,255,.16),
    rgba(0,110,255,.055)
  );
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}
.footer-actions .footer-action:hover{
  transform:translateY(-2px);
  border-color:rgba(0,126,255,.95);
  background:linear-gradient(
    135deg,
    rgba(0,110,255,.28),
    rgba(0,110,255,.10)
  );
}
.footer-action-text{
  min-width:0;
  white-space:nowrap;
}
.footer-action-icon{
  width:36px;
  height:36px;
  border-radius:9px;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(0,110,255,.28);
}
.telegram-action .footer-action-icon{
  background:rgba(0,136,204,.35);
}
.support-action .footer-action-icon{
  background:rgba(83,117,255,.30);
}
.footer-action-icon svg{
  display:block;
  width:21px;
  height:21px;
  fill:currentColor;
}

@media(min-width:2560px){
  .site-header .brand img{
    height:43px;
    max-width:225px;
  }
  .footer-actions{
    grid-template-columns:repeat(2,minmax(250px,300px));
    gap:16px;
  }
  .footer-actions .footer-action{
    height:66px;
    padding-left:22px;
    grid-template-columns:minmax(0,1fr) 48px;
    font-size:19px;
    border-radius:15px;
  }
  .footer-action-icon{
    width:46px;
    height:46px;
    border-radius:12px;
  }
  .footer-action-icon svg{
    width:28px;
    height:28px;
  }
}

@media(min-width:3800px){
  .site-header .brand img{
    height:59px;
    max-width:310px;
  }
  .footer-actions{
    grid-template-columns:repeat(2,minmax(350px,420px));
    gap:22px;
  }
  .footer-actions .footer-action{
    height:88px;
    padding-left:30px;
    grid-template-columns:minmax(0,1fr) 64px;
    font-size:27px;
    border-radius:19px;
  }
  .footer-action-icon{
    width:62px;
    height:62px;
    border-radius:16px;
  }
  .footer-action-icon svg{
    width:38px;
    height:38px;
  }
}

@media(max-width:760px){
  .site-header .brand img{
    height:23px;
    max-width:112px;
  }
  .footer-actions{
    grid-column:auto;
    grid-template-columns:1fr;
    width:100%;
    gap:10px;
  }
  .footer-actions .footer-action{
    height:50px;
  }
}


/* v11: move footer contact buttons closer to the project logo */
.footer-brand .footer-actions{
  grid-column:1 / -1 !important;
  justify-content:start;
  margin-left:90px !important;
}

@media(min-width:2560px){
  .footer-brand .footer-actions{
    margin-left:125px !important;
  }
}

@media(min-width:3800px){
  .footer-brand .footer-actions{
    margin-left:175px !important;
  }
}

@media(max-width:760px){
  .footer-brand .footer-actions{
    grid-column:auto !important;
    margin-left:0 !important;
  }
}


/* v12: clean responsive separation — desktop and mobile never overlap */

/* Default desktop state for any legacy separate-layout elements. */
.mobile-shot,
.mobile-version,
.phone-version,
.mobile-only,
[data-layout="mobile"]{
  display:none !important;
}

.desktop-shot,
.desktop-version,
.pc-version,
.desktop-only,
[data-layout="desktop"]{
  display:block;
}

/* Desktop menu is never mixed with the mobile menu. */
@media (min-width:1025px) and (hover:hover){
  .desktop-nav{
    display:flex !important;
  }

  .menu-toggle,
  .mobile-menu,
  .mobile-shot,
  .mobile-version,
  .phone-version,
  .mobile-only,
  [data-layout="mobile"]{
    display:none !important;
  }
}

/*
| Treat normal phones, tablets and touch devices as mobile layout.
| The pointer rule also covers phones that report an unusually large width.
*/
@media (max-width:1024px), (hover:none) and (pointer:coarse){
  html,
  body{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    overflow-x:hidden !important;
  }

  body::after{
    display:none !important;
  }

  .desktop-nav,
  .desktop-shot,
  .desktop-version,
  .pc-version,
  .desktop-only,
  [data-layout="desktop"]{
    display:none !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }

  .mobile-shot,
  .mobile-version,
  .phone-version,
  .mobile-only,
  [data-layout="mobile"]{
    display:block !important;
    visibility:visible !important;
  }

  .site-header{
    height:56px !important;
  }

  .header-inner{
    width:calc(100% - 28px) !important;
    max-width:none !important;
    height:56px !important;
    overflow:visible !important;
  }

  .site-header .brand{
    position:relative !important;
    z-index:2 !important;
  }

  .site-header .brand img{
    width:auto !important;
    height:25px !important;
    max-width:120px !important;
  }

  .menu-toggle{
    display:grid !important;
    place-content:center !important;
    width:44px !important;
    height:42px !important;
    padding:7px !important;
    position:relative !important;
    z-index:205 !important;
  }

  .mobile-menu{
    display:none !important;
    position:fixed !important;
    top:64px !important;
    left:14px !important;
    right:14px !important;
    width:auto !important;
    max-width:none !important;
    max-height:calc(100dvh - 78px) !important;
    overflow-y:auto !important;
    z-index:200 !important;
  }

  .mobile-menu.open{
    display:grid !important;
  }

  .wide-container{
    width:calc(100% - 28px) !important;
    max-width:520px !important;
    min-width:0 !important;
    margin-inline:auto !important;
    overflow:visible !important;
  }

  .hero{
    width:100% !important;
    min-height:650px !important;
    overflow:hidden !important;
  }

  .hero-character{
    display:none !important;
  }

  .hero-content{
    min-height:650px !important;
    width:calc(100% - 28px) !important;
    max-width:520px !important;
    padding-top:62px !important;
  }

  .hero h1{
    width:100% !important;
    max-width:100% !important;
    font-size:clamp(43px,13vw,60px) !important;
  }

  .hero-actions{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .primary-button{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
  }

  .page-main,
  .section,
  .inner-hero,
  .site-footer{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
  }

  .inner-hero{
    min-height:390px !important;
  }

  .inner-hero .wide-container{
    padding-block:40px !important;
  }

  .inner-hero h1{
    width:100% !important;
    max-width:100% !important;
    font-size:clamp(38px,11vw,54px) !important;
    overflow-wrap:anywhere !important;
  }

  .form-layout,
  .download-panel,
  .faq-grid{
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
  }

  .form-card,
  .summary-card,
  .download-card,
  .status-card{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .field-grid{
    grid-template-columns:minmax(0,1fr) !important;
  }

  .horizontal-track,
  .feature-grid,
  .requirements-grid,
  .rules-grid{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    overscroll-behavior-x:contain !important;
    scroll-snap-type:x mandatory !important;
    touch-action:pan-x pan-y !important;
  }

  .horizontal-track > *,
  .feature-grid > *,
  .requirements-grid > *,
  .rules-grid > *{
    flex:0 0 100% !important;
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    scroll-snap-align:start !important;
    scroll-snap-stop:always !important;
  }

  .footer-inner{
    width:calc(100% - 28px) !important;
    max-width:520px !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:26px !important;
    padding-block:44px !important;
  }

  .footer-brand{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .footer-actions{
    width:100% !important;
    grid-column:auto !important;
    grid-template-columns:1fr !important;
    margin-left:0 !important;
  }

  .legal{
    width:100% !important;
    max-width:100% !important;
    text-align:left !important;
  }
}

/* JS applies these classes too, preventing overlap during rotation/resizing. */
body.mobile-layout .desktop-nav,
body.mobile-layout .desktop-shot,
body.mobile-layout .desktop-version,
body.mobile-layout .pc-version,
body.mobile-layout .desktop-only,
body.mobile-layout [data-layout="desktop"]{
  display:none !important;
}

body.mobile-layout .mobile-shot,
body.mobile-layout .mobile-version,
body.mobile-layout .phone-version,
body.mobile-layout .mobile-only,
body.mobile-layout [data-layout="mobile"]{
  display:block !important;
}

body.desktop-layout .mobile-shot,
body.desktop-layout .mobile-version,
body.desktop-layout .phone-version,
body.desktop-layout .mobile-only,
body.desktop-layout [data-layout="mobile"]{
  display:none !important;
}


/* v13: remove old screenshot backgrounds that duplicated the website UI */
body::before{
  background:
    radial-gradient(circle at 18% 12%,rgba(0,110,255,.10),transparent 32%),
    radial-gradient(circle at 82% 38%,rgba(0,75,170,.09),transparent 34%),
    linear-gradient(180deg,#111820 0%,#101720 52%,#14171b 100%) !important;
}

.hero{
  background:
    radial-gradient(circle at 75% 34%,rgba(0,110,255,.18),transparent 36%),
    radial-gradient(circle at 20% 58%,rgba(0,65,145,.10),transparent 42%),
    linear-gradient(135deg,#0d1b27 0%,#102638 48%,#101923 100%) !important;
}

.hero::before{
  background:
    linear-gradient(
      90deg,
      rgba(8,18,27,.82) 0%,
      rgba(9,22,33,.58) 47%,
      rgba(9,22,33,.18) 100%
    ) !important;
}

.page-main{
  background:
    radial-gradient(circle at 18% 7%,rgba(0,110,255,.08),transparent 31%),
    radial-gradient(circle at 84% 30%,rgba(0,72,165,.07),transparent 35%),
    linear-gradient(180deg,#18191b 0%,#121820 48%,#17191b 100%) !important;
}

.inner-hero{
  background:
    radial-gradient(circle at 78% 40%,rgba(0,110,255,.16),transparent 38%),
    linear-gradient(135deg,#0d1b27 0%,#112638 54%,#101923 100%) !important;
}

/* Remove any accidental legacy image mockup layer. */
.design-shot,
.desktop-shot,
.mobile-shot,
.site-preview,
.mockup-background{
  display:none !important;
}

/* Mobile gets the same clean background without embedded desktop text. */
@media (max-width:1024px), (hover:none) and (pointer:coarse){
  .hero{
    background:
      radial-gradient(circle at 76% 22%,rgba(0,110,255,.16),transparent 40%),
      linear-gradient(160deg,#0d1b27 0%,#102536 48%,#0d1720 100%) !important;
  }

  .page-main{
    background:
      radial-gradient(circle at 22% 5%,rgba(0,110,255,.08),transparent 30%),
      linear-gradient(180deg,#18191b 0%,#111820 52%,#17191b 100%) !important;
  }
}


/* v14: player verification and page transitions */
body{
  opacity:0;
  transform:translateY(5px);
  transition:
    opacity .22s ease,
    transform .22s ease;
}
body.page-ready{
  opacity:1;
  transform:none;
}
body.page-leaving{
  opacity:0;
  transform:translateY(4px);
  pointer-events:none;
}

.player-input-wrap{
  position:relative;
}
.player-input-wrap input{
  padding-right:52px !important;
}
.player-check-icon{
  position:absolute;
  top:50%;
  right:16px;
  width:22px;
  height:22px;
  transform:translateY(-50%);
  display:none;
}
.player-check-message{
  min-height:20px;
  margin:1px 0 0;
  color:#8995a3;
  font-size:13px;
  line-height:1.35;
}
.player-field.is-loading input{
  border-color:rgba(0,110,255,.85);
}
.player-field.is-loading .player-check-icon{
  display:block;
  border:2px solid rgba(255,255,255,.22);
  border-top-color:#1684ff;
  border-radius:50%;
  animation:playerSpinner .72s linear infinite;
}
.player-field.is-loading .player-check-message{
  color:#8ebeff;
}
.player-field.is-valid input{
  border-color:#38d878 !important;
  box-shadow:0 0 0 3px rgba(56,216,120,.10);
}
.player-field.is-valid .player-check-icon{
  display:block;
  border-radius:50%;
  background:#38d878;
}
.player-field.is-valid .player-check-icon::before{
  content:"";
  position:absolute;
  left:6px;
  top:4px;
  width:7px;
  height:11px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
}
.player-field.is-valid .player-check-message{
  color:#70e9a3;
}
.player-field.is-invalid input{
  border-color:#ff5c66 !important;
  box-shadow:0 0 0 3px rgba(255,92,102,.09);
}
.player-field.is-invalid .player-check-icon{
  display:block;
}
.player-field.is-invalid .player-check-icon::before,
.player-field.is-invalid .player-check-icon::after{
  content:"";
  position:absolute;
  left:10px;
  top:2px;
  width:2px;
  height:18px;
  border-radius:2px;
  background:#ff626d;
}
.player-field.is-invalid .player-check-icon::before{
  transform:rotate(45deg);
}
.player-field.is-invalid .player-check-icon::after{
  transform:rotate(-45deg);
}
.player-field.is-invalid .player-check-message{
  color:#ff8a92;
}
.cta-button:disabled{
  opacity:.46;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:none !important;
}

@keyframes playerSpinner{
  to{transform:translateY(-50%) rotate(360deg)}
}

@media(prefers-reduced-motion:reduce){
  body{
    transition:none;
  }
  .player-field.is-loading .player-check-icon{
    animation-duration:1.4s;
  }
}


/* v19: Telegram support and one centered promo */
.promo-track.single-promo{
  display:flex !important;
  justify-content:center !important;
  overflow:visible !important;
  gap:0 !important;
}
.promo-track.single-promo .promo-card{
  width:min(100%,620px) !important;
  min-width:0 !important;
  flex:0 1 620px !important;
}
.support-telegram-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:18px;
  min-height:44px;
  padding:11px 16px;
  border:1px solid rgba(0,126,255,.58);
  border-radius:10px;
  color:#fff;
  background:rgba(0,110,255,.18);
  text-decoration:none;
  font-weight:800;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.support-telegram-button:hover{
  transform:translateY(-2px);
  border-color:#1684ff;
  background:rgba(0,110,255,.30);
}
.support-telegram-button svg{
  width:22px;
  height:22px;
  fill:currentColor;
}
@media(max-width:760px){
  .promo-track.single-promo .promo-card{
    width:100% !important;
    flex-basis:100% !important;
  }
  .support-telegram-button{
    width:100%;
  }
}


/* v21: real promo centering and even FAQ text */
.promo-single-track{
  width:100% !important;
  display:grid !important;
  grid-template-columns:minmax(0,620px) !important;
  justify-content:center !important;
  justify-items:stretch !important;
  gap:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  overflow:visible !important;
  scroll-snap-type:none !important;
}

.promo-single-track .promo-card{
  width:100% !important;
  max-width:620px !important;
  min-width:0 !important;
  margin:0 auto !important;
  flex:none !important;
  transform:none !important;
}

/* FAQ: одинаковое расположение текста во всех карточках */
.faq-question{
  min-height:78px !important;
  padding:20px 28px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  line-height:1.2 !important;
}

.faq-answer{
  text-align:center !important;
  padding-left:28px !important;
  padding-right:28px !important;
}

.faq-item.open .faq-answer{
  padding:8px 28px 28px !important;
}

@media(max-width:760px){
  .promo-single-track{
    grid-template-columns:minmax(0,1fr) !important;
  }

  .promo-single-track .promo-card{
    max-width:100% !important;
  }

  .faq-question{
    min-height:62px !important;
    padding:16px !important;
  }

  .faq-answer,
  .faq-item.open .faq-answer{
    padding-left:16px !important;
    padding-right:16px !important;
  }
}


/* v22: restore live-online markup and preserve centered promo */
.online-number{
  display:flex !important;
  align-items:baseline !important;
  gap:0 !important;
}
.online-current{
  color:#087dff !important;
}
.online-separator,
.online-slots{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

.promo-single-track{
  width:100% !important;
  max-width:100% !important;
  margin-inline:auto !important;
  display:grid !important;
  grid-template-columns:minmax(0,620px) !important;
  justify-content:center !important;
  justify-items:stretch !important;
  overflow:visible !important;
}
.promo-single-track .promo-card{
  width:100% !important;
  max-width:620px !important;
  min-width:0 !important;
  margin-inline:auto !important;
}

@media(max-width:760px){
  .promo-single-track{
    grid-template-columns:minmax(0,1fr) !important;
  }
}


/* v23: hide anti-bot honeypot field */
.website-field{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.website-field input,
.website-field label{
  display:none !important;
}


/* v24: exact alignment of nickname and email inputs */
.field-grid{
  align-items:start !important;
}

.field-grid > .field{
  align-self:start !important;
  align-content:start !important;
  grid-auto-rows:max-content !important;
}

.field-grid > .field > label{
  min-height:20px !important;
  margin:0 !important;
  line-height:20px !important;
}

.field-grid .player-input-wrap,
.field-grid > .field > input[type="email"]{
  margin:0 !important;
}

/* Подсказка остаётся под ником и не двигает соседнее поле. */
.player-check-message{
  margin:1px 0 0 !important;
}


/* v25: confirmation checkbox text alignment */
.checkline{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  width:100% !important;
  margin:0 !important;
  line-height:1.35 !important;
}

.checkline input[type="checkbox"]{
  flex:0 0 auto !important;
  margin:0 !important;
  align-self:center !important;
}

.checkline span{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
}


/* v26: reviews position and larger footer navigation */

/* Сдвигаем только блок отзывов немного правее. */
.reviews-section .reviews-track{
  width:calc(100% - 44px) !important;
  margin-left:44px !important;
  margin-right:0 !important;
}

.reviews-section .slider-controls{
  transform:translateX(22px);
}

/* Увеличиваем навигацию в подвале. */
.footer-links{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
  flex-wrap:wrap !important;
}

.footer-links a{
  display:inline-flex !important;
  align-items:center !important;
  min-height:34px !important;
  padding:6px 4px !important;
  color:#a8b0ba !important;
  font-size:15px !important;
  font-weight:600 !important;
  line-height:1 !important;
  text-decoration:none !important;
  transition:color .18s ease, transform .18s ease !important;
}

.footer-links a:hover{
  color:#ffffff !important;
  transform:translateY(-1px);
}

@media(min-width:2560px){
  .reviews-section .reviews-track{
    width:calc(100% - 64px) !important;
    margin-left:64px !important;
  }

  .reviews-section .slider-controls{
    transform:translateX(32px);
  }

  .footer-links{
    gap:26px !important;
  }

  .footer-links a{
    min-height:44px !important;
    font-size:20px !important;
    padding:9px 6px !important;
  }
}

@media(max-width:1024px){
  .reviews-section .reviews-track{
    width:100% !important;
    margin-left:0 !important;
  }

  .reviews-section .slider-controls{
    transform:none !important;
  }
}

@media(max-width:760px){
  .footer-links{
    gap:8px !important;
  }

  .footer-links a{
    min-height:30px !important;
    font-size:13px !important;
    padding:5px 2px !important;
  }
}


/* v27: move reviews farther right and raise footer buttons */
@media(min-width:1025px){
  .reviews-section .reviews-track{
    width:calc(100% - 76px) !important;
    margin-left:76px !important;
    margin-right:0 !important;
  }

  .reviews-section .slider-controls{
    transform:translateX(38px) !important;
  }

  .footer-brand .footer-actions{
    transform:translateY(-12px) !important;
  }
}

@media(min-width:2560px){
  .reviews-section .reviews-track{
    width:calc(100% - 104px) !important;
    margin-left:104px !important;
  }

  .reviews-section .slider-controls{
    transform:translateX(52px) !important;
  }

  .footer-brand .footer-actions{
    transform:translateY(-16px) !important;
  }
}

@media(max-width:1024px){
  .footer-brand .footer-actions{
    transform:none !important;
  }
}


/* v28: noticeable reviews shift and tighter footer layout */
@media(min-width:1025px){
  /*
  | Не меняем ширину карточек. Сдвигаем весь ряд целиком,
  | поэтому изменение видно независимо от flex-расчётов.
  */
  .reviews-section .reviews-track{
    width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    transform:translateX(72px) !important;
  }

  .reviews-section .slider-controls{
    transform:translateX(72px) !important;
  }

  /* Поднимаем кнопки ближе к логотипу и меню. */
  .footer-brand{
    row-gap:6px !important;
  }

  .footer-brand .footer-actions{
    position:relative !important;
    top:-18px !important;
    transform:none !important;
  }
}

@media(min-width:2560px){
  .reviews-section .reviews-track,
  .reviews-section .slider-controls{
    transform:translateX(105px) !important;
  }

  .footer-brand .footer-actions{
    top:-24px !important;
  }
}

@media(max-width:1024px){
  .reviews-section .reviews-track,
  .reviews-section .slider-controls{
    transform:none !important;
  }

  .footer-brand .footer-actions{
    position:static !important;
    top:auto !important;
  }
}


/* v29: exact reviews position and one-line footer */
@media(min-width:1025px){
  /*
  | Карточки и управление находятся в одном контейнере.
  | Поэтому точки всегда строго по центру под карточками.
  */
  .reviews-section .reviews-carousel{
    position:relative !important;
    left:105px !important;
    width:calc(100% - 105px) !important;
    margin:0 !important;
  }

  .reviews-section .reviews-track{
    width:100% !important;
    margin:0 !important;
    transform:none !important;
    justify-content:center !important;
    overflow-x:auto !important;
  }

  .reviews-section .reviews-controls{
    width:100% !important;
    margin:18px 0 0 !important;
    transform:none !important;
    justify-content:center !important;
  }

  /*
  | Логотип, меню и кнопки стоят на одной линии.
  */
  .footer-brand{
    display:flex !important;
    grid-template-columns:none !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    gap:22px !important;
  }

  .footer-logo{
    flex:0 0 auto !important;
  }

  .footer-links{
    flex:0 0 auto !important;
    gap:15px !important;
  }

  .footer-actions,
  .footer-brand .footer-actions{
    flex:0 0 auto !important;
    grid-column:auto !important;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(160px,180px)) !important;
    gap:10px !important;
    margin:0 !important;
    position:static !important;
    top:auto !important;
    left:auto !important;
    transform:none !important;
  }

  .footer-actions .footer-action{
    height:48px !important;
    padding-left:14px !important;
    grid-template-columns:minmax(0,1fr) 34px !important;
    font-size:13px !important;
  }

  .footer-action-icon{
    width:32px !important;
    height:32px !important;
  }

  .footer-action-icon svg{
    width:19px !important;
    height:19px !important;
  }
}

@media(min-width:2560px){
  .reviews-section .reviews-carousel{
    left:145px !important;
    width:calc(100% - 145px) !important;
  }

  .footer-brand{
    gap:30px !important;
  }

  .footer-links{
    gap:22px !important;
  }

  .footer-actions,
  .footer-brand .footer-actions{
    grid-template-columns:repeat(2,minmax(220px,250px)) !important;
    gap:15px !important;
  }

  .footer-actions .footer-action{
    height:62px !important;
    padding-left:20px !important;
    grid-template-columns:minmax(0,1fr) 44px !important;
    font-size:18px !important;
  }

  .footer-action-icon{
    width:42px !important;
    height:42px !important;
  }

  .footer-action-icon svg{
    width:25px !important;
    height:25px !important;
  }
}

@media(max-width:1024px){
  .reviews-section .reviews-carousel{
    position:static !important;
    left:auto !important;
    width:100% !important;
  }

  .reviews-section .reviews-track,
  .reviews-section .reviews-controls{
    transform:none !important;
  }
}


/* v33: interactive screenshot gallery */
.screenshot-card{
  appearance:none !important;
  -webkit-appearance:none !important;
  display:block !important;
  padding:0 !important;
  text-align:left !important;
  color:inherit !important;
  font:inherit !important;
  cursor:default;
  outline:none;
  transform:translateZ(0);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.screenshot-card.has-image{
  cursor:zoom-in;
  border-color:rgba(0,110,255,.24) !important;
  box-shadow:0 16px 38px rgba(0,0,0,.18);
}

.screenshot-card.has-image::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(3,10,18,.78) 100%
    );
  opacity:.68;
  transition:opacity .24s ease;
}

.screenshot-card.has-image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:
    transform .42s cubic-bezier(.2,.7,.2,1),
    filter .28s ease;
}

.screenshot-card .screenshot-title{
  position:absolute !important;
  left:16px !important;
  right:54px !important;
  bottom:14px !important;
  z-index:3 !important;
  color:#fff !important;
  font-weight:800 !important;
  text-shadow:0 2px 10px rgba(0,0,0,.72);
}

.screenshot-open-icon{
  position:absolute !important;
  right:14px !important;
  bottom:12px !important;
  left:auto !important;
  z-index:4 !important;
  width:34px !important;
  height:34px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:50% !important;
  color:#fff !important;
  background:rgba(0,110,255,.78) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow:0 8px 22px rgba(0,70,180,.34);
  opacity:0;
  transform:translateY(8px) scale(.88);
  transition:
    opacity .22s ease,
    transform .22s ease,
    background .22s ease;
}

.screenshot-open-icon svg{
  width:17px;
  height:17px;
  fill:currentColor;
}

.screenshot-card.has-image:hover,
.screenshot-card.has-image:focus-visible{
  transform:translateY(-5px);
  border-color:rgba(0,126,255,.92) !important;
  box-shadow:
    0 22px 50px rgba(0,0,0,.34),
    0 0 0 3px rgba(0,110,255,.09),
    0 0 34px rgba(0,110,255,.16);
}

.screenshot-card.has-image:hover::after,
.screenshot-card.has-image:focus-visible::after{
  opacity:.9;
}

.screenshot-card.has-image:hover img,
.screenshot-card.has-image:focus-visible img{
  transform:scale(1.055);
  filter:saturate(1.08) brightness(1.04);
}

.screenshot-card.has-image:hover .screenshot-open-icon,
.screenshot-card.has-image:focus-visible .screenshot-open-icon{
  opacity:1;
  transform:none;
}

.screenshot-card.is-empty{
  opacity:.64;
}

/* Lightbox */
body.screenshot-lightbox-open{
  overflow:hidden !important;
}

.screenshot-lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:38px;
  opacity:0;
  visibility:hidden;
  transition:
    opacity .28s ease,
    visibility .28s ease;
}

.screenshot-lightbox.is-open{
  display:flex;
}

.screenshot-lightbox.is-visible{
  opacity:1;
  visibility:visible;
}

.screenshot-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,8,14,.84);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  opacity:0;
  transition:opacity .28s ease;
}

.screenshot-lightbox.is-visible .screenshot-lightbox-backdrop{
  opacity:1;
}

.screenshot-lightbox-dialog{
  position:relative;
  z-index:2;
  width:min(1500px,92vw);
  height:min(860px,86vh);
  display:grid;
  grid-template-columns:58px minmax(0,1fr) 58px;
  align-items:center;
  gap:16px;
  transform:translateY(18px) scale(.965);
  opacity:0;
  transition:
    transform .32s cubic-bezier(.2,.75,.2,1),
    opacity .26s ease;
}

.screenshot-lightbox.is-visible .screenshot-lightbox-dialog{
  transform:none;
  opacity:1;
}

.screenshot-lightbox-figure{
  position:relative;
  width:100%;
  height:100%;
  min-height:0;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid rgba(0,126,255,.44);
  border-radius:18px;
  background:#080e15;
  box-shadow:
    0 35px 100px rgba(0,0,0,.72),
    0 0 60px rgba(0,86,210,.10);
}

.screenshot-lightbox-figure img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  opacity:0;
  transform:scale(.985);
  user-select:none;
  transition:
    opacity .26s ease,
    transform .34s cubic-bezier(.2,.75,.2,1);
}

.screenshot-lightbox-figure img.is-loaded{
  opacity:1;
  transform:none;
}

.screenshot-lightbox-figure figcaption{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  z-index:2;
  padding:12px 16px;
  border-radius:10px;
  color:#fff;
  font-weight:800;
  background:linear-gradient(
    90deg,
    rgba(4,10,18,.84),
    rgba(4,10,18,.34)
  );
  text-shadow:0 2px 8px rgba(0,0,0,.72);
  pointer-events:none;
}

.screenshot-lightbox-loader{
  position:absolute;
  left:50%;
  top:50%;
  width:42px;
  height:42px;
  margin:-21px 0 0 -21px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.16);
  border-top-color:#087dff;
  opacity:0;
  animation:screenshotLoader .75s linear infinite;
  transition:opacity .18s ease;
}

.screenshot-lightbox.is-loading .screenshot-lightbox-loader{
  opacity:1;
}

.screenshot-lightbox-close,
.screenshot-lightbox-arrow{
  appearance:none;
  -webkit-appearance:none;
  display:grid;
  place-items:center;
  color:#fff;
  border:1px solid rgba(0,126,255,.56);
  background:rgba(13,25,39,.88);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  cursor:pointer;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.screenshot-lightbox-close:hover,
.screenshot-lightbox-arrow:hover,
.screenshot-lightbox-close:focus-visible,
.screenshot-lightbox-arrow:focus-visible{
  transform:scale(1.07);
  background:#087dff;
  border-color:#2f98ff;
  outline:none;
}

.screenshot-lightbox-close{
  position:absolute;
  top:-20px;
  right:58px;
  z-index:5;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:30px;
  line-height:1;
}

.screenshot-lightbox-arrow{
  width:52px;
  height:52px;
  border-radius:50%;
  font-size:32px;
  line-height:1;
}

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

@media(max-width:760px){
  .screenshot-card .screenshot-open-icon{
    opacity:1;
    transform:none;
  }

  .screenshot-lightbox{
    padding:14px;
  }

  .screenshot-lightbox-dialog{
    width:100%;
    height:min(78vh,720px);
    grid-template-columns:42px minmax(0,1fr) 42px;
    gap:7px;
  }

  .screenshot-lightbox-arrow{
    width:40px;
    height:40px;
    font-size:26px;
  }

  .screenshot-lightbox-close{
    top:-51px;
    right:0;
    width:42px;
    height:42px;
    font-size:27px;
  }

  .screenshot-lightbox-figure{
    border-radius:12px;
  }

  .screenshot-lightbox-figure figcaption{
    left:10px;
    right:10px;
    bottom:10px;
    padding:9px 11px;
    font-size:13px;
  }
}

@media(prefers-reduced-motion:reduce){
  .screenshot-card,
  .screenshot-card img,
  .screenshot-open-icon,
  .screenshot-lightbox,
  .screenshot-lightbox-backdrop,
  .screenshot-lightbox-dialog,
  .screenshot-lightbox-figure img{
    transition:none !important;
  }

  .screenshot-lightbox-loader{
    animation-duration:1.4s;
  }
}
