:root {
      --bg: #1c1f24; 
      --ink: #ffffff;
      --muted: #aeb4be;
      --sub: #787f8a;
      --accent: #00E676; 
      --accent-dark: #00b35c;
      --glass: rgba(255, 255, 255, 0.03);
      --gborder: rgba(0, 230, 118, 0.15);
      --container: 1200px;
      --radius: 16px;
    }

    * { 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 80% 20%, rgba(0, 230, 118, 0.06), transparent 50%), 
                  radial-gradient(circle at 10% 90%, rgba(0, 179, 92, 0.04), transparent 50%),
                  linear-gradient(to bottom, #1c1f24, #121417);
    }

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

    .topbar {
      position: sticky; top: 0; background: rgba(28, 31, 36, 0.96);
      backdrop-filter: blur(12px); border-bottom: 1px solid var(--gborder); z-index: 50; margin-bottom: 40px;
    }
    .topbar__in { height: 72px; display: flex; align-items: center; justify-content: space-between; }
    .logo {
      font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 26px;
      color: #fff; text-decoration: none; letter-spacing: 1px;
    }
    .logo span { color: var(--accent); }
    .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 4px 30px rgba(0,0,0,0.2);
    }

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

    .review-logo {
        width: 120px; height: 120px; 
        background: #252930; 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 20px rgba(0, 230, 118, 0.25);
        position: relative;
    }
    .review-logo img { width: 100%; height: 100%; object-fit: cover; z-index: 2; position: relative; }
    .review-logo::after {
        content: "K"; font-family: 'Unbounded'; font-weight: 900; font-size: 50px; color: var(--accent);
        position: absolute; z-index: 1; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;
    }

    .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: var(--accent); color: #1c1f24; 
        font-weight: 800; padding: 5px 14px; border-radius: 4px; margin-bottom: 10px;
        text-transform: uppercase; font-size: 12px; letter-spacing: 1px;
    }

    .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: 22px; color: var(--accent); margin: 50px 0 25px; border-left: 3px solid var(--accent); padding-left: 15px; }
    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; }

    .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: 12px; top: 4px; }
    .cons .pc-list li::before { content: "▼"; color: #ff5252; position: absolute; left: 0; font-size: 12px; top: 4px; }

    .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(255, 255, 255, 0.01); min-width: 500px; }
    .custom-table th {
        background: rgba(0, 230, 118, 0.08); color: var(--accent);
        font-family: 'Unbounded', sans-serif; font-size: 13px; text-transform: uppercase;
        padding: 18px 24px; text-align: left; letter-spacing: 0.5px;
    }
    .custom-table td {
        padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.05);
        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(0, 230, 118, 0.08), transparent);
        border: 1px solid var(--gborder);
        border-radius: 12px; padding: 25px;
        display: flex; align-items: center; justify-content: space-between;
        margin: 30px 0; flex-wrap: wrap; gap: 20px;
    }
    .promo-text h3 { margin: 0 0 5px 0; color: #fff; font-size: 18px; font-family: 'Unbounded'; }
    .promo-text p { margin: 0; font-size: 14px; color: var(--sub); }
    .code-container {
        background: #15171b; border: 1px solid var(--gborder);
        border-radius: 6px; padding: 10px 20px;
        display: flex; align-items: center; gap: 15px;
        cursor: pointer; transition: 0.2s;
    }
    .code-val { font-family: 'Unbounded'; color: var(--accent); font-size: 18px; letter-spacing: 1px; }
    .copy-icon { font-size: 11px; color: var(--muted); text-transform: uppercase; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 15px; letter-spacing: 1px; }
    .code-container:active { transform: scale(0.98); }

    .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.015); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 25px; }
    .review-top { display: flex; justify-content: space-between; margin-bottom: 15px; }
    .review-author { font-weight: 600; color: #fff; }
    .review-stars { color: var(--accent); letter-spacing: 1px; 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; text-transform: uppercase; }

    .step-list { counter-reset: my-counter; margin: 30px 0; }
    .step-item { position: relative; padding-left: 50px; margin-bottom: 25px; }
    .step-item::before {
        counter-increment: my-counter; content: counter(my-counter);
        position: absolute; left: 0; top: 0; width: 32px; height: 32px;
        border-radius: 50%; border: 2px solid var(--accent);
        background: rgba(0, 230, 118, 0.1);
        display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--accent);
        font-family: 'Unbounded';
        font-size: 12px;
    }
    .step-title { color: #fff; font-weight: 700; margin-bottom: 5px; display: block; font-family: 'Unbounded'; font-size: 16px; }

    .faq-item { background: rgba(255,255,255,0.02); padding: 20px; border-radius: 8px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.05); }
    .faq-q { color: #fff; font-weight: 600; margin-bottom: 10px; display: block; }

    .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(0, 230, 118, 0.04) 0%, transparent 70%); border-top: 1px solid rgba(255,255,255,0.05); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 18px 45px; border-radius: 6px; text-decoration: none;
      font-family: 'IBM Plex Mono', monospace; font-weight: 600; text-transform: uppercase;
      transition: 0.3s; cursor: pointer; letter-spacing: 1px;
    }
    .btn-accent {
      color: #1c1f24; background: var(--accent);
      font-size: 16px; width: 100%; max-width: 350px; box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
    }
    .btn-accent:hover { transform: translateY(-2px); background: #33e98e; box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3); }
    .btn-back { color: var(--sub); margin-top: 25px; display: inline-block; text-decoration: none; border-bottom: 1px dashed var(--sub); font-size: 13px; }
    .btn-back:hover { color: #fff; border-color: #fff; }

    .floating-fab {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--accent);
        color: #1c1f24;
        padding: 14px 28px;
        border-radius: 4px;
        text-decoration: none;
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
        z-index: 1000;
        border: 1px solid rgba(255,255,255,0.2);
        animation: btn-pulse 2s infinite;
        transition: transform 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .floating-fab:hover { transform: scale(1.02); background: #33e98e; }
    @keyframes btn-pulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
        70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
    }

    @media (max-width: 768px) {
        .review-header { flex-direction: column; text-align: center; gap: 20px; }
        .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; }
    }
