:root {
      --bg: #121212; 
      --ink: #ffffff;
      --muted: #a0a0a0;
      --sub: #757575;
      --accent: #FF5722; 
      --accent-dark: #d84315;
      --glass: rgba(30, 30, 30, 0.6);
      --gborder: rgba(255, 87, 34, 0.2);
      --container: 1200px;
      --radius: 22px;
    }

    * { 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% 10%, rgba(255, 87, 34, 0.1), transparent 60%), 
                  radial-gradient(circle at 10% 90%, rgba(255, 140, 0, 0.05), transparent 50%),
                  linear-gradient(to bottom, #121212, #0a0a0a);
    }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
    
    .topbar {
      position: sticky; top: 0; background: rgba(18, 18, 18, 0.95);
      backdrop-filter: blur(14px); border-bottom: 1px solid var(--gborder); z-index: 50; margin-bottom: 40px;
    }
    .topbar__in { height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .logo {
      font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 24px;
      color: #fff; text-decoration: none;
      text-transform: uppercase;
      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 10px 40px rgba(0,0,0,0.5);
    }

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

    .review-logo {
        width: 120px; height: 120px; 
        background: #1e1e1e; 
        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(255, 87, 34, 0.3);
        position: relative;
    }
    .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: var(--accent); color: #fff; 
        font-weight: 800; padding: 4px 12px; border-radius: 6px; margin-bottom: 10px;
    }

    .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; border-left: 4px solid var(--accent); padding-left: 15px; }
    h3 { font-family: 'Unbounded'; font-size: 18px; color: #fff; margin: 30px 0 15px; }
    p { line-height: 1.7; color: var(--muted); margin-bottom: 20px; font-size: 16px; }

    .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-weight: bold; }
    .cons .pc-list li::before { content: "✕"; color: #ff5555; position: absolute; left: 0; font-weight: bold; }

    .table-wrapper { overflow-x: auto; border-radius: 12px; border: 1px solid var(--gborder); margin: 30px 0; }
    .custom-table { width: 100%; border-collapse: collapse; background: rgba(255, 255, 255, 0.02); min-width: 500px; }
    .custom-table th {
        background: rgba(255, 87, 34, 0.1); color: var(--accent);
        font-family: 'Unbounded', sans-serif; font-size: 14px; text-transform: uppercase;
        padding: 16px 24px; text-align: left;
    }
    .custom-table td { padding: 16px 24px; border-bottom: 1px solid var(--gborder); color: var(--ink); font-size: 15px; }
    .custom-table tr:last-child td { border-bottom: none; }
    .highlight-text { color: var(--accent); font-weight: bold; }

    .promo-box {
        background: linear-gradient(90deg, rgba(255, 87, 34, 0.1), transparent);
        border: 1px dashed var(--accent);
        border-radius: 16px; 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: #000; border: 1px solid var(--gborder);
        border-radius: 8px; 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: 12px; color: var(--muted); text-transform: uppercase; border-left: 1px solid var(--gborder); padding-left: 15px; }
    .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.02); border: 1px solid var(--gborder); border-radius: 16px; padding: 20px; }
    .review-top { display: flex; justify-content: space-between; margin-bottom: 15px; }
    .review-author { font-weight: bold; color: #fff; }
    .review-stars { color: var(--accent); letter-spacing: 2px; }
    .review-text { font-size: 14px; color: var(--sub); line-height: 1.6; font-style: italic; }
    .review-date { font-size: 12px; color: var(--muted); margin-top: 15px; display: block; opacity: 0.5; }

    .step-list { counter-reset: my-counter; margin: 30px 0; }
    .step-item { position: relative; padding-left: 50px; margin-bottom: 20px; }
    .step-item::before {
        counter-increment: my-counter; content: counter(my-counter);
        position: absolute; left: 0; top: 0; width: 35px; height: 35px;
        background: rgba(255, 87, 34, 0.12); border: 1px solid var(--accent);
        color: var(--accent); border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-weight: bold;
    }
    .step-title { color: #fff; font-weight: bold; margin-bottom: 5px; display: block; }

    .faq-item { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--gborder); }
    .faq-q { color: #fff; font-weight: bold; margin-bottom: 10px; display: block; }

    .btn-container { text-align: center; margin-top: 50px; padding: 40px; background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 18px 40px; border-radius: 12px; text-decoration: none;
      font-family: 'IBM Plex Mono', monospace; font-weight: 700; text-transform: uppercase;
      transition: 0.3s; cursor: pointer;
    }
    .btn-accent {
      color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      font-size: 18px; width: 100%; max-width: 350px; box-shadow: 0 4px 20px rgba(255, 87, 34, 0.25);
    }
    .btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255, 87, 34, 0.5); }

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

    .floating-fab {
        position: fixed; bottom: 30px; right: 30px;
        background: linear-gradient(135deg, var(--accent), #e64a19);
        color: #fff; 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(255, 87, 34, 0.4);
        z-index: 1000; border: 2px solid rgba(255,255,255,0.2);
        animation: btn-pulse 2s infinite; transition: transform 0.3s ease;
    }
    .floating-fab:hover { transform: scale(1.05); background: linear-gradient(135deg, #ff7043, var(--accent)); }
    @keyframes btn-pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
        70% { box-shadow: 0 0 0 20px rgba(255, 87, 34, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
    }

    .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; }

    @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; }
    }
