/* ================================================== */
/* css/style.css                                      */
/* Master Stylesheet - Your Honest AI Guide           */
/* Dark theme with cyan accent                        */
/* ================================================== */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.8);
    --bg-glass: rgba(18, 18, 26, 0.6);
    --accent-cyan: #00f0ff;
    --accent-cyan-dim: rgba(0, 240, 255, 0.15);
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border-subtle: rgba(0, 240, 255, 0.1);
    --border-glow: rgba(0, 240, 255, 0.3);
    --tier-good: #00ff88;
    --tier-neutral: #ffb340;
    --tier-warning: #ff9500;
    --tier-poor: #ff4060;
    --tier-danger: #ff2040;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-glow: 0 0 20px var(--accent-cyan-glow);
    --transition-fast: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ---- Scrollbar Styling (WebKit + Firefox) ---- */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan-dim) var(--bg-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan-dim); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan-glow); }

/* ---- Selection ---- */
::selection {
    background: var(--accent-cyan-dim);
    color: var(--text-primary);
}

/* ---- Global Layout ---- */
.site-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ---- Navbar ---- */
.navbar {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 110px;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    margin: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: block;
    border: 1px solid transparent;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
    border-color: var(--border-glow);
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

.nav-avatar {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
}

.nav-hamburger {
    display: none;
}

.nav-hamburger button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--accent-cyan);
    font-size: 1.25rem;
}

/* ---- Navbar Title (Alfa Slab One) ---- */
.nav-title {
    display: flex;
    align-items: center;
    margin-left: 5px;
    white-space: nowrap;
}

.nav-title a {
    font-family: 'Alfa Slab One', system-ui, sans-serif;
    font-size: 2.4rem;
    color: #00f0ff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* ---- Dropdown ---- */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #12121a;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1001;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.15s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
    padding-left: 1.5rem;
}

/* ---- Homepage ---- */
.update-banner {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.update-banner small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hero-homepage {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-content .sublead {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #00c8d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--accent-cyan);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.categories-container {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.categories-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-card:hover {
    background: var(--bg-glass);
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
}

.cat-icon {
    font-size: 2rem;
    display: block;
}

.category-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.category-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.changelog-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.changelog-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.change-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.change-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.change-list li:last-child {
    border-bottom: none;
}

.changelog-link {
    text-align: center;
}

.changelog-link a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.changelog-link a:hover {
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* ---- Review Pages & Platform Reviews Containers ---- */
.review-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.platform-reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.platform-header {
    text-align: center;
    margin-bottom: 32px;
}

.platform-header h1 {
    color: var(--accent-cyan);
    font-size: 2rem;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.stat-value {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    font-weight: bold;
}

/* ---- Key Takeaways ---- */
.key-takeaways {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.key-takeaways h2 {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.key-takeaways p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.tier-published { color: var(--tier-good); }
.tier-review { color: var(--accent-cyan); }
.tier-queued { color: var(--tier-neutral); }

/* ---- Box Sections ---- */
.box-section {
    background-color: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.box-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.box-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 0 1.25rem;
}

/* Box Section Centered Variant */
.box-section.centered {
    text-align: center;
}

.box-section.centered p {
    text-align: center;
    max-width: 100%;
}

.box-section.centered .btn-primary {
    display: inline-block;
    margin-top: 1rem;
}

/* ---- Verdict Box ---- */
.verdict-box {
    background: var(--accent-cyan-dim);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    display: block;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.verdict-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

/* ---- Register Box ---- */
.register-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-left: 3px solid var(--accent-cyan);
    text-align: center;
}

.register-btn {
    display: inline-block;
    text-align: center;
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.register-btn:hover {
    background-color: #00c8d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.3);
}

.register-note {
    font-size: 0.9rem;
    color: var(--tier-good);
    font-weight: 600;
    margin: 0;
}

/* ---- Affiliate Disclosure ---- */
.affiliate-disclosure {
    max-width: 65%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent-cyan);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    text-align: center;
}

.affiliate-disclosure h3 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.affiliate-disclosure .signature {
    font-style: italic;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* ---- Ranking Table ---- */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(10, 10, 15, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.ranking-table th,
.ranking-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
}

.ranking-table th {
    background: var(--bg-secondary);
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-table tr:nth-child(even) {
    background-color: var(--bg-secondary);
}

.ranking-table .review-link {
    color: var(--accent-cyan);
    text-decoration: none;
}

.ranking-table .review-link:hover {
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

.tier-good { background: rgba(0, 255, 136, 0.03); }
.tier-neutral { background: rgba(255, 179, 64, 0.03); }
.tier-warning { background: rgba(255, 149, 0, 0.03); }
.tier-poor { background: rgba(255, 64, 96, 0.03); }
.tier-danger { background: rgba(255, 32, 64, 0.03); }

/* ==== Score Grades for Tables ==== */
.score-high { color: var(--tier-good); }
.score-med { color: var(--accent-cyan); }
.score-low { color: var(--tier-warning); }
.score-verylow { color: var(--tier-danger); }

.grade-a, .grade-A { color: var(--tier-good); }
.grade-b, .grade-B { color: var(--accent-cyan); }
.grade-c, .grade-C { color: var(--tier-warning); }
.grade-d, .grade-D { color: var(--tier-danger); }

.category-badge {
    display: inline-block;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-link {
    color: var(--accent-cyan);
    text-decoration: none;
}

.review-link:hover {
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 2rem 4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* LEFT COLUMN: Brand + Links */
.footer-box {
    text-align: center;
    border: 2px solid var(--accent-cyan);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-glow);
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* RIGHT COLUMN: Affiliate Disclosure */
.footer-affiliate {
    padding: 2.5rem;
    background: rgba(18, 18, 26, 0.6);
    border: 2px solid var(--accent-cyan);
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-affiliate h3 {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-align: center;
}

.footer-affiliate p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-affiliate a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-affiliate a:hover {
    text-decoration: underline;
}

.affiliate-symbol {
    font-size: 0.9rem;
}

/* ---- Footer Internal Formatting (RESTORED) ---- */
.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-legal {
    margin: 1.5rem 0;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

.footer-legal a:not(:last-child)::after {
    content: "•";
    margin: 0 8px;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-subtle);
    transition: all 0.25s;
    color: var(--accent-cyan);
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    transition: all 0.25s;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.15);
    background: var(--accent-cyan-dim);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ---- Footer Responsive ---- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-box,
    .footer-affiliate {
        padding: 1.5rem;
    }
}

/* ---- Collapsible Sections ---- */
.collapsible-container {
    margin: 2rem 0;
}

.collapsible-section {
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 2px solid var(--border-subtle);
    transition: border-color 0.2s;
}

.collapsible-section[open] {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.collapsible-header::-webkit-details-marker {
    display: none;
}

.collapsible-header:hover {
    background-color: rgba(0, 240, 255, 0.08);
}

.collapsible-header .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.collapsible-header .title {
    flex: 1;
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
}

.collapsible-header .score {
    background-color: var(--accent-cyan-dim);
    color: var(--accent-cyan);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.toggle-icon {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.collapsible-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: left;
}

.collapsible-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.collapsible-content strong {
    color: var(--accent-cyan);
}

.collapsible-content h4 {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--text-primary);
}

/* ---- Blog Grid Layout ---- */
/* ===== Blog Post Container ===== */
.blog-post-container {
    max-width: 950px; 
    margin: 2.5rem auto;
    padding: 2.5rem 3rem;
    background: var(--card-bg, #111118);
    border: 1px solid var(--border-color, #222230);
    border-radius: 12px;
}

/* ===== Section Titles (bold + italic) ===== */
.blog-post-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: var(--accent-cyan, #00f0ff);
    margin: 1.75rem 0 0.75rem 0;
    line-height: 1.4;
}

.blog-post-section-title:first-child {
    margin-top: 0;
}

/* ===== Section Text (normal) ===== */
.blog-post-section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary, #e0e0e0);
    margin-bottom: 1.5rem;
}

/* ===== Signature Box (right-aligned) ===== */
.blog-signature-box {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #222230);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted, #888);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 3.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.blog-category {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

/* ---- Filter Buttons & Pagination ---- */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.filter-btn.active {
    color: #0a0a0f;
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a {
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.pagination .current {
    padding: 8px 16px;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 6px;
    font-weight: bold;
}

.pagination .disabled {
    padding: 8px 16px;
    color: var(--text-muted);
}

.empty-blog {
    text-align: center;
    padding: 48px;
}

.empty-blog h2 {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ---- Hero Headers (Review Pages) ---- */
.hero-header h1,
.category-hero h1 {
    text-align: center;
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-header .lead,
.hero-header .sublead,
.category-hero .lead,
.category-hero .sublead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-header p,
.category-hero p {
    text-align: center;
}

/* ---- Category Hero ---- */
.category-hero {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    margin-bottom: 3rem;  /* ← Add this */
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.category-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.category-hero .lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    color: var(--text-secondary);
}

.category-hero .sublead {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.category-hero .cat-emoji {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1;
    vertical-align: middle;
    margin-right: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* ---- Table Wrapper for Platform Pages ---- */
.table-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.table-wrapper h2 {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    padding: 24px;
    margin: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table-wrapper th {
    text-align: left;
    padding: 12px;
    color: var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-wrapper td {
    padding: 12px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.table-wrapper tr:hover {
    background: rgba(0, 240, 255, 0.1);
    transition: background 0.2s;
}

/* ---- Rank Cell & Badges ---- */
.rank-cell {
    color: #666;
    font-weight: 600;
}

.verified-badge {
    color: var(--tier-good);
    font-size: 0.7rem;
    margin-left: 4px;
}

.unverified-badge {
    color: #555;
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Pending / Queued States */
.pending-text { color: #555; font-style: italic; }
.tbd-text { color: #444; font-style: italic; }
.coming-soon-text { color: #555; font-size: 0.85rem; }
.queued-text { color: #444; font-size: 0.85rem; }
.platform-name-pending { color: #ccc; font-weight: 600; }
.platform-name-queued { color: #999; font-weight: 500; }

.review-arrow { font-size: 0.85rem; }

/* ---- Section Dividers ---- */
.divider-row {
    height: 0;
    padding: 0 !important;
    border-top: 4px solid var(--accent-cyan);
    margin: 1.5rem 0;
}

.section-divider-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--accent-cyan);
    padding: 2px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* ---- No Results ---- */
.no-results {
    padding: 48px;
    text-align: center;
}

.no-results p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.no-results .sub {
    color: #444;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .table-wrapper { overflow-x: auto; }
    .ranking-table { min-width: 800px; }
}

/* ===== Contact Page ===== */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Form Container */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot (hidden from humans) */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Submit Button */
.contact-form .btn-primary {
    width: 100%;
    padding: 0.85rem;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
}

/* Error Display */
.contact-errors {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.contact-errors ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #ff6b7a;
}

.contact-errors li {
    margin-bottom: 0.25rem;
}

/* Success / Rate Limit State */
.contact-success {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-success h2 {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}

/* ---- Services Page: How I Work Steps ---- */
.steps-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem 1rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    text-align: center;
}

.step-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-cyan-dim);
    border: 1px solid var(--border-glow);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-label {
    display: block;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    display: block;
}

/* ---- Services Page: Project Cards ---- */
.project-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}

.project-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.08);
}

.project-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
    text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.project-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ---- Services Page: Package Cards ---- */
.package-card {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: all 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.package-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
}

.package-featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.package-featured:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 32px rgba(0, 240, 255, 0.2);
    transform: translateY(-4px);
}

.package-icon {
    display: block;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.package-card h3 {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    text-align: center;
    margin-bottom: 0.25rem;
}

.package-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.package-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.package-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.package-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.package-features li {
    margin-bottom: 10px;
    padding-left: 0;
}

.checkmark {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

/* ---- Intro Story / Timeline Section ---- */
.intro-story {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.intro-story .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-story h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Vertical line running through timeline */
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--border-subtle),
        var(--accent-cyan),
        var(--border-subtle)
    );
}

.timeline-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Dot on the timeline line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.75rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan-glow);
    border: 2px solid var(--bg-primary);
    z-index: 1;
}

.timeline-item:hover {
    border-color: var(--border-glow);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.1);
}

/* ---- Global Responsive ---- */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-hamburger { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        background: #12121a;
        padding: 1rem;
        gap: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links > li { width: 100%; }
    .nav-avatar { display: none; }
    
    /* Category Grid - Single Column */
    .category-grid { grid-template-columns: 1fr; }
    
    /* Blog Grid - Single Column */
    .blog-grid { grid-template-columns: 1fr; }
    
    /* Tables - Scrollable */
    .table-wrapper { overflow-x: auto; }
    .table-wrapper table { min-width: 800px; }
    
    /* Footer - Stack Columns */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-box,
    .footer-affiliate {
        padding: 1.5rem;
    }
    
    /* Leaderboard Mobile */
    .leaderboard-desktop { display: none !important; }
    .leaderboard-mobile { display: block !important; }
}

/* ================================================== */
/* New Review Page Classes (Stage 2)                  */
/* Collapsed sections + pricing + scoring              */
/* ================================================== */

/* --- Affiliate Badge --- */
.review-affiliate-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(109, 76, 159, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 1.5rem;
}

.review-affiliate-badge.part-of {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
}

.review-affiliate-badge.not-part {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-muted);
}

.coin-icon {
    margin-right: 3px;
    font-style: normal;
}

/* --- Pricing Grid --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: contents;
}

.pricing-tier {
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    background: rgba(18, 18, 26, 0.6);
}

.pricing-tier:last-child {
    border-right: none;
}

.pricing-tier-header {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-tier-price-monthly {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-tier-price-annual {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-tier-free {
    background: rgba(0, 255, 136, 0.05);
    border-left: 1px solid var(--border-subtle);
}

.pricing-tier-free .pricing-tier-price-monthly {
    color: var(--tier-good);
}

/* --- Score Cards Row --- */
.score-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.score-card-single {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.score-card-single:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 240, 255, 0.1);
}

.score-label-single {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.score-value-single {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score-value-human {
    color: var(--tier-good);
}

.score-value-composite {
    color: var(--accent-cyan);
}

.score-value-ai {
    color: var(--tier-neutral);
}

.score-grade-single {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
}

/* --- Praises & Concerns Grid --- */
.praises-concerns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.praises-column,
.concerns-column {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
}

.praises-column h3 {
    color: var(--tier-good);
    margin-bottom: 1rem;
}

.concerns-column h3 {
    color: var(--tier-danger);
    margin-bottom: 1rem;
}

.praise-item,
.concern-item {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.praise-item {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--tier-good);
}

.concern-item {
    background: rgba(255, 32, 64, 0.05);
    border-left: 3px solid var(--tier-danger);
}

/* --- AI Summary Block --- */
.ai-summary-block {
    background: rgba(18, 18, 26, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.summary-line {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-line strong {
    color: var(--accent-cyan);
}

.verdict-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.verdict-meets {
    background: rgba(0, 255, 136, 0.15);
    color: var(--tier-good);
}

.verdict-caution {
    background: rgba(255, 179, 64, 0.15);
    color: var(--tier-neutral);
}

.verdict-fails {
    background: rgba(255, 32, 64, 0.15);
    color: var(--tier-danger);
}

/* --- Collapsible Review Sections --- */
.review-details {
    margin-bottom: 1.5rem;
}

.review-details[open] {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.review-details summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.review-details summary:hover {
    background: rgba(0, 240, 255, 0.08);
}

.review-details summary::-webkit-details-marker {
    display: none;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    text-align: left;
}

.section-score-pill {
    background: rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
}

.toggle-icon-arrow {
    font-size: 1rem;
    color: var(--accent-cyan);
    transition: transform 0.2s ease;
}

.review-details[open] summary .toggle-icon-arrow {
    transform: rotate(180deg);
}

.details-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.details-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.details-content h4 {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--text-primary);
}

/* --- URL Link Display --- */
.document-url {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    word-break: break-all;
}

.document-url a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.document-url a:hover {
    text-decoration: underline;
}

/* --- Checklist Items --- */
.checklist-container {
    margin-top: 1.25rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border-left: 3px solid;
}

.checklist-item.pass {
    border-left-color: var(--tier-good);
    background: rgba(0, 255, 136, 0.05);
}

.checklist-item.fail {
    border-left-color: var(--tier-danger);
    background: rgba(255, 32, 64, 0.05);
}

.checklist-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checklist-status {
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.checklist-item.pass .checklist-status {
    color: var(--tier-good);
}

.checklist-item.fail .checklist-status {
    color: var(--tier-danger);
}

/* --- Citations List --- */
.citations-list {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.citations-list h5 {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.citation-item {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.citation-item a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.citation-item a:hover {
    text-decoration: underline;
}

/* --- Human Findings Bullets --- */
.human-findings {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.finding-item {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.finding-item::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

/* --- Final Verdict Box --- */
.final-verdict-box {
    background: linear-gradient(135deg, rgba(109, 76, 159, 0.1), rgba(0, 240, 255, 0.05));
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
}

.verdict-stars {
    position: absolute;
    font-size: 1.25rem;
    color: var(--accent-cyan);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.star-tl { top: 1rem; left: 1rem; }
.star-tr { top: 1rem; right: 1rem; }
.star-bl { bottom: 1rem; left: 1rem; }
.star-br { bottom: 1rem; right: 1rem; }

.verdict-content {
    position: relative;
    z-index: 10;
}

.verdict-content h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.verdict-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.verdict-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Review Page Responsive --- */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }
    
    .pricing-tier {
        border-right: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .pricing-tier:nth-child(2n) {
        border-right: none;
    }
    
    .pricing-tier:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .score-cards-row {
        grid-template-columns: 1fr;
    }
    
    .praises-concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .final-verdict-box {
        padding: 1.5rem;
    }
}

/* ---- Additional Review Page Styles ---- */
.review-content-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.review-header {
    text-align: center;
    margin-bottom: 32px;
}

.review-header h1 {
    color: var(--accent-cyan);
    font-size: 2rem;
    margin: 0 0 8px 0;
}

.platform-url {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.platform-url a {
    color: var(--accent-cyan);
    text-decoration: none;
}

/* ---- Score Box ---- */
.score-box {
    display: inline-block;
    border: 2px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 8px 24px;
}

.score-box .total {
    color: var(--accent-cyan);
    font-size: 2.5rem;
    font-weight: bold;
}

.score-box .out {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.quick-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

/* ---- Verify Box ---- */
.verify-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.verify-box h3 {
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-bottom: 16px;
}

.verify-steps ol {
    margin-left: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.verify-yourself-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.verify-btn {
    padding: 10px 24px;
    border: 1px solid var(--accent-cyan);
    border-radius: 4px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.verify-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

/* ---- Disclosure Banner ---- */
.disclosure-banner {
    border: 1px solid var(--accent-cyan);
    background: var(--bg-secondary);
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.disclosure-banner p {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* ---- Final Thoughts Box ---- */
.final-thoughts-box {
    position: relative;
    background: linear-gradient(to bottom right, var(--bg-secondary), var(--bg-primary));
    border: 2px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.corner-star {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.star-tl { top: 8px; left: 8px; }
.star-tr { top: 8px; right: 8px; }
.star-bl { bottom: 8px; left: 8px; }
.star-br { bottom: 8px; right: 8px; }

/* ---- Nav Back ---- */
.nav-back {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.nav-back:hover {
    text-decoration: underline;
}

/* ---- Affiliate Disclosure Page ---- */
.disclosure-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-point {
    margin-bottom: 2rem;
    padding-left: 0;
}

.disclosure-point h3 {
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.affiliate-symbol-inline {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* ---- Review Hero ---- */
.review-hero {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.platform-hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.score-card {
    transition: transform 0.2s ease;
}

.score-card:hover {
    transform: translateY(-3px);
}

.score-pill {
    display: inline-block;
    font-size: 0.85rem;
}

.checkbox-item {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.blog-share-buttons {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.share-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}
.share-buttons-row {
    display: flex;
    gap: 0.5rem;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: var(--bg-secondary);
    color: var(--text-color);
    transition: background 0.2s;
}
.share-btn:hover {
    background: var(--accent-cyan);
    color: #000;
}
.copy-link {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem;
    width: auto;
}

/* ================================================== */
/* Category Pages Specific                            */
/* (Items not already covered in earlier sections)    */
/* ================================================== */

/* ---- Category Badge Variants ---- */
.category-badge-dim {
    opacity: 0.6;
}

/* ---- Review Section Divider (alternate style) ---- */
.review-section-divider {
    position: relative;
    border-top: 5px solid var(--accent-cyan);
    margin: 0;
    height: 0;
}

.review-section-label {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--accent-cyan);
    padding: 2px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* ---- Category Card Hover Override ---- */
.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan) !important;
}

/* ---- Footer Content (legacy support) ---- */
.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Changelog Timeline */
.changelog-timeline {
    max-width: 800px;
    margin: 0 auto;
}
.changelog-entry {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}
.changelog-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.changelog-date {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.changelog-review-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.changelog-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.changelog-description {
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.changelog-affected-reviews {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.changelog-affected-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.changelog-review-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.changelog-review-link {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: background 0.2s;
}
.changelog-review-link:hover {
    background: var(--accent-cyan);
    color: #000;
}

/* Coming Soon Landing Page */
.coming-soon-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(109, 76, 255, 0.05) 100%);
}

.coming-soon-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.coming-soon-hero .sublead {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}
.aff-mark {
    color: var(--accent-cyan, #00f0ff);
    font-size: 0.7em;
    margin-left: 1px;
    opacity: 0.8;
}
/* ================================================== */
/* Review Page v2 Additions                           */
/* Section 1.5 policy box + toggle hints + percents   */
/* ================================================== */

/* --- Section 1.5: Policy Links Box --- */
.policy-links-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-cyan);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
}

.policy-links-left,
.policy-links-right {
    flex: 1;
}

.policy-links-right {
    text-align: right;
}

.policy-links-center {
    flex: 2;
    text-align: center;
    color: var(--accent-cyan);
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 8px var(--accent-cyan-glow);
    white-space: nowrap;
}

.policy-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 6px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.policy-link:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

/* --- Toggle Hint ("Click Arrow to View") --- */
.toggle-hint {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

/* --- Hero Last Updated --- */
.hero-last-updated {
    font-size: 0.85rem;
}

/* --- Score Percent Labels --- */
.score-percent {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

.score-percent-human {
    font-size: 1.5rem;
    color: var(--tier-good);
    margin-top: 0.25rem;
}

.score-percent-ai {
    font-size: 1.5rem;
    color: var(--tier-neutral);
    margin-top: 0.25rem;
}

.score-percent-composite {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 0.25rem;
}

/* --- Trust Assessment Pill (qualitative variant) --- */
.trust-pill-qualitative {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}

/* --- Pricing Tier Links --- */
.pricing-tier-link {
    color: inherit;
    text-decoration: none;
}

.pricing-tier-link:hover {
    color: var(--tier-good);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.pricing-disclaimer-link {
    font-size: 0.8rem;
}

.pricing-unit {
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-unit-annual {
    font-size: 0.8rem;
    font-weight: 400;
}

/* --- Empty / Pending Notes --- */
.empty-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* --- UX Verdict Intro (Human block) --- */
.ux-verdict-intro {
    background: rgba(0, 255, 136, 0.04);
    border-left: 3px solid var(--tier-good);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Human Results Block (one-container layout) --- */
.human-results-block {
    background: var(--bg-card);
}

.human-section {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(18, 18, 26, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.human-section:last-child {
    margin-bottom: 0;
}

.human-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.human-section-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

/* --- Bottom CTA --- */
.review-bottom-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    margin-top: 2rem;
}

.review-bottom-cta h2 {
    margin-bottom: 1rem;
}

.review-bottom-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* --- Admin Alert --- */
.review-admin-alert {
    margin-bottom: 2rem;
}

/* --- Trust Pill Qualitative --- */
.trust-pill-qualitative {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}

/* --- Review Page Responsive Additions --- */
@media (max-width: 768px) {
    .policy-links-box {
        flex-direction: column;
        text-align: center;
    }

    .policy-links-left,
    .policy-links-right {
        text-align: center;
    }

    .policy-links-center {
        order: -1;
        width: 100%;
    }
}
/* ================================================== */
/* EOF - End of Master Stylesheet                      */
/* Your Honest AI Guide                               */
/*                                                    */
/* Cleanup notes:                                      */
/* - Removed duplicate .categories-container blocks    */
/* - Removed duplicate .filter-btn definitions         */
/* - Removed duplicate .coin-icon definitions          */
/* - Removed duplicate .stats-bar/.stat-item blocks    */
/* - Removed duplicate .ranking-table blocks          */
/* - Removed duplicate .key-takeaways blocks          */
/* - Removed duplicate .table-wrapper blocks          */
/* - Removed duplicate .no-results blocks             */
/* - Removed duplicate .review-link blocks            */
/* - Removed duplicate .nav-back blocks               */
/* - Removed duplicate .corner-star positioning       */
/* - Removed duplicate .timeline-item hover           */
/* - Consolidated .star-* positioning (shared)        */
/* - Fixed .footer-tagline/.footer-legal/.footer-     */
/*   social that were dropped during cleanup          */
/* - Added bottom spacing to .site-footer             */
/* - Centered .footer-affiliate h3                     */
/* - Fixed .pricing-grid to auto-fit for 2-5 tiers    */
/* - Fixed .timeline-item:hover (was truncated)       */
/* ================================================== */