        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

        :root {
            --bg-dark: #111111;
            --bg-surface: #1a1a1a;
            --bg-card: #222222;
            --gold: #BA9D64;
            --gold-light: #BA9D64;
            --gold-lighter: #FBE3AF;
            --text-primary: #FFFFFF;
            --text-secondary: #b0b0b0;
            --text-muted: #888888;
            --border: #333333;
            --border-light: #444444;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
        }

        a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: var(--gold-lighter);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Icons base */
        .icon {
            display: inline-flex;
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            vertical-align: middle;
        }

        .icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--gold);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-sm {
            width: 18px;
            height: 18px;
        }

        .icon-lg {
            width: 36px;
            height: 36px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }

        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .header-nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        .header-nav a:not(.btn-gold) {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .header-nav a:not(.btn-gold):hover {
            color: var(--gold);
        }

        .header-mobile-btn {
            display: none;
        }

        a.btn-gold {
            display: inline-block;
            background: var(--gold);
            color: #000000;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 6px;
            font-size: 15px;
            transition: background 0.2s, transform 0.1s;
            text-decoration: none;
        }

        a.btn-gold:hover {
            background: var(--gold-light);
            color: #000000;
            transform: translateY(-1px);
        }

        .btn-outline {
            display: inline-block;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: #111;
        }

        /* Hero */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 60px 0 0;
            background: linear-gradient(rgba(17,17,17,0.75), rgba(17,17,17,0.85)), url('/img/bg.webp') center/cover no-repeat;
        }

        .hero::after {
            content: '';
            display: block;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .hero-content {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px 50px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(186, 157, 100, 0.15);
            border: 1px solid rgba(186, 157, 100, 0.3);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-badge .icon {
            width: 14px;
            height: 14px;
        }

        .hero h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            max-width: 700px;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero-text {
            max-width: 680px;
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .hero-meta {
            display: flex;
            gap: 24px;
            align-items: stretch;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .hero-meta a.btn-gold,
        .hero-meta .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-rating {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 12px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-rating .score {
            font-size: 28px;
            font-weight: 800;
            color: var(--gold);
        }

        .hero-rating .label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Main content */
        .main-content {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px 60px;
        }

        /* Table of Contents */
        .toc {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px 32px;
            margin: 40px 0;
        }

        .toc h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toc-list {
            list-style: none;
            columns: 2;
            column-gap: 32px;
        }

        .toc-list li {
            margin-bottom: 8px;
            break-inside: avoid;
        }

        .toc-list a {
            color: var(--text-secondary);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            transition: all 0.2s;
        }

        .toc-list a:hover {
            color: var(--gold);
            padding-left: 6px;
        }

        .toc-list .toc-num {
            color: var(--gold);
            font-weight: 600;
            font-size: 13px;
            min-width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(186, 157, 100, 0.1);
            border-radius: 4px;
        }

        /* Section styles */
        .review-section {
            margin-top: 50px;
            padding-top: 30px;
        }

        .section-divider {
            border: none;
            height: 1px;
            background: var(--border);
            margin: 50px 0 0;
        }

        .review-section h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 18px;
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .review-section h2 .gold {
            color: var(--gold);
        }

        .section-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(186, 157, 100, 0.12);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .section-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--gold);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .review-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-light);
            margin-top: 30px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .review-section h3::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: var(--gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .review-section p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .review-section strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Icon bullet lists */
        .review-section ul {
            list-style: none;
            margin: 14px 0 18px 0;
            padding: 0;
            color: var(--text-secondary);
        }

        .review-section ul li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .review-section ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 2px;
            background: var(--gold);
            opacity: 0.7;
        }

        .review-section ul li strong {
            color: var(--text-primary);
        }

        .review-section ol {
            margin: 14px 0 18px 24px;
            color: var(--text-secondary);
        }

        .review-section ol li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 20px 0 24px;
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .review-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }

        .review-table th {
            background: var(--bg-card);
            color: var(--gold);
            font-weight: 700;
            text-align: left;
            padding: 14px 18px;
            border-bottom: 2px solid var(--gold);
        }

        .review-table td {
            padding: 13px 18px;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
            vertical-align: top;
        }

        .review-table tr:last-child td {
            border-bottom: none;
        }

        .review-table tr:hover td {
            background: rgba(186, 157, 100, 0.05);
        }

        .review-table td:first-child {
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Section image */
        .section-img {
            border-radius: 10px;
            margin: 24px 0;
            width: 100%;
            border: 1px solid var(--border);
        }

        /* Info box */
        .info-box {
            background: var(--bg-surface);
            border-left: 3px solid var(--gold);
            padding: 18px 22px 18px 52px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
        }

        .info-box::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 20px;
            width: 22px;
            height: 22px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23BA9D64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .info-box strong {
            color: var(--gold);
        }

        /* Steps */
        .steps-list {
            counter-reset: step;
            list-style: none;
            margin: 16px 0 20px;
            padding: 0;
        }

        .steps-list li {
            counter-increment: step;
            position: relative;
            padding-left: 52px;
            margin-bottom: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-top: 2px;
        }

        .steps-list li::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 34px;
            height: 34px;
            background: var(--gold);
            color: #111;
            font-weight: 700;
            font-size: 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .steps-list li::after {
            content: '';
            position: absolute;
            left: 16px;
            top: 38px;
            width: 2px;
            height: calc(100% - 22px);
            background: rgba(186, 157, 100, 0.2);
        }

        .steps-list li:last-child::after {
            display: none;
        }

        /* Pros/Cons cards */
        .pros-cons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }

        .pros-card, .cons-card {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .pros-card {
            border-top: 3px solid #4ade80;
        }

        .cons-card {
            border-top: 3px solid #f87171;
        }

        .pros-card h4, .cons-card h4 {
            font-size: 16px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pros-card h4 {
            color: #4ade80;
        }

        .cons-card h4 {
            color: #f87171;
        }

        .pros-card ul, .cons-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pros-card li {
            font-size: 14px;
            margin-bottom: 12px;
            padding-left: 26px;
            position: relative;
            color: var(--text-secondary);
        }

        .pros-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            border-radius: 0;
            opacity: 1;
        }

        .cons-card li {
            font-size: 14px;
            margin-bottom: 12px;
            padding-left: 26px;
            position: relative;
            color: var(--text-secondary);
        }

        .cons-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f87171' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            border-radius: 0;
            opacity: 1;
        }

        /* Rating box */
        .rating-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
            border: 1px solid var(--gold);
            border-radius: 12px;
            padding: 36px;
            text-align: center;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .rating-box::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(186, 157, 100, 0.1), transparent);
            border-radius: 50%;
        }

        .rating-box::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(186, 157, 100, 0.08), transparent);
            border-radius: 50%;
        }

        .rating-ring {
            display: inline-block;
            position: relative;
            margin-bottom: 12px;
        }

        .rating-ring svg {
            width: 120px;
            height: 120px;
            transform: rotate(-90deg);
        }

        .rating-ring .ring-bg {
            fill: none;
            stroke: var(--border);
            stroke-width: 6;
        }

        .rating-ring .ring-fill {
            fill: none;
            stroke: var(--gold);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 326.7;
            stroke-dashoffset: 76.5;
        }

        .rating-ring .score-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .rating-ring .big-score {
            font-size: 36px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            display: block;
        }

        .rating-ring .out-of {
            font-size: 14px;
            color: var(--text-muted);
        }

        .rating-box p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 12px auto;
            position: relative;
        }

        /* FAQ accordion */
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item:hover {
            border-color: var(--border-light);
        }

        .faq-item summary {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            padding: 20px 50px 20px 26px;
            cursor: pointer;
            list-style: none;
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '';
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23BA9D64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            transition: transform 0.2s;
        }

        .faq-item[open] summary::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-item[open] summary {
            border-bottom: 1px solid var(--border);
        }

        .faq-item .faq-body {
            padding: 18px 26px 22px;
        }

        .faq-item .faq-body p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.75;
        }

        .faq-icon {
            display: inline-flex;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .faq-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--gold);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* CTA Banner */
        .cta-banner {
            background: radial-gradient(ellipse at center, #252525 0%, #1a1a1a 50%, #151515 100%);
            border: 1px solid rgba(186, 157, 100, 0.4);
            border-radius: 16px;
            padding: 60px 50px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .cta-banner .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(186, 157, 100, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-banner .cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(186, 157, 100, 0.2), rgba(186, 157, 100, 0.05));
            border: 1px solid rgba(186, 157, 100, 0.3);
            border-radius: 50%;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .cta-banner .cta-icon::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(186, 157, 100, 0.1);
        }

        .cta-banner .cta-icon svg {
            width: 36px;
            height: 36px;
            fill: none;
            stroke: var(--gold);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-banner h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
            display: block;
        }

        .cta-banner h3::before {
            display: none;
        }

        .cta-banner p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .cta-banner .btn-gold {
            padding: 14px 36px;
            font-size: 16px;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 20px rgba(186, 157, 100, 0.3);
        }

        .cta-banner .btn-gold:hover {
            box-shadow: 0 6px 30px rgba(186, 157, 100, 0.4);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }

        .footer-inner .logo img {
            height: 36px;
            margin: 0 auto 16px;
        }

        .footer-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 20px 0;
        }

        .footer-divider::before,
        .footer-divider::after {
            content: '';
            flex: 1;
            max-width: 100px;
            height: 1px;
            background: var(--border);
        }

        .footer-divider svg {
            width: 12px;
            height: 12px;
            fill: var(--gold);
            opacity: 0.5;
            flex-shrink: 0;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
        }

        .footer-text {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }

            .header-nav a:not(.btn-gold) {
                display: none;
            }

            .header-nav {
                gap: 12px;
            }

            .header-nav .btn-gold {
                padding: 8px 20px;
                font-size: 14px;
            }

            .toc-list {
                columns: 1;
            }

            .review-section h2 {
                font-size: 22px;
            }

            .pros-cons-grid {
                grid-template-columns: 1fr;
            }

            .section-icon {
                width: 36px;
                height: 36px;
            }

            .section-icon svg {
                width: 18px;
                height: 18px;
            }

            /* Table mobile fix */
            .review-table td:first-child {
                white-space: normal;
                min-width: 120px;
                max-width: 140px;
            }

            .review-table th,
            .review-table td {
                padding: 10px 12px;
                font-size: 14px;
            }

            .review-table th {
                white-space: normal;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }

            .hero {
                padding: 40px 0 0;
            }

            .hero h1 {
                font-size: 24px;
            }

            .review-section h2 {
                font-size: 20px;
            }
        }
    </style>
