:root {
      --bg: #05140e; 
      --ink: #ffffff;
      --muted: #a3b8b0;
      --sub: #5f7a6f;
      --accent: #D4AF37; 
      --accent-light: #f3e5ab;
      --glass: rgba(10, 30, 20, 0.7);
      --gborder: rgba(212, 175, 55, 0.3);
      --container: 1200px;
      --radius: 12px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'IBM Plex Mono', monospace;
      overflow-x: hidden;
    }

    body::before {
      content: ""; position: fixed; inset: -20vmax; z-index: -2; pointer-events: none;
      background: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), transparent 60%),
        linear-gradient(to bottom, #05140e, #020806);
    }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

    .topbar {
      position: sticky; top: 0; background: rgba(8, 24, 18, 0.98);
      backdrop-filter: blur(10px); border-bottom: 1px solid var(--gborder); z-index: 50; margin-bottom: 40px;
    }
    .topbar__in { height: 76px; display: flex; align-items: center; justify-content: space-between; }
    .logo {
      font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 28px;
      color: #fff; text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
    }
    .logo span { color: var(--accent); font-weight: 900; }
    .logo:hover { opacity: 0.9; }

    .review-section { padding: 40px 0 80px; }
    .review-card {
      background: var(--glass); border: 1px solid var(--gborder);
      border-radius: var(--radius); padding: 40px; backdrop-filter: blur(24px);
      box-shadow: 0 10px 50px rgba(0,0,0,0.6);
    }

    .review-header {
      display: flex; align-items: center; gap: 40px;
      margin-bottom: 35px; border-bottom: 1px solid var(--gborder); padding-bottom: 28px;
    }

    .review-logo {
      width: 120px; height: 120px; 
      background: #0d261c; 
      border-radius: 50%; 
      display: flex; align-items: center; justify-content: center; 
      padding: 0; 
      border: 2px solid var(--accent);
      flex-shrink: 0;
      overflow: hidden; 
      box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
      position: relative;
    }
    .review-logo::after {
      content: "M"; font-family: 'Unbounded'; font-weight: 900; font-size: 60px; color: var(--accent);
      position: absolute; z-index: 1; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;
    }
    .review-logo img { width: 100%; height: 100%; object-fit: cover; z-index: 2; position: relative; }

    .review-title h1 {
      font-family: 'Unbounded', sans-serif; font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 12px; line-height: 1.1;
    }
    .rating-badge {
      display: inline-block; background: linear-gradient(135deg, var(--accent), #b8860b); color: #05140e; 
      font-weight: 800; padding: 6px 16px; border-radius: 4px; margin-bottom: 10px;
      text-transform: uppercase; letter-spacing: 1px; font-size: 12px;
    }

    .meta-note {
      font-size: 13px; color: var(--sub); line-height: 1.6; margin-top: 8px; opacity: 0.95;
    }
    .meta-note strong { color: #fff; }

    h2 { 
      font-family: 'Unbounded'; font-size: 24px; color: var(--accent); margin: 50px 0 25px; 
      text-align: center; text-transform: uppercase; letter-spacing: 2px;
      position: relative; display: inline-block; width: 100%;
    }
    h2::after { content: ""; display: block; width: 60px; height: 2px; background: var(--accent); margin: 15px auto 0; }
    h3 { font-family: 'Unbounded'; font-size: 18px; color: #fff; margin: 30px 0 15px; }
    p { line-height: 1.8; color: var(--muted); margin-bottom: 20px; font-size: 15px; font-weight: 300; }

    .pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 30px 0; }
    .pc-list { list-style: none; }
    .pc-list li { margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--sub); }
    .pros .pc-list li::before { content: "★"; color: var(--accent); position: absolute; left: 0; font-size: 14px; }
    .cons .pc-list li::before { content: "•"; color: #ff5555; position: absolute; left: 0; font-size: 20px; line-height: 18px; }

    .table-wrapper { overflow-x: auto; border-radius: 8px; border: 1px solid var(--gborder); margin: 30px 0; }
    .custom-table { width: 100%; border-collapse: collapse; background: rgba(13, 38, 28, 0.5); min-width: 500px; }
    .custom-table th {
      background: rgba(212, 175, 55, 0.1); color: var(--accent);
      font-family: 'Unbounded', sans-serif; font-size: 13px; text-transform: uppercase;
      padding: 20px 24px; text-align: left; letter-spacing: 1px;
    }
    .custom-table td {
      padding: 20px 24px; border-bottom: 1px solid rgba(212, 175, 55, 0.1);
      color: var(--ink); font-size: 14px;
    }
    .custom-table tr:last-child td { border-bottom: none; }
    .highlight-text { color: var(--accent); font-weight: 700; }

    .promo-box {
      background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
      border: 1px solid var(--gborder);
      border-radius: 8px; padding: 30px;
      display: flex; align-items: center; justify-content: space-between;
      margin: 40px 0; flex-wrap: wrap; gap: 20px;
    }
    .promo-text h3 { margin: 0 0 5px 0; color: #fff; font-size: 20px; font-family: 'Unbounded'; }
    .promo-text p { margin: 0; font-size: 14px; color: var(--muted); }
    .code-container {
      background: #000; border: 1px solid var(--gborder);
      border-radius: 4px; padding: 12px 24px;
      display: flex; align-items: center; gap: 15px;
      cursor: pointer; transition: 0.3s;
    }
    .code-val { font-family: 'Unbounded'; color: var(--accent); font-size: 18px; letter-spacing: 1.5px; }
    .copy-icon { font-size: 11px; color: var(--sub); text-transform: uppercase; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 15px; }
    .code-container:hover { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }

    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
    .review-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); border-radius: 8px; padding: 25px; }
    .review-top { display: flex; justify-content: space-between; margin-bottom: 15px; }
    .review-author { font-weight: 600; color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
    .review-stars { color: var(--accent); font-size: 12px; }
    .review-text { font-size: 14px; color: var(--muted); line-height: 1.6; font-style: italic; }
    .review-date { font-size: 11px; color: var(--sub); margin-top: 15px; display: block; opacity: 0.5; }

    .step-list { counter-reset: my-counter; margin: 30px 0; }
    .step-item { position: relative; padding-left: 60px; margin-bottom: 30px; }
    .step-item::before {
      counter-increment: my-counter; content: counter(my-counter);
      position: absolute; left: 0; top: 0; width: 40px; height: 40px;
      background: var(--bg); border: 2px solid var(--accent);
      color: var(--accent); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Unbounded';
    }
    .step-title { color: #fff; font-weight: 700; margin-bottom: 5px; display: block; font-family: 'Unbounded'; font-size: 16px; letter-spacing: 1px; }

    .faq-item { background: rgba(13, 38, 28, 0.4); padding: 25px; border-radius: 8px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.03); }
    .faq-q { color: var(--accent); font-weight: 600; margin-bottom: 10px; display: block; font-family: 'Unbounded'; font-size: 14px; }

    .affiliate-note {
      font-size: 13px; color: var(--sub); text-align: center;
      margin: 0 auto 14px auto; max-width: 820px; line-height: 1.6; opacity: 0.95;
    }
    .disclaimer-box {
      margin-top: 40px; padding: 20px; border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px; color: var(--muted); font-size: 14px; line-height: 1.7;
      background: rgba(255,255,255,0.02);
    }
    .disclaimer-box strong { color: #fff; }

    .btn-container { text-align: center; margin-top: 50px; padding: 40px; background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 20px 50px; border-radius: 2px; text-decoration: none;
      font-family: 'Unbounded', sans-serif; font-weight: 700; text-transform: uppercase;
      transition: 0.3s; cursor: pointer; letter-spacing: 1px;
    }
    .btn-accent {
      color: #05140e; background: linear-gradient(135deg, var(--accent), #b8860b);
      font-size: 16px; width: 100%; max-width: 350px; box-shadow: 0 5px 25px rgba(212, 175, 55, 0.2);
    }
    .btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3); color: #000; }

    .btn-back { color: var(--sub); margin-top: 25px; display: inline-block; text-decoration: none; border-bottom: 1px solid var(--sub); font-size: 12px; }
    .btn-back:hover { color: #fff; border-color: #fff; }

    .floating-fab {
      position: fixed; bottom: 30px; right: 30px;
      background: linear-gradient(135deg, var(--accent), #b8860b);
      color: #05140e;
      padding: 16px 32px; border-radius: 50px; text-decoration: none;
      font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 14px;
      display: flex; align-items: center; gap: 12px;
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
      z-index: 1000; border: 2px solid rgba(255,255,255,0.1);
      animation: btn-pulse 2s infinite; transition: transform 0.3s ease;
    }
    .floating-fab:hover { transform: scale(1.05); background: linear-gradient(135deg, #ffd700, #daa520); }
    @keyframes btn-pulse {
      0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
      70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
      100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    @media (max-width: 768px) {
      .review-header { flex-direction: column; text-align: center; }
      .pros-cons-grid { grid-template-columns: 1fr; gap: 20px; }
      .promo-box { justify-content: center; text-align: center; }
      .review-card { padding: 24px; }
      .floating-fab { bottom: 20px; right: 20px; left: 20px; justify-content: center; text-align: center; }
    }
