/* ===== CSS Variables & Design System ===== */
:root {
    --color-bg: #0a0a0b;
    --color-bg-secondary: #111113;
    --color-bg-tertiary: #1a1a1d;
    --color-surface: #1e1e21;
    --color-border: #2a2a2e;
    --color-text: #ffffff;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    --color-primary: #FFD700;
    --color-primary-light: #FFE44D;
    --color-primary-dark: #D4AF37;
    --color-accent: #FF4545;
    --color-success: #22c55e;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-glow: 0 0 60px rgba(255, 215, 0, 0.15);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--color-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
}

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    border-bottom-color: var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

@media (max-width: 900px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: none;
}

/* Hide both versions by default */
.hero-visual-compact,
.hero-visual-large {
    display: none;
}

/* Medium-large screens: show compact footprint */
@media (min-width: 1200px) and (max-width: 1499px) {
    .hero-visual-compact {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .hero-content {
        text-align: left;
        margin-right: auto;
        margin-left: 5%;
    }

    .hero-cta,
    .hero-stats {
        justify-content: flex-start;
    }
}

/* Extra large screens: show large candlestick chart */
@media (min-width: 1500px) {
    .hero-visual-large {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .hero-content {
        text-align: left;
        margin-right: auto;
        margin-left: 5%;
        max-width: 600px;
    }

    .hero-cta,
    .hero-stats {
        justify-content: flex-start;
    }
}

/* ===== ATAS-Style Footprint Candles Chart ===== */
.footprint-candles-chart {
    width: 750px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: visible;
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.footprint-candles-body {
    display: flex;
    gap: 6px;
    padding: 20px 15px;
    align-items: flex-start;
    min-height: 380px;
    background: transparent;
    position: relative;
}

/* Dashed Grid Background */
.footprint-candles-body::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Dashed grid - ~120px candle pitch (measured from DOM) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40'%3E%3Cline x1='0' y1='40' x2='120' y2='40' stroke='rgba(255,255,255,0.15)' stroke-width='1' stroke-dasharray='4,6'/%3E%3Cline x1='120' y1='0' x2='120' y2='40' stroke='rgba(255,255,255,0.15)' stroke-width='1' stroke-dasharray='4,6'/%3E%3C/svg%3E");
    background-size: 120px 40px;
    /* Position: aligned with candle wicks */
    background-position: 31px 0;
}

/* POC Line spanning the chart */
.chart-poc-line {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 45%;
    height: 1px;
    background: rgba(255, 215, 0, 0.4);
    border: 1px dashed rgba(255, 215, 0, 0.6);
    z-index: 1;
}

/* Individual Footprint Candle */
.fp-candle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 100px;
}

/* Candle Row: Bar + Footprint Data */
.fp-candle-row {
    display: flex;
    gap: 3px;
    align-items: flex-start;
}

/* Candle Bar Wrapper - contains wick + bar + wick */
.fp-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The actual colored candle bar */
.fp-bar {
    width: 14px;
    border-radius: 2px;
    min-height: 50px;
}

.fp-bar.bullish {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.fp-bar.bearish {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Wicks */
.fp-wick-top,
.fp-wick-bottom {
    width: 2px;
}

.fp-wick-top.bullish,
.fp-wick-bottom.bullish {
    background: #4ade80;
}

.fp-wick-top.bearish,
.fp-wick-bottom.bearish {
    background: #ef4444;
}

/* Candle Body with Price Levels */
.fp-body {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

/* Price Level Row inside candle */
.fp-level {
    display: flex;
    gap: 1px;
    background: transparent;
}

.fp-level.poc {
    background: rgba(255, 215, 0, 0.2);
    border-left: 3px solid var(--color-primary);
}

/* Bid/Ask Volume Cells */
.fp-bid,
.fp-ask {
    padding: 3px 6px;
    font-size: 9px;
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', monospace;
    min-width: 40px;
    text-align: center;
    transition: all var(--transition-fast);
}

.fp-bid {
    background: rgba(239, 68, 68, 0.35);
    color: #f87171;
}

.fp-ask {
    background: rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

/* Imbalances */
.fp-bid.buy-imb {
    background: rgba(34, 197, 94, 0.5);
    color: #4ade80;
    box-shadow: inset 0 0 8px rgba(34, 197, 94, 0.3);
}

.fp-ask.buy-imb {
    background: rgba(34, 197, 94, 0.6);
    color: #fff;
    box-shadow: inset 0 0 8px rgba(34, 197, 94, 0.4);
}

.fp-bid.sell-imb {
    background: rgba(239, 68, 68, 0.6);
    color: #fff;
    box-shadow: inset 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Delta Display below candle */
.fp-delta {
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-delta .delta-label {
    display: block;
    font-size: 9px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.fp-delta .delta-value {
    display: block;
    font-size: 12px;
    font-weight: 700;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.fp-delta.positive .delta-value {
    color: #4ade80;
}

.fp-delta.negative .delta-value {
    color: #f87171;
}

.fp-delta .delta-total {
    display: block;
    font-size: 9px;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

/* Candle hover effects */
.fp-candle:hover .fp-body {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.fp-candle:hover .fp-bar {
    filter: brightness(1.2);
}

/* Legend at bottom of large chart */
.footprint-candles-chart .footprint-legend {
    padding: 12px 20px;
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.chart-mockup {
    width: 420px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.chart-timeframe {
    font-size: 12px;
    color: var(--color-text-muted);
}

.chart-controls {
    display: flex;
    gap: 8px;
    margin-left: auto;
    order: 1;
}

.control-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    cursor: default;
}

.control-icon:hover {
    opacity: 1;
}

/* ===== Footprint Chart ===== */
.footprint-chart {
    width: 320px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: visible;
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.footprint-body {
    padding: 12px 16px 16px;
}

.price-ladder {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-row {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.price-row:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: scale(1.02);
}

.price-row.highlight-row {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.price-level {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.volume-cells {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.bid-vol,
.ask-vol {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', monospace;
    min-width: 45px;
    text-align: center;
    transition: all var(--transition-fast);
}

.bid-vol {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.ask-vol {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.bid-vol.imbalance-sell {
    background: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.ask-vol.imbalance-buy {
    background: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.bid-vol.imbalance-sell.strong {
    background: rgba(239, 68, 68, 0.5);
    animation: pulse-red 2s infinite;
}

.ask-vol.imbalance-buy.strong {
    background: rgba(34, 197, 94, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 0 16px rgba(239, 68, 68, 0.5);
    }
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
    }
}

.delta {
    font-size: 12px;
    font-weight: 700;
    font-family: 'SF Mono', 'Fira Code', monospace;
    text-align: right;
}

.delta.positive {
    color: #4ade80;
}

.delta.negative {
    color: #f87171;
}

.delta.positive.strong {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.delta.negative.strong {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.poc-marker {
    display: inline-block;
    background: var(--color-primary);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}

.footprint-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-dot.buy {
    background: #4ade80;
}

.legend-dot.sell {
    background: #f87171;
}

.legend-dot.delta-pos {
    background: var(--color-primary);
}

.footprint-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 12px 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 10;
    min-width: 180px;
}

.footprint-tooltip.visible {
    opacity: 1;
}

.tooltip-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.tooltip-detail {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.footprint-info-btn {
    display: block;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    text-decoration: none;
    border: none;
    text-align: center;
    transform: translateY(10px);
}

.footprint-info-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.footprint-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background: var(--color-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-intro {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-point {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.point-content p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.philosophy-card {
    position: relative;
    padding: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.philosophy-card blockquote {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.philosophy-card p {
    position: relative;
    color: var(--color-text-muted);
}

/* ===== Content Topics ===== */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.topic-card {
    padding: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.topic-hover-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-primary);
    color: #000;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.topic-card:hover .topic-hover-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.topic-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}



.topic-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.topic-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.topic-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tags li {
    padding: 4px 12px;
    background: var(--color-bg-tertiary);
    border-radius: 100px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.content-cta {
    text-align: center;
}

/* ===== Tools Section ===== */
.tools {
    background: var(--color-bg-secondary);
}

.tools-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.tool-card {
    position: relative;
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.tool-card.apex::before {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.tool-card.atas::before {
    background: linear-gradient(90deg, #00bfff, #1e90ff);
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-header {
    margin-bottom: 16px;
}

.tool-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.tool-card>p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tool-features {
    margin-bottom: 24px;
}

.tool-features li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* ===== Community Section ===== */
.community-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-surface) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

@media (max-width: 900px) {
    .community-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
}

.community-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.community-content {
    position: relative;
    z-index: 1;
}

.community-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.community-content>p {
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.community-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.feature-icon {
    font-size: 20px;
}

.community-visual {
    position: relative;
    z-index: 1;
}

.discord-preview {
    background: #1e1f22;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.1);
    width: 440px;
    border: 1px solid #2b2d31;
}

/* Dark Titlebar - styled like NQ Footprint */
.discord-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
}

.discord-titlebar-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.discord-titlebar-controls {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.discord-titlebar-controls .control-icon {
    color: var(--color-text-muted);
    font-size: 12px;
}

.discord-titlebar-controls .control-icon:hover {
    color: var(--color-text);
}

/* Discord Main Container */
.discord-main {
    display: flex;
    height: 460px;
}

/* Thin scrollbar styling for Discord */
.discord-channels::-webkit-scrollbar,
.discord-messages::-webkit-scrollbar {
    width: 4px;
}

.discord-channels::-webkit-scrollbar-track,
.discord-messages::-webkit-scrollbar-track {
    background: transparent;
}

.discord-channels::-webkit-scrollbar-thumb,
.discord-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.discord-channels::-webkit-scrollbar-thumb:hover,
.discord-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox scrollbar */
.discord-channels,
.discord-messages {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Channel Sidebar */
.discord-sidebar {
    width: 160px;
    background: #2b2d31;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #1e1f22;
}

.discord-server-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #2b2d31;
    border-bottom: 1px solid #1e1f22;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.discord-server-header:hover {
    background: #35373c;
}

.server-name {
    font-size: 13px;
    font-weight: 600;
    color: #f2f3f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.server-dropdown {
    color: #b5bac1;
    font-size: 14px;
}

.discord-channels {
    flex: 1;
    padding: 8px 8px;
    overflow-y: auto;
}

.channel-category {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #949ba4;
    padding: 12px 6px 4px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.channel-category:hover {
    color: #dbdee1;
}

.category-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.discord-channel {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
    color: #949ba4;
    font-size: 13px;
    margin-left: 8px;
}

.discord-channel:hover {
    background: #35373c;
    color: #dbdee1;
}

.discord-channel.active {
    background: #404249;
    color: #f2f3f5;
}

.discord-channel.voice {
    margin-left: 0;
}

.channel-hash {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
}

.channel-icon {
    font-size: 12px;
    margin-left: 2px;
}

.channel-separator {
    font-size: 12px;
    opacity: 0.5;
    margin: 0 1px;
}

.channel-voice-icon {
    font-size: 14px;
    margin-right: 4px;
}

/* User Panel at bottom */
.discord-user-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #232428;
    border-top: 1px solid #1e1f22;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 12px;
    font-weight: 600;
    color: #f2f3f5;
}

.user-status {
    font-size: 10px;
    color: #949ba4;
}

.user-online-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
}

/* Chat Area */
.discord-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #313338;
}

.discord-chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #313338;
    border-bottom: 1px solid #3f4147;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.channel-hash-large {
    font-size: 20px;
    color: #80848e;
    font-weight: 400;
}

.chat-channel-name {
    font-size: 15px;
    font-weight: 600;
    color: #f2f3f5;
}

.discord-chat-header .online-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    margin-left: auto;
}

.discord-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    margin-bottom: 8px;
}

.message:hover {
    background: rgba(255, 255, 255, 0.02);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    font-size: 16px;
}

.message-content {
    flex: 1;
}

.message-content .username {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.message-content .message-time {
    font-size: 11px;
    color: #949ba4;
    margin-left: 8px;
}

.message-content p {
    font-size: 14px;
    color: #dbdee1;
    margin-top: 2px;
    line-height: 1.4;
}

/* Chat Input */
.discord-input {
    padding: 0 16px 16px;
}

.discord-input input {
    width: 100%;
    padding: 12px 16px;
    background: #383a40;
    border: none;
    border-radius: 8px;
    color: #dbdee1;
    font-size: 14px;
    outline: none;
}

.discord-input input::placeholder {
    color: #6d6f78;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
    padding: 80px 24px;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #000;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: #111;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--color-text-muted);
    margin: 16px 0 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--color-text-secondary);
    transition: fill var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.1);
}

.social-link:hover svg {
    fill: var(--color-primary);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.disclaimer {
    margin-top: 8px;
    font-size: 12px;
}

/* ===== Detail Pages ===== */
.detail-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--color-primary);
}

.detail-hero .hero-title {
    font-size: clamp(40px, 7vw, 64px);
}

.detail-hero .hero-description {
    max-width: 600px;
    margin-left: 0;
}

.detail-content {
    padding: 60px 0 100px;
    background: var(--color-bg);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.content-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.content-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-list .feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
}

.feature-list li div strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.feature-list li div p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Account Table */
.account-table {
    margin-top: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.account-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
}

.account-row:last-child {
    border-bottom: none;
}

.account-row.header {
    background: var(--color-bg-tertiary);
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-row.highlight {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: -1px;
}

.account-row span {
    color: var(--color-text-secondary);
}

.table-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Features Grid for ATAS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.feature-box {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-base);
}

.feature-box:hover {
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.05);
}

.feature-box .feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Video Links */
.video-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sidebar-card.sticky {
    position: sticky;
    top: 100px;
}

.sidebar-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.sidebar-badge.atas {
    background: rgba(0, 162, 255, 0.15);
    color: #00a2ff;
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.benefit {
    font-size: 14px;
    color: var(--color-success);
    font-weight: 500;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.sidebar-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 16px;
    margin-bottom: 0;
    text-align: center;
}

/* Discount Code Box */
.discount-code {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.discount-code .code-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.discount-code .code-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'SF Mono', 'Fira Code', monospace;
    letter-spacing: 2px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.discount-code .code-hint {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
}

/* ATAS Theme variations */
.atas-theme .gradient-orb.orb-1 {
    background: #00a2ff;
}

.atas-theme .gradient-orb.orb-2 {
    background: #00d4aa;
}

/* ===== YouTube 2-Click GDPR-Compliant Embed ===== */
.youtube-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.youtube-facade:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.youtube-facade:hover .youtube-facade-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.youtube-facade-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter var(--transition-base);
}

.youtube-facade:hover .youtube-facade-thumbnail {
    filter: brightness(0.85);
}

.youtube-facade-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.youtube-facade-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.youtube-facade-consent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: var(--color-text);
}

.youtube-facade-consent-text {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.youtube-facade-consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.youtube-facade-consent-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.youtube-facade-consent-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.youtube-facade-consent-btn svg {
    width: 16px;
    height: 16px;
}

/* Active/Loaded state */
.youtube-facade.loaded {
    cursor: default;
}

.youtube-facade.loaded .youtube-facade-thumbnail,
.youtube-facade.loaded .youtube-facade-play,
.youtube-facade.loaded .youtube-facade-consent {
    display: none;
}

.youtube-facade iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video section styling */
.video-section {
    margin-top: 1.5rem;
}

.video-section-title {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}