:root {
      --bg: #050706;
      --bg-soft: #08110d;
      --text: #f6f2e7;
      --muted: rgba(246, 242, 231, 0.72);
      --line: rgba(138, 255, 188, 0.12);
      --green: #39e58d;
      --gold: #f0ca63;
      --gold-2: #ffd977;
      --shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --max: 1240px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 82% 8%, rgba(72, 255, 152, 0.14), transparent 18%),
        radial-gradient(circle at 12% 24%, rgba(62, 198, 123, 0.09), transparent 20%),
        radial-gradient(circle at 90% 72%, rgba(255, 210, 95, 0.06), transparent 20%),
        linear-gradient(180deg, #050706 0%, #040605 100%);
      overflow-x: hidden;
    }
    body::before, body::after {
      content: "";
      position: fixed;
      border-radius: 999px;
      pointer-events: none;
      z-index: -1;
      filter: blur(60px);
      opacity: 0.9;
    }
    body::before {
      width: 420px; height: 420px; top: -110px; right: -80px;
      background: rgba(53, 228, 132, 0.15);
      animation: drift 11s ease-in-out infinite alternate;
    }
    body::after {
      width: 360px; height: 360px; bottom: 8%; left: -100px;
      background: rgba(239, 202, 99, 0.08);
      animation: drift 14s ease-in-out infinite alternate-reverse;
    }
    @keyframes drift {
      from { transform: translate3d(0,0,0) scale(1); }
      to { transform: translate3d(30px,25px,0) scale(1.12); }
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
    .topbar { position: sticky; top: 14px; z-index: 40; padding-top: 14px; }
    .nav {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      padding: 16px 22px; border: 1px solid rgba(73, 227, 137, 0.16);
      border-radius: 26px;
      background: linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(9, 22, 15, 0.82), rgba(5, 8, 7, 0.92));
      backdrop-filter: blur(16px); box-shadow: var(--shadow);
    }
    .brand { display: flex; align-items: center; gap: 0; min-width: 0; }
    .brand { display: flex; align-items: center; gap: 0; min-width: 0; }
.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 680px) {
  .brand-mark {
    width: 52px;
    height: 52px;
  }
}
    .nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 24px; font-weight: 700; color: rgba(255,255,255,0.88); }
    .nav-links a { position: relative; display: inline-flex; align-items: center; min-height: 24px; }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
      transform: scaleX(0); transform-origin: left;
      background: linear-gradient(90deg, var(--gold), var(--green)); transition: transform .28s ease; border-radius: 99px;
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    h1,h2,h3 { font-family: Georgia, 'Times New Roman', serif; }
    .hero { padding: 54px 0 24px; }
    .hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 28px; align-items: stretch; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
      background: rgba(57, 229, 141, 0.08); border: 1px solid rgba(57, 229, 141, 0.18);
      color: #c5ffd9; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800;
    }
    .hero-copy, .hero-side, .score-card, .section-card, .verdict-banner, .pros-cons, .fact-card, .notice {
      border: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .hero-copy {
      padding: 38px; border-radius: var(--radius-xl);
      background: linear-gradient(125deg, rgba(8, 12, 11, 0.9), rgba(10, 25, 17, 0.72) 45%, rgba(8, 12, 11, 0.92));
      position: relative; overflow: hidden;
    }
    .hero-copy::before {
      content: ""; position: absolute; width: 240px; height: 240px; right: -40px; top: -30px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 202, 99, 0.14), transparent 64%); pointer-events: none;
    }
    .hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 0.98; letter-spacing: -0.03em; margin: 18px 0; }
    .hero h1 .accent { color: var(--gold-2); text-shadow: 0 0 26px rgba(240, 202, 99, 0.16); }
    .hero p { margin: 0; max-width: 680px; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
    .hero-actions, .inline-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
    .btn, .btn-alt, .btn-soft {
      display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 24px;
      border-radius: 18px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .btn { color: #10140f; background: linear-gradient(90deg, var(--gold), var(--green)); box-shadow: 0 14px 28px rgba(57, 229, 141, 0.16); }
    .btn-alt { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); color: var(--text); }
    .btn-soft { color: var(--text); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
    .btn:hover, .btn-alt:hover, .btn-soft:hover { transform: translateY(-2px); }
    .hero-side {
      padding: 24px; border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(14, 17, 15, 0.96), rgba(10, 32, 20, 0.76));
      position: relative; overflow: hidden;
    }
    .hero-side::before {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
      opacity: 0.09;
    }
    .hero-side-inner { position: relative; z-index: 1; display: grid; gap: 16px; }
    .score-card { border-radius: 24px; padding: 24px; background: rgba(255,255,255,0.03); }
    .score-top { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
    .score-top strong { display: block; font-size: 1.25rem; letter-spacing: 0.04em; }
    .score-top span { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
    .score-number { font-family: Georgia, 'Times New Roman', serif; font-size: 3rem; color: var(--gold-2); line-height: 1; white-space: nowrap; }
    .score-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
    .score-list li {
      display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 16px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: var(--muted); font-weight: 700;
    }
    .score-list strong { color: var(--text); font-size: 0.98rem; }
    section { padding: 22px 0; }
    .section-head { margin-bottom: 18px; }
    .section-head h2, .section-card h3, .pros-cons h3, .verdict-banner h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.02; }
    .section-head p, .section-card p, .section-card li, .verdict-banner p, .notice p, .fact-card p {
      margin: 12px 0 0; color: var(--muted); line-height: 1.85;
    }
    .grid-2, .grid-3, .facts-grid { display: grid; gap: 18px; }
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .facts-grid { grid-template-columns: repeat(4, 1fr); }
    .section-card, .pros-cons, .fact-card, .notice {
      border-radius: 26px; padding: 28px; background: linear-gradient(180deg, rgba(7, 9, 8, 0.95), rgba(8, 13, 11, 0.94));
    }
    .section-card ul, .pros-cons ul { padding-left: 18px; margin: 16px 0 0; }
    .pros-cons.good { background: linear-gradient(180deg, rgba(9, 22, 16, 0.96), rgba(8, 16, 12, 0.94)); }
    .pros-cons.bad { background: linear-gradient(180deg, rgba(22, 11, 11, 0.96), rgba(15, 10, 10, 0.94)); border-color: rgba(255, 125, 125, 0.14); }
    .pros-cons.good h3 { color: #d5ffe7; }
    .pros-cons.bad h3 { color: #ffd7d7; }
    .fact-card strong { display: block; color: var(--gold-2); font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 0.04em; }
    .notice { background: linear-gradient(90deg, rgba(18,45,99,0.5), rgba(92,63,17,0.36), rgba(8,13,11,0.96)); }
    .verdict-banner {
      display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 24px; align-items: center;
      padding: 34px; border-radius: 34px;
      background: radial-gradient(circle at 24% 50%, rgba(255, 218, 125, 0.16), transparent 22%), linear-gradient(90deg, #152d63 0%, rgba(88, 54, 17, 0.7) 48%, rgba(10, 12, 11, 0.95) 100%);
      overflow: hidden; position: relative;
    }
    .verdict-banner::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
      transform: translateX(-100%); animation: shine 8s linear infinite;
    }
    @keyframes shine { to { transform: translateX(100%); } }
    .verdict-side {
      justify-self: end; width: 100%; max-width: 320px; padding: 24px; border-radius: 24px;
      background: rgba(10, 20, 18, 0.5); border: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1;
    }
    .verdict-side .badge {
      display: inline-flex; padding: 8px 12px; border-radius: 999px; font-size: 0.76rem; font-weight: 900;
      letter-spacing: 0.12em; text-transform: uppercase; color: #10140f; background: linear-gradient(90deg, var(--gold), var(--green)); margin-bottom: 14px;
    }
    .verdict-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .verdict-side li { padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.04); color: #f8f0db; font-weight: 700; border: 1px solid rgba(255,255,255,0.06); }
    footer { margin-top: 40px; padding: 34px 0 60px; color: rgba(255,255,255,0.52); text-align: center; font-size: 0.95rem; }
    @media (max-width: 1120px) {
      .hero-grid, .grid-2, .facts-grid, .verdict-banner, .grid-3 { grid-template-columns: 1fr; }
      .verdict-side { justify-self: start; max-width: none; }
    }
    @media (max-width: 760px) {
      .wrap { width: min(var(--max), calc(100% - 20px)); }
      .nav { padding: 14px 16px; border-radius: 22px; }
      .nav-links { gap: 12px 18px; font-size: 0.95rem; }
      .hero { padding-top: 34px; }
      .hero-copy, .hero-side, .score-card, .section-card, .pros-cons, .fact-card, .notice, .verdict-banner, .verdict-side { padding: 22px; }
    }
    @media (max-width: 520px) {
      .nav-links { display: none; }
      .hero h1 { font-size: 2.35rem; }
      .section-head h2, .section-card h3, .pros-cons h3, .verdict-banner h2 { font-size: 2rem; }
      .score-number { font-size: 2.3rem; }
    }
