/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #FCD535;
    --primary-hover: #F0B90B;
    --text-main: #1E2329;
    --text-body: #474D57;
    --text-muted: #707A8A;
    --bg-main: #FFFFFF;
    --bg-light: #FAFAFA;
    --border-color: #EAECEF;
    --success-color: #0ECB81;
    --danger-color: #F6465D;
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, monospace;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    font-family: var(--font-family);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1, h2, h3, h4, h5 { color: var(--text-main); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top Risk Banner */
.top-risk-banner {
    background-color: #FFF8E1;
    color: #856404;
    text-align: center;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #FFEBA1;
    line-height: 1.4;
}
.top-risk-banner a {
    color: #856404;
    text-decoration: underline;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background-color: #F8F9FA;
    border-left: 4px solid #FCD535;
    padding: 12px 16px;
    margin: 20px 0;
    font-size: 13px;
    color: #474D57;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; }
.logo-accent { color: var(--primary-hover); font-size: 0.55rem; }

.review-content {padding: 12px;}

/* Language Selector */
.lang-selector { position: relative; cursor: pointer; user-select: none; }
.lang-current {
    font-size: 0.7rem; font-weight: 500; color: var(--text-main);
    padding: 3px 9px; border: 1px solid var(--border-color);
    border-radius: 8px; display: flex; align-items: center; gap: 8px;
    background: var(--bg-main); transition: all 0.2s;
}
.lang-current:hover { border-color: #d0d3d6; background: var(--bg-light); }
.lang-dropdown {
    display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
    background: var(--bg-main); border: 1px solid var(--border-color);
    border-radius: 8px; box-shadow: var(--shadow-md); min-width: 140px;
    flex-direction: column; overflow: hidden;
}
.lang-dropdown.show { display: flex; }
.lang-dropdown a { padding: 4px 8px; font-size: 0.7rem; color: var(--text-main); transition: background 0.2s; }
.lang-dropdown a:hover { background: var(--bg-light); color: var(--primary-hover); }

/* Hero Section */
.hero {
    padding: 80px 0 60px; text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}
.hero-meta {
    display: inline-flex; align-items: center; gap: 16px;
    margin-bottom: 24px; font-size: 0.9rem; color: var(--text-muted);
}
.hero-meta .badge { background: #E6F4EA; color: #137333; padding: 4px 10px; border-radius: 100px; font-weight: 600; font-size: 0.8rem; }
.hero h1 { font-size: 2.8rem; max-width: 900px; margin: 0 auto 24px; letter-spacing: -0.03em; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; color: var(--text-body); }
.hero-btn { margin-top: 32px; }
.hero-trust-bar {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border-color);
}
.trust-stat { display: flex; flex-direction: column; align-items: center; }
.trust-stat strong { font-size: 1.5rem; color: var(--text-main); font-weight: 800; }
.trust-stat span { font-size: 0.9rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; font-size: 1.125rem; font-weight: 600;
    border-radius: 8px; transition: all 0.2s ease; cursor: pointer; border: none;
}
.btn-primary { background-color: var(--primary-color); color: var(--text-main); box-shadow: 0 4px 12px rgba(240, 185, 11, 0.2); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(240, 185, 11, 0.3); }

/* Main Content Layout */
.review-layout { display: grid; grid-template-columns: 280px 1fr; gap: 64px; padding: 60px 0; align-items: start; }

/* Sticky TOC */
.toc-sidebar {
    position: sticky; top: 100px; background: var(--bg-light);
    padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border-color);
}
.toc-sidebar h3 { font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.toc-list a {
    font-size: 0.95rem; color: var(--text-body); display: block;
    transition: color 0.2s; border-left: 2px solid transparent; padding-left: 12px; margin-left: -14px;
}
.toc-list a:hover, .toc-list a.active { color: var(--primary-hover); border-left-color: var(--primary-color); font-weight: 600; }

/* Content Sections */
.review-content section { margin-bottom: 80px; scroll-margin-top: 100px; }
.review-content h2 { font-size: 2rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
.review-content h3 { font-size: 1.5rem; margin: 32px 0 16px; }
.review-content p { margin-bottom: 16px; }

/* Check Lists & Warning Boxes */
.check-list { list-style: none; margin-bottom: 24px; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.check-list li::before {
    content: '✓'; position: absolute; left: 0; top: 2px; color: var(--success-color); font-weight: bold;
}
.warning-box {
    background: #FFF8E6; border-left: 4px solid #F0B90B; padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 24px 0; font-size: 0.95rem; color: #8A6D00;
}
.tip-box {
    background: var(--bg-light); border: 1px solid var(--border-color); padding: 16px;
    border-radius: var(--radius-md); margin-top: 16px; font-size: 0.9rem; color: var(--text-muted);
}
.text-success { color: var(--success-color); font-weight: 600; }

/* --- CSS Art & UI Mockups --- */
.css-art-container {
    background: linear-gradient(135deg, #f6f8fa 0%, #e9ecef 100%);
    padding: 40px; border-radius: var(--radius-lg); margin: 24px 0;
    display: flex; justify-content: center; align-items: center;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

/* Window Mockup (Mac style) */
.ui-window {
    background: var(--bg-main); width: 100%; max-width: 400px;
    border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
}
.ui-window.small { max-width: 300px; }
.ui-header {
    background: #f1f3f5; padding: 12px 16px; display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--border-color); position: relative;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.ui-url {
    position: absolute; left: 50%; transform: translateX(-50%);
    background: white; padding: 4px 12px; border-radius: 4px;
    font-size: 0.7rem; color: var(--text-muted); font-family: monospace;
}
.ui-body { padding: 32px 24px; }
.ui-body.center { text-align: center; }
.ui-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.ui-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.ui-input-group { margin-bottom: 16px; text-align: left; }
.ui-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.ui-input {
    height: 40px; border: 1px solid var(--border-color); border-radius: 6px;
    padding: 0 12px; display: flex; align-items: center; font-size: 0.85rem;
    background: var(--bg-light);
}
.ui-input.placeholder { color: #adb5bd; }
.ui-input.highlight { border-color: var(--success-color); color: var(--success-color); background: #e6f4ea; font-weight: 600; }
.ui-btn-mockup {
    background: var(--primary-color); color: var(--text-main); font-weight: 600;
    text-align: center; padding: 12px; border-radius: 6px; margin-top: 24px; font-size: 0.95rem;
}
.ui-btn-mockup.outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-body); margin-top: 16px; }

/* Phone Mockup */
.ui-phone {
    width: 260px; height: 520px; background: #1a1a1a; border-radius: 36px;
    padding: 10px; box-shadow: 0 24px 48px rgba(0,0,0,0.15); position: relative;
}
.ui-notch {
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 24px; background: #1a1a1a; border-radius: 0 0 12px 12px; z-index: 2;
}
.ui-phone-screen {
    background: var(--bg-main); width: 100%; height: 100%; border-radius: 28px;
    overflow: hidden; padding: 60px 20px 20px; display: flex; flex-direction: column; align-items: center;
}
.ui-id-card {
    width: 100%; height: 140px; border: 2px dashed var(--primary-color);
    border-radius: 12px; margin: 24px 0; position: relative; padding: 16px;
    display: flex; gap: 12px; background: rgba(252, 213, 53, 0.05); overflow: hidden;
}
.ui-id-photo { width: 40px; height: 50px; background: #e9ecef; border-radius: 4px; }
.ui-id-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ui-line { height: 6px; background: #e9ecef; border-radius: 3px; }
.ui-line.short { width: 40%; }
.ui-line.medium { width: 70%; }
.ui-line.long { width: 100%; }
.ui-scan-line {
    position: absolute; left: 0; top: 0; width: 100%; height: 2px;
    background: var(--success-color); box-shadow: 0 0 8px var(--success-color);
    animation: scan 2s infinite ease-in-out;
}
@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.ui-status-text { font-size: 0.85rem; color: var(--success-color); font-weight: 500; margin-bottom: auto; }

/* QR Code & OTP Mockup */
.ui-qr-code {
    width: 140px; height: 140px; border: 1px solid var(--border-color);
    margin: 0 auto 24px; padding: 8px; border-radius: 8px;
}
.qr-grid {
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000),
        linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000);
    background-size: 16px 16px; background-position: 0 0, 8px 8px; opacity: 0.8;
}
.ui-otp-display {
    display: flex; gap: 8px; justify-content: center; margin-bottom: 16px;
}
.ui-otp-display span {
    width: 36px; height: 44px; border: 1px solid var(--border-color);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700; color: var(--text-main); background: var(--bg-light);
}

/* Trading Chart Mockup */
.ui-chart-mockup {
    display: flex; align-items: flex-end; justify-content: space-between;
    height: 160px; padding-top: 20px;
}
.candle {
    position: relative; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end; width: 14px;
}
.candle .wick { position: absolute; width: 2px; background: var(--text-muted); z-index: 1; }
.candle .body { position: relative; width: 100%; border-radius: 2px; z-index: 2; }
.candle.up .body { background: var(--success-color); }
.candle.up .wick { background: var(--success-color); }
.candle.down .body { background: var(--danger-color); }
.candle.down .wick { background: var(--danger-color); }

/* Launchpool Mockup */
.ui-pool {
    background: linear-gradient(135deg, #2b3139 0%, #181a20 100%);
    border-radius: 16px; padding: 24px; color: white; width: 100%; max-width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.ui-pool-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ui-pool-coin { display: flex; align-items: center; gap: 12px; }
.ui-coin-icon {
    width: 36px; height: 36px; background: #F3BA2F; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #000; font-size: 1.2rem;
}
.ui-apy { color: var(--success-color); font-size: 1.8rem; font-weight: 800; }
.ui-pool-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin: 16px 0; overflow: hidden; }
.ui-pool-progress { width: 75%; height: 100%; background: var(--primary-color); }

/* Web3 Wallet Mockup */
.ui-web3-wallet {
    background: #1E2329; border-radius: 24px; width: 100%; max-width: 320px;
    padding: 24px 20px; color: white; box-shadow: 0 24px 48px rgba(0,0,0,0.2);
    position: relative; overflow: hidden;
}
.ui-web3-header { display: flex; justify-content: space-between; margin-bottom: 24px; align-items: center; }
.ui-web3-title { font-size: 1.1rem; font-weight: 600; }
.ui-web3-network { background: #2B3139; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; }
.ui-web3-balance { font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.ui-web3-subtitle { color: #848E9C; font-size: 0.9rem; margin-bottom: 24px; }
.ui-web3-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.ui-web3-btn { background: #2B3139; border-radius: 12px; height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; color: #EAECEF; transition: background 0.2s; cursor: pointer; }
.ui-web3-btn:hover { background: #3b424a; }
.ui-web3-icon { width: 24px; height: 24px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; font-size: 14px; }
.ui-web3-tabs { display: flex; gap: 20px; border-bottom: 1px solid #2B3139; padding-bottom: 12px; margin-bottom: 16px; }
.ui-web3-tab { color: #848E9C; font-size: 0.95rem; font-weight: 500; cursor: pointer; }
.ui-web3-tab.active { color: white; position: relative; }
.ui-web3-tab.active::after { content: ''; position: absolute; bottom: -13px; left: 0; width: 100%; height: 2px; background: var(--primary-color); }
.ui-web3-asset { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ui-web3-asset:last-child { border-bottom: none; }
.ui-web3-asset-left { display: flex; align-items: center; gap: 12px; }
.ui-web3-asset-icon { width: 36px; height: 36px; background: #F3BA2F; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 800; font-size: 1.1rem; }
.ui-web3-asset-icon.eth { background: #627EEA; color: white; }
.ui-web3-asset-name { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.ui-web3-asset-network { font-size: 0.7rem; color: #848E9C; background: #2B3139; padding: 2px 6px; border-radius: 4px; display: inline-block; }
.ui-web3-asset-right { text-align: right; }
.ui-web3-asset-amount { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.ui-web3-asset-value { font-size: 0.8rem; color: #848E9C; }

/* Flowchart Mockup */
.ui-flowchart { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 400px; }
.ui-flow-step { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.ui-flow-icon { width: 48px; height: 48px; background: #e6f4ea; color: #137333; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; flex-shrink: 0; }
.ui-flow-icon.warning { background: #FFF8E6; color: #F0B90B; }
.ui-flow-icon.safe { background: #E6F4EA; color: #0ECB81; }
.ui-flow-content h5 { margin-bottom: 4px; font-size: 1.05rem; }
.ui-flow-content p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.ui-flow-arrow { width: 2px; height: 24px; background: var(--border-color); margin: 0 auto; position: relative; z-index: 1; }
.ui-flow-arrow::after { content: ''; position: absolute; bottom: -4px; left: -4px; border-width: 5px 5px 0; border-style: solid; border-color: var(--border-color) transparent transparent transparent; }

/* API Key Mockup */
.ui-api-card { background: var(--bg-main); border: 1px dashed var(--border-color); border-radius: 12px; padding: 24px; width: 100%; max-width: 450px; box-shadow: inset 0 0 20px rgba(0,0,0,0.01); }
.ui-api-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ui-api-title { font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.ui-api-status { background: #e6f4ea; color: #137333; padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.ui-api-field { margin-bottom: 16px; }
.ui-api-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.ui-api-value { background: var(--bg-light); border: 1px solid var(--border-color); padding: 10px 12px; border-radius: 6px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-main); word-break: break-all; display: flex; justify-content: space-between; align-items: center; }
.ui-api-copy { color: var(--primary-color); cursor: pointer; font-weight: 600; font-family: var(--font-family); font-size: 0.8rem; }
.ui-api-permissions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.ui-api-perm { font-size: 0.75rem; padding: 6px 12px; border-radius: 100px; border: 1px solid var(--border-color); color: var(--text-muted); background: var(--bg-main); }
.ui-api-perm.active { background: #FFF8E6; border-color: var(--primary-color); color: #b38808; font-weight: 600; }

/* Score Card */
.score-card {
    display: flex; background: var(--bg-main); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 32px; gap: 40px; box-shadow: var(--shadow-sm); margin-bottom: 40px;
}
.score-overall { text-align: center; min-width: 120px; padding-right: 40px; border-right: 1px solid var(--border-color); }
.score-number { font-size: 3.5rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-bottom: 8px; }
.score-stars { color: var(--primary-color); font-size: 1.25rem; margin-bottom: 8px; }
.score-details { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.score-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border-color); padding-bottom: 8px; }
.score-item span:first-child { font-weight: 500; }
.score-item span:last-child { font-weight: 700; color: var(--text-main); }

/* Pros & Cons */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pc-box { background: var(--bg-light); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--border-color); }
.pc-box h4 { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; margin-bottom: 16px; }
.pc-box.pros h4 { color: var(--success-color); }
.pc-box.cons h4 { color: var(--danger-color); }
.pc-list { list-style: none; }
.pc-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 0.95rem; }
.pc-list li::before {
    content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
    background-size: contain; background-repeat: no-repeat;
}
.pros .pc-list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230ECB81' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); }
.cons .pc-list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6465D' stroke-width='3' 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"); }

/* Data Tables */
.data-table {
    width: 100%; border-collapse: collapse; margin: 24px 0;
    background: var(--bg-main); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: 0 0 0 1px var(--border-color);
}
.data-table th, .data-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border-color); }
.data-table th { background: var(--bg-light); font-weight: 600; color: var(--text-main); }
.data-table tr:last-child td { border-bottom: none; }

/* Step Guide */
.step-guide { margin: 32px 0; }
.step-item { display: flex; gap: 24px; margin-bottom: 32px; }
.step-number {
    width: 40px; height: 40px; background: var(--primary-color); color: var(--text-main);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800; flex-shrink: 0;
}
.step-content h4 { font-size: 1.25rem; margin-bottom: 8px; margin-top: 4px; }

/* Accordion FAQ */
.faq-accordion { border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%; text-align: left; padding: 20px 24px; background: var(--bg-main);
    border: none; font-size: 1.125rem; font-weight: 600; color: var(--text-main);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background: var(--bg-main); padding: 0 24px; }
.faq-item.active .faq-answer { padding: 0 24px 24px; max-height: 500px; }

/* Call to Action Box */
.cta-box {
    background: var(--text-main); color: white; padding: 48px;
    border-radius: var(--radius-lg); text-align: center; margin: 60px 0;
    position: relative; overflow: hidden;
}
.cta-box h3 { color: white; font-size: 2rem; margin-bottom: 16px; }
.cta-box p { font-size: 1.125rem; color: #848E9C; margin-bottom: 32px; }

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-main); padding: 16px 24px; border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05); z-index: 99;
}

/* --- Conversion & SEO UI Elements --- */
/* Author Meta (E-E-A-T) */
.author-meta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: #EAECEF; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.author-info { text-align: left; }
.author-name { font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.update-time { display: flex; align-items: center; gap: 6px; }
.update-time::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--success-color); border-radius: 50%; box-shadow: 0 0 0 2px rgba(14, 203, 129, 0.2); }

/* TL;DR Box (Featured Snippet Optimization) */
.tldr-box { background: #FAFAFA; border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color); padding: 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: -20px auto 60px; max-width: 900px; box-shadow: var(--shadow-sm); }
.tldr-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.tldr-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tldr-list li { position: relative; padding-left: 24px; font-size: 0.95rem; color: var(--text-body); }
.tldr-list li::before { content: '⚡'; position: absolute; left: 0; top: 0; font-size: 0.9rem; }

/* Coupon Card CTA (Psychological Trigger) */
.coupon-card { background: linear-gradient(135deg, #181A20 0%, #0B0E11 100%); color: white; padding: 40px; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; border: 1px solid #2B3139; box-shadow: 0 24px 48px rgba(0,0,0,0.2); margin: 60px 0; }
.coupon-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-color), #F3BA2F); }
.coupon-badge { position: absolute; top: 16px; right: -32px; background: var(--danger-color); color: white; padding: 4px 40px; font-size: 0.75rem; font-weight: 700; transform: rotate(45deg); letter-spacing: 1px; }
.coupon-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.coupon-value { font-size: 3.5rem; font-weight: 800; color: var(--primary-color); margin: 16px 0; line-height: 1; text-shadow: 0 4px 12px rgba(240, 185, 11, 0.3); }
.coupon-desc { color: #848E9C; margin-bottom: 32px; font-size: 1.05rem; }
.coupon-btn { background: var(--primary-color); color: #000; font-size: 1.25rem; font-weight: 800; padding: 18px 48px; border-radius: 12px; display: inline-block; transition: all 0.3s; box-shadow: 0 8px 24px rgba(240, 185, 11, 0.25); text-transform: uppercase; }
.coupon-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(240, 185, 11, 0.4); background: var(--primary-hover); }

/* Global Sticky Bottom CTA */
.sticky-bottom-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); padding: 16px 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.08); z-index: 1000; border-top: 1px solid var(--border-color); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.sticky-bottom-cta.visible { transform: translateY(0); }
.sticky-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-text { display: flex; flex-direction: column; }
.sticky-title { font-weight: 700; color: var(--text-main); font-size: 1.1rem; }
.sticky-subtitle { font-size: 0.85rem; color: var(--success-color); font-weight: 600; }
.sticky-btn { background: var(--primary-color); color: #000; padding: 12px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; box-shadow: 0 4px 12px rgba(240, 185, 11, 0.2); transition: all 0.2s; white-space: nowrap; text-align: center; }
.sticky-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Footer */
footer { background: var(--bg-light); border-top: 1px solid var(--border-color); padding: 60px 0 40px; color: var(--text-muted); }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-disclaimer { font-size: 0.85rem; max-width: 900px; line-height: 1.6; }
.footer-copyright { font-size: 0.875rem; border-top: 1px solid var(--border-color); padding-top: 24px; width: 100%; }

/* Responsive */
@media (max-width: 1024px) {
    .review-layout { grid-template-columns: 1fr; gap: 40px; }
    .toc-sidebar { display: none; }
    .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .hero-trust-bar { flex-direction: column; gap: 24px; }
    .score-card { flex-direction: column; gap: 24px; text-align: center; }
    .score-overall { border-right: none; border-bottom: 1px solid var(--border-color); padding-right: 0; padding-bottom: 24px; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .data-table { display: block; overflow-x: auto; }
    body { padding-bottom: 80px; }
    
    .tldr-list { grid-template-columns: 1fr; }
    .coupon-value { font-size: 2.5rem; }
    .coupon-card { padding: 32px 20px; }
    .sticky-container { flex-direction: column; text-align: center; }
    .sticky-btn { width: 100%; }
}
