/* VideoGT Global Styles */

/* Self-hosted fonts */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/space-grotesk-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('fonts/outfit-latin.woff2') format('woff2');
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: rgba(18, 18, 26, 0.85);
    --bg-card: rgba(26, 26, 36, 0.85);
    --glass-blur: blur(12px);
    --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%2300ff88' fill-opacity='0.03' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
    --accent-primary: #00ff88;
    --accent-secondary: #00d4ff;
    --accent-tertiary: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #8a8a9a;
    --border-color: #2a2a3a;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Subtle AI grid background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 136, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.025) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
}

/* Subtle gradient overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
}

/* Ensure content sits above background */
body > * {
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem 4rem;
    background: linear-gradient(to bottom,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 20%,
        rgba(10, 10, 15, 0.7) 40%,
        rgba(10, 10, 15, 0.5) 55%,
        rgba(10, 10, 15, 0.3) 70%,
        rgba(10, 10, 15, 0.15) 85%,
        transparent 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo span { -webkit-text-fill-color: var(--text-secondary); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent-primary); }
.nav-links a:hover::after { width: 100%; }

/* Mobile Menu Toggle */

.mobile-menu-label {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* X animation when open */
.mobile-menu-label.open .hamburger {
    background: transparent;
}

.mobile-menu-label.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-label.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px #000;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Keyboard Focus Styles */
a:focus-visible,
.btn:focus-visible,
.btn-submit:focus-visible,
.nav-links a:focus-visible,
.toc a:focus-visible,
.hub-card:focus-visible,
.related-item:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 0;
    border-color: var(--accent-primary);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent-primary);
    text-decoration: none;
}

/* Simple page content (about, contact, privacy, terms) */
.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--accent-primary);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Glass effect for cards with hexagon pattern */
.highlight-box,
.contact-card,
.contact-form,
.rating-card,
.pricing-table,
.callout,
.verdict-box,
.related-articles,
.quick-summary,
.tool-review,
.tool-card,
.comparison-table,
.feature-card,
.pros,
.cons,
.affiliate-disclosure {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
}

.highlight-box::before,
.contact-card::before,
.contact-form::before,
.rating-card::before,
.pricing-table::before,
.callout::before,
.verdict-box::before,
.related-articles::before,
.quick-summary::before,
.tool-review::before,
.tool-card::before,
.comparison-table::before,
.feature-card::before,
.pros::before,
.cons::before,
.affiliate-disclosure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.highlight-box > *,
.contact-card > *,
.contact-form > *,
.rating-card > *,
.pricing-table > *,
.callout > *,
.verdict-box > *,
.related-articles > *,
.quick-summary > *,
.tool-review > *,
.tool-card > *,
.comparison-table > *,
.feature-card > *,
.pros > *,
.cons > *,
.affiliate-disclosure > * {
    position: relative;
    z-index: 1;
}

/* Highlight box (about page) */
.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Contact cards */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--accent-primary);
}

.contact-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--accent-primary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-form h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-primary);
}

.btn-submit {
    background: var(--gradient-1);
    color: #0a0a0f;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

/* Page wrapper with sidebar */
.page-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

/* Article layout */
.article-container {
    max-width: 800px;
    flex: 1;
    min-width: 0;
}

/* Legacy article container (without sidebar) */
article.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-header h1,
h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Floating Sidebar TOC */
.toc-sidebar {
    width: 220px;
    flex-shrink: 0;
    margin-left: 3rem;
    display: none;
}

@media (min-width: 1024px) {
    .toc-sidebar { display: block; }
}

.toc {
    position: sticky;
    top: 100px;
    background: #1a1a24;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
}

.toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.toc > * {
    position: relative;
    z-index: 1;
}

.toc h2,
.toc h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li { margin-bottom: 0.5rem; }

.toc a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
    padding-left: 0.75rem;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.toc a:hover { color: var(--text-primary); }

.toc a.active {
    color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

/* Article Content */
.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.article-content strong { color: var(--text-primary); }

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.article-content li { margin-bottom: 0.5rem; }

.article-content a {
    color: var(--accent-primary);
    text-decoration: none;
}

.article-content a:hover { text-decoration: underline; }

.article-content .btn-primary {
    color: #fff;
    text-decoration: none;
}

.article-content .btn-primary:hover {
    text-decoration: none;
}

/* Rating Card */
.rating-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.rating-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rating-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.rating-info h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.rating-tagline {
    color: var(--text-muted);
}

.rating-score-box {
    margin-left: auto;
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.rating-stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.rating-item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.rating-item-score {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.rating-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 12px;
}

.pros {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.cons {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.pros h3, .cons h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    border: none;
    padding: 0;
}

.pros h3 { color: var(--accent-primary); }
.cons h3 { color: var(--accent-tertiary); }

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-tertiary);
    font-weight: 600;
}

/* Pricing Table */
.pricing-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row.header {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-plan {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-price {
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-features {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Callout */
.callout {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.callout-title {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.callout p {
    margin: 0;
    color: var(--text-secondary);
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.08));
    border: 2px solid #00FF88;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 30px rgba(0, 255, 136, 0.05);
}

.verdict-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    margin-top: 0;
    border: none;
    padding: 0;
}

.verdict-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* Related Articles */
.related-articles {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.related-articles h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    margin-top: 0;
    border: none;
    padding: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.related-item {
    display: block;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: var(--bg-primary);
    border-color: var(--accent-primary);
}

.related-item-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.related-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quick Summary Box */
.quick-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.quick-summary h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
    border: none;
    padding: 0;
}

.quick-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-summary li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-summary li:last-child {
    border-bottom: none;
}

.quick-summary .label {
    color: var(--text-muted);
}

.quick-summary .value {
    color: var(--text-primary);
    font-weight: 500;
}

.quick-summary .value a {
    color: var(--accent-primary);
    text-decoration: none;
}

.quick-summary .value a:hover {
    text-decoration: underline;
}

/* Tool Review Cards (best-ai-video-generators) */
.tool-review {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.tool-review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tool-review-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.tool-review-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    border: none;
    padding: 0;
}

.tool-review-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tool-review-score {
    margin-left: auto;
    text-align: center;
}

.tool-review-rating {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.tool-review-stars {
    color: #ffd700;
}

.tool-review-content {
    margin-bottom: 1.5rem;
}

.tool-review-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tool-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tool-review-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Hub Pages (reviews.html, comparisons.html) */
.hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hub-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.hub-card > * {
    position: relative;
    z-index: 1;
}

.hub-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.hub-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.hub-card-content {
    flex: 1;
}

.hub-card-content h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.hub-card-rating {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.hub-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.hub-card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 500;
}

/* Comparison cards with VS badge */
.hub-card-versus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vs-badge {
    background: var(--accent-tertiary);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        mask-image: none;
        -webkit-mask-image: none;
        padding: 1rem 1.5rem;
        background: linear-gradient(180deg,
            rgba(10, 10, 15, 0.95) 0%,
            rgba(10, 10, 15, 0.9) 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .article-container { padding: 6rem 1rem 3rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .rating-breakdown { grid-template-columns: repeat(2, 1fr); }
    .pricing-row { grid-template-columns: 1fr; gap: 0.5rem; }
    .pricing-row.header { display: none; }
    .related-grid { grid-template-columns: 1fr; }
    .rating-score-box { margin-left: 0; margin-top: 1rem; }
    .tool-review-pros-cons { grid-template-columns: 1fr; }
    .tool-review-score { margin-left: 0; margin-top: 1rem; }
    .hub-card { flex-direction: column; text-align: center; }
    .hub-card-versus { justify-content: center; }
    .quick-summary li { flex-direction: column; gap: 0.25rem; }
    .quick-summary { padding: 1.5rem 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Mobile menu - dropdown */
    .mobile-menu-label { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg,
            rgba(10, 10, 15, 0.95) 0%,
            rgba(15, 15, 25, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.75rem 0;
        gap: 0;
        border-top: 1px solid rgba(0, 255, 136, 0.15);
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        color: var(--text-secondary);
        transition: all 0.2s ease;
        border-left: 2px solid transparent;
    }

    .nav-links a:hover {
        background: linear-gradient(90deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
        color: var(--accent-primary);
        border-left-color: var(--accent-primary);
    }

    .nav-links a::after {
        display: none;
    }
}
