:root{
  --bg:#0d0d0d;
  --bg-elev:#161616;
  --bg-card:#1d1d1d;
  --surface:#222;
  --border:#2c2c2c;
  --text:#ffffff;
  --text-muted:#b8b8b8;
  --text-dim:#7d7d7d;
  --yellow:#ffd900;
  --yellow-hover:#ffcc00;
  --purple:#5b2ec9;
  --purple-light:#7a4ee0;
  --green:#28c76f;
  --red:#ff5b5b;
  --radius:8px;
  --radius-lg:14px;
  --shadow:0 6px 20px rgba(0,0,0,0.35);
  --shadow-yellow:0 6px 20px rgba(255,217,0,0.25);
  --header-h:64px;
  --container:1280px;
  --font: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  min-height:100vh;
  min-height:100dvh;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--yellow);text-decoration:none;transition:color .2s}
a:hover{color:var(--yellow-hover)}
ul,ol{padding-left:1.4rem;margin:1rem 0}
li{margin-bottom:.5rem}
p{margin:0 0 1rem 0}

h1,h2,h3,h4{
  font-family:var(--font);
  font-weight:800;
  line-height:1.25;
  margin:0 0 1rem 0;
  color:var(--text);
  letter-spacing:-.01em;
}
h1{font-size:clamp(1.85rem,4.5vw,2.6rem);font-weight:800}
h2{font-size:clamp(1.45rem,3.2vw,2rem);margin-top:2.2rem;color:#fff}
h3{font-size:clamp(1.15rem,2.4vw,1.35rem);margin-top:1.6rem;color:var(--yellow)}
h4{font-size:1.05rem;margin-top:1.2rem}

/* ===== HEADER ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:#000;
  border-bottom:1px solid var(--border);
  height:var(--header-h);
  display:flex;align-items:center;
  transition:box-shadow .2s;
}
.site-header.scrolled{box-shadow:0 4px 14px rgba(0,0,0,0.55)}
.header-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:18px;
}
.logo{
  display:flex;align-items:center;
  flex-shrink:0;
}
.logo img{height:34px;width:auto}
.nav-desktop{
  display:flex;align-items:center;gap:6px;
  flex:1;
  margin-left:8px;
}
.nav-desktop a{
  color:#fff;font-weight:700;font-size:0.95rem;
  padding:8px 12px;border-radius:6px;
  white-space:nowrap;
  transition:color .15s;
}
.nav-desktop a:hover{color:var(--yellow)}
.nav-desktop a.active{color:var(--yellow)}
.header-cta{
  display:flex;gap:10px;align-items:center;
}
.btn-login{
  background:transparent;
  color:#fff;
  border:1px solid #444;
  padding:9px 18px;
  border-radius:6px;
  font-weight:700;
  font-size:.92rem;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:all .2s;
}
.btn-login:hover{border-color:var(--yellow);color:var(--yellow)}
.btn-register{
  background:var(--yellow);
  color:#000;
  border:none;
  padding:9px 22px;
  border-radius:6px;
  font-weight:800;
  font-size:.92rem;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:all .2s;
  text-transform:none;
}
.btn-register:hover{background:var(--yellow-hover);transform:translateY(-1px);box-shadow:var(--shadow-yellow);color:#000}

.burger{
  display:none;
  background:transparent;
  border:none;
  width:40px;height:40px;
  padding:8px;
  cursor:pointer;
  flex-shrink:0;
  align-items:center;justify-content:center;
}
.burger span{
  display:block;
  width:24px;height:2px;
  background:#fff;
  position:relative;
  transition:all .3s;
}
.burger span::before,
.burger span::after{
  content:'';position:absolute;left:0;
  width:24px;height:2px;background:#fff;
  transition:all .3s;
}
.burger span::before{top:-7px}
.burger span::after{top:7px}
.burger.open span{background:transparent}
.burger.open span::before{top:0;transform:rotate(45deg)}
.burger.open span::after{top:0;transform:rotate(-45deg)}

/* Mobile drawer */
.mobile-drawer{
  position:fixed;
  top:var(--header-h);
  left:0;right:0;
  bottom:0;
  background:#0a0a0a;
  z-index:99;
  transform:translateX(-100%);
  transition:transform .3s ease;
  overflow-y:auto;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-drawer.open{transform:translateX(0)}
.mobile-drawer a{
  color:#fff;
  font-weight:700;
  font-size:1.05rem;
  padding:14px 16px;
  border-radius:8px;
  background:#161616;
  display:block;
  border:1px solid var(--border);
}
.mobile-drawer a:hover{background:#1d1d1d;color:var(--yellow)}
.mobile-drawer .btn-register-mobile{
  background:var(--yellow);
  color:#000;
  text-align:center;
  margin-top:14px;
  font-weight:800;
}
.mobile-drawer .btn-register-mobile:hover{background:var(--yellow-hover);color:#000}

body.menu-open{overflow:hidden}

/* ===== MAIN CONTENT ===== */
main{
  max-width:1080px;
  margin:0 auto;
  padding:30px 18px 60px;
}

.breadcrumbs{
  font-size:.85rem;
  color:var(--text-dim);
  margin-bottom:18px;
}
.breadcrumbs a{color:var(--text-muted)}
.breadcrumbs a:hover{color:var(--yellow)}
.breadcrumbs span{margin:0 8px;color:#444}

/* Hero / quick verdict box */
.hero{
  background:linear-gradient(135deg,rgba(91,46,201,0.12),rgba(255,217,0,0.05));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  margin-bottom:34px;
}
.hero h1{margin-bottom:.6rem}
.hero .subtitle{
  color:var(--text-muted);
  font-size:1.05rem;
  margin-bottom:1rem;
}
.verdict-box{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:24px;
  margin:28px 0;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
}
.verdict-rating{
  text-align:center;
  padding:12px 18px;
  background:linear-gradient(135deg,var(--yellow),#ffae00);
  color:#000;
  border-radius:var(--radius);
  min-width:90px;
}
.verdict-rating .score{font-size:2rem;font-weight:900;line-height:1}
.verdict-rating .label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.verdict-points h4{margin-top:0;color:var(--yellow);font-size:1rem}
.verdict-points ul{padding-left:1.2rem;margin:0}
.verdict-points li{font-size:.92rem;color:var(--text-muted)}

/* Pros / Cons */
.pros-cons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:24px 0;
}
.pros, .cons{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:22px;
}
.pros h3, .cons h3{margin-top:0;font-size:1.1rem}
.pros h3{color:var(--green)}
.cons h3{color:var(--red)}
.pros ul, .cons ul{padding-left:1.2rem}
.pros li, .cons li{font-size:.95rem}

/* Info card */
.info-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-left:4px solid var(--yellow);
  border-radius:var(--radius);
  padding:18px 22px;
  margin:22px 0;
}
.info-card h4{margin-top:0;color:var(--yellow)}

.warning-card{
  background:rgba(255,91,91,0.08);
  border:1px solid rgba(255,91,91,0.25);
  border-left:4px solid var(--red);
  border-radius:var(--radius);
  padding:18px 22px;
  margin:22px 0;
}
.warning-card h4{margin-top:0;color:var(--red)}

/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin:24px 0;
  counter-reset:step;
}
.steps li{
  position:relative;
  padding:18px 18px 18px 64px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:12px;
  counter-increment:step;
}
.steps li::before{
  content:counter(step);
  position:absolute;
  left:18px;top:50%;
  transform:translateY(-50%);
  width:34px;height:34px;
  background:var(--yellow);
  color:#000;
  border-radius:50%;
  font-weight:900;
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
}
.steps li strong{color:var(--yellow);display:block;margin-bottom:4px}

/* Tables */
.table-wrap{
  overflow-x:auto;
  margin:22px 0;
  border-radius:var(--radius);
  border:1px solid var(--border);
}
table{
  width:100%;
  border-collapse:collapse;
  background:var(--bg-card);
  font-size:.95rem;
}
th,td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
th{
  background:#222;
  color:var(--yellow);
  font-weight:800;
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.04em;
}
tr:last-child td{border-bottom:none}
tr:hover{background:rgba(255,217,0,0.03)}

/* CTA buttons */
.cta-block{
  background:linear-gradient(135deg,#1a0d3a,#3b1d8c);
  border:1px solid #4727a8;
  border-radius:var(--radius-lg);
  padding:30px 26px;
  text-align:center;
  margin:34px 0;
}
.cta-block h3{margin-top:0;color:#fff;font-size:1.4rem}
.cta-block p{color:#d4c8ff;margin-bottom:1.2rem}
.btn-cta{
  display:inline-block;
  background:var(--yellow);
  color:#000;
  font-weight:900;
  font-size:1.05rem;
  padding:14px 36px;
  border-radius:8px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:all .2s;
  text-transform:uppercase;
  letter-spacing:.03em;
  box-shadow:var(--shadow-yellow);
}
.btn-cta:hover{
  background:var(--yellow-hover);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,217,0,0.35);
  color:#000;
}

/* FAQ */
.faq{margin:30px 0}
.faq details{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:10px;
  overflow:hidden;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:18px 56px 18px 22px;
  font-weight:700;
  font-size:1.02rem;
  color:#fff;
  position:relative;
  user-select:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:'+';
  position:absolute;
  right:22px;top:50%;
  transform:translateY(-50%);
  font-size:1.6rem;
  color:var(--yellow);
  font-weight:300;
  transition:transform .2s;
}
.faq details[open] summary::after{content:'−'}
.faq details[open] summary{border-bottom:1px solid var(--border)}
.faq .faq-answer{padding:18px 22px;color:var(--text-muted)}
.faq .faq-answer p:last-child{margin-bottom:0}

/* Image */
figure{margin:24px 0;text-align:center}
figure img{
  width:90%;
  height:auto;
  margin:0 auto;
  border-radius:8px;
  box-shadow:0 4px 18px rgba(0,0,0,0.4);
  border:1px solid var(--border);
}
figcaption{
  margin-top:10px;
  font-size:.85rem;
  color:var(--text-dim);
  font-style:italic;
}

/* Highlight */
mark{
  background:rgba(255,217,0,0.2);
  color:var(--yellow);
  padding:2px 6px;
  border-radius:3px;
}

/* Footer */
.site-footer{
  background:#000;
  border-top:1px solid var(--border);
  padding:50px 18px 30px;
  margin-top:60px;
}
.footer-inner{
  max-width:var(--container);
  margin:0 auto;
}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  margin-bottom:30px;
}
.footer-col h4{
  color:var(--yellow);
  font-size:1rem;
  text-transform:uppercase;
  margin-bottom:14px;
  margin-top:0;
}
.footer-col a{
  color:var(--text-muted);
  display:block;
  font-size:.92rem;
  padding:5px 0;
}
.footer-col a:hover{color:var(--yellow)}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
  justify-content:space-between;
}
.footer-bottom .age-badge{
  background:#000;
  color:#fff;
  border:2px solid var(--red);
  width:48px;height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;justify-content:center;
  font-weight:900;
  font-size:.95rem;
  flex-shrink:0;
}
.disclaimer{
  font-size:.82rem;
  color:var(--text-dim);
  flex:1;
  min-width:240px;
}
.footer-licenses{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-licenses span{
  font-size:.78rem;
  color:var(--text-dim);
  background:#161616;
  padding:6px 12px;
  border-radius:4px;
  border:1px solid var(--border);
}

/* Quick facts grid */
.quick-facts{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px;
  margin:24px 0;
}
.fact{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.fact .fact-label{
  font-size:.78rem;
  color:var(--text-dim);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:6px;
}
.fact .fact-value{
  font-weight:800;
  color:var(--yellow);
  font-size:1.05rem;
  line-height:1.3;
}

/* TOC */
.toc{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 22px;
  margin:22px 0;
}
.toc h4{margin-top:0;font-size:.85rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.05em}
.toc ol{margin-bottom:0;padding-left:1.2rem}
.toc a{color:var(--text)}
.toc a:hover{color:var(--yellow)}

/* RESPONSIVE */
@media (max-width: 960px){
  .nav-desktop{display:none}
  .burger{display:flex}
  .header-inner{justify-content:space-between;gap:10px}
  .header-cta .btn-login{display:none}
  main{padding:20px 14px 40px}
  .hero{padding:22px 18px}
  .verdict-box{
    grid-template-columns:1fr;
    text-align:center;
    gap:18px;
  }
  .pros-cons{grid-template-columns:1fr}
  figure img{width:100%}
  h2{font-size:1.4rem}
  h3{font-size:1.15rem}
}
@media (max-width: 480px){
  .header-cta .btn-register{padding:8px 14px;font-size:.85rem}
  .logo img{height:28px}
  .verdict-rating{padding:10px 14px;min-width:80px}
  .verdict-rating .score{font-size:1.6rem}
  .steps li{padding:14px 14px 14px 56px}
  .steps li::before{width:30px;height:30px;font-size:1rem;left:14px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
}

/* EEAT page signs list */
.signs-list{
  list-style:none;
  padding:0;
  margin:20px 0;
  display:grid;
  gap:12px;
}
.signs-list li{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-left:3px solid var(--yellow);
  border-radius:8px;
  padding:14px 18px;
  font-size:.96rem;
  line-height:1.55;
}
.signs-list li strong{color:var(--yellow);display:inline}

/* Disclaimer note */
.note{
  background:rgba(91,46,201,0.08);
  border:1px solid rgba(91,46,201,0.25);
  border-left:4px solid var(--purple);
  border-radius:8px;
  padding:14px 18px;
  margin:30px 0 20px;
  font-size:.92rem;
  color:var(--text-muted, #b0b0b0);
  line-height:1.6;
}
