:root{
  --bg:#070A0A;
  --panel:rgba(255,255,255,.04);
  --panel2:rgba(255,255,255,.06);
  --text:#ffffff;
  --sub:rgba(255,255,255,.72);
  --gborder:rgba(255,255,255,.10);
  --accent:#20E38B;
  --accent2:#10603c;
  --shadow: 0 14px 40px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 520px at 70% -10%, rgba(32,227,139,.18), transparent 60%),
    radial-gradient(700px 420px at 10% 10%, rgba(16,96,60,.22), transparent 55%),
    var(--bg);
  color:var(--text);
  font-size-adjust:0.52;
}

a{ color:inherit; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,10,.72);
  border-bottom:1px solid var(--gborder);
}

.topbar__in{
  display:flex;
  align-items:center;
  min-height:64px;
}

.logo{
  font-family:"Unbounded", system-ui, sans-serif;
  letter-spacing:.02em;
  text-decoration:none;
  font-weight:800;
}

.review-section{ padding:28px 0 70px; }

.review-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--gborder);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.review-header{
  display:flex;
  gap:20px;
  padding:22px;
  border-bottom:1px solid var(--gborder);
}

.review-logo img{
  border-radius:18px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--gborder);
}

.review-title h1{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:32px;
  line-height:1.15;
  margin:0 0 10px;
}

.review-title p{
  font-size:16px;
  line-height:1.45;
  margin:0;
  color:var(--sub);
}

.rating-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(32,227,139,.10);
  border:1px solid rgba(32,227,139,.25);
  color:#d6ffe9;
  font-weight:700;
  margin-bottom:10px;
}

.meta-note{
  margin-top:10px;
  color:var(--sub);
  font-size:13px;
  line-height:1.45;
}

.review-content{ padding:22px; }

.review-content h2{
  margin:26px 0 12px;
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:20px;
}

.review-content p{
  color:var(--sub);
  line-height:1.6;
}

.promo-box{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:16px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(32,227,139,.12), rgba(255,255,255,.04));
  border:1px solid rgba(32,227,139,.22);
  margin:16px 0 8px;
}

.promo-box h3{
  margin:0 0 6px;
  font-size:16px;
}

.promo-box .promo-text p{
  margin:0;
  color:var(--sub);
}

.code-container{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(0,0,0,.25);
  border:1px solid var(--gborder);
}

.code-val{
  font-family:"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight:700;
  letter-spacing:.08em;
}

.copy-btn{
  cursor:pointer;
  border:0;
  border-radius:10px;
  padding:10px 12px;
  font-weight:800;
  background: rgba(32,227,139,.14);
  color:#d6ffe9;
  border:1px solid rgba(32,227,139,.28);
}

.copy-btn:focus{
  outline:2px solid rgba(32,227,139,.45);
  outline-offset:2px;
}

/* Плюсы / Минусы */
.pros-cons-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin:18px 0 8px;
}

.pc-block{
  border:1px solid var(--gborder);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px 16px;
}

.pc-block h3{
  margin:0 0 10px;
  font-size:16px;
}

.pc-list{
  margin:0;
  padding-left:18px;
  color:var(--sub);
  line-height:1.6;
}

.table-wrapper{
  overflow:auto;
  border-radius:14px;
  border:1px solid var(--gborder);
  background:rgba(255,255,255,.03);
}

.custom-table{
  width:100%;
  border-collapse:collapse;
  min-width:680px;
}

.custom-table th,
.custom-table td{
  padding:12px 14px;
  border-bottom:1px solid var(--gborder);
  text-align:left;
}

.custom-table thead th{
  color:#eafff4;
  background:rgba(255,255,255,.04);
}

.highlight-text{
  color:var(--accent);
  font-weight:800;
}

.note-small{
  font-size:13px;
  color:var(--sub);
  opacity:0.9;
  margin-top:-10px;
}

/* Отзывы */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.review-item{
  border:1px solid var(--gborder);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px 16px;
}

.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.review-author{ font-weight:800; }
.review-stars{ color: rgba(255,255,255,.85); }

.review-text{
  margin:0 0 10px;
  color:var(--sub);
}

.review-date{
  color: rgba(255,255,255,.55);
  font-size:12px;
}

/* FAQ */
.faq-item{
  border:1px solid var(--gborder);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px 16px;
  margin:10px 0;
}

.faq-q{
  display:block;
  font-weight:900;
  margin-bottom:6px;
  color:#eafff4;
}

.faq-item p{ margin:0; }

/* Блок про доступ */
.access-box{
  background: rgba(32,227,139, 0.06);
  padding: 18px;
  border-radius: 16px;
  margin: 26px 0;
  border-left: 4px solid var(--accent);
  border-top: 1px solid rgba(32,227,139,.18);
  border-right: 1px solid rgba(32,227,139,.18);
  border-bottom: 1px solid rgba(32,227,139,.18);
}

.access-box h3{
  margin:0 0 10px;
  font-size:18px;
}

.access-box p{ margin:0 0 10px; }
.access-box p:last-child{ margin-bottom:0; }

/* Вердикт по центру */
.center-title{
  border:none;
  padding:0;
  margin-top:60px;
  text-align:center;
  color:#fff;
}

.center-text{
  text-align:center;
  max-width:800px;
  margin:0 auto;
}

/* Кнопки */
.btn-container{
  text-align:center;
  margin:22px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  border:1px solid var(--gborder);
}

.btn-accent{
  background: linear-gradient(180deg, rgba(32,227,139,.22), rgba(16,96,60,.18));
  border-color: rgba(32,227,139,.28);
  box-shadow: 0 12px 30px rgba(32,227,139,.08);
}

.btn-back{
  display:inline-block;
  margin-top:10px;
  color:var(--sub);
  text-decoration:none;
}

/* Партнёрская пометка */
.affiliate-note{
  color: rgba(255,255,255,.65);
  font-size:13px;
  line-height:1.55;
  margin-top:18px;
}

/* Дисклеймер */
.disclaimer-box{
  margin-top:18px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--gborder);
  background: rgba(255,255,255,.03);
  color:var(--sub);
  line-height:1.55;
}

/* Другие обзоры */
.other-reviews{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gborder);
}

.other-reviews h3{
  color:#fff;
  margin:0 0 12px;
  font-size:16px;
}

.other-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  text-decoration:none;
  border:1px solid var(--gborder);
  padding:8px 16px;
  border-radius:20px;
  font-size:12px;
  color:var(--sub);
}

/* Footer */
.footer{ padding: 20px 0 40px; }
.footer__in{
  text-align:center;
  color: var(--sub);
  font-size:14px;
}
.footer__fineprint{
  opacity:0.5;
  margin-top:10px;
}

/* Floating CTA */
.floating-fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:60;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  background: rgba(7,10,10,.78);
  border:1px solid rgba(32,227,139,.28);
  box-shadow: var(--shadow);
}

@media (max-width: 960px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .review-header{ flex-direction:column; }
  .custom-table{ min-width:620px; }
  .pros-cons-grid{ grid-template-columns: 1fr; }
  .promo-box{ flex-direction:column; align-items:flex-start; }
}