/* ============================================
   WILDLIFE MÜRITZ — Dark Cinematic Theme v2
   Particles · Parallax · Animated Counters
   ============================================ */

/* --- Design Tokens --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-elevated: #1a1a1a;

    --text-primary: #f0ede8;
    --text-secondary: #8a8580;
    --text-muted: #555250;

    --accent: #c8a45c;
    --accent-hover: #dbb76a;
    --accent-dim: rgba(200, 164, 92, 0.15);
    --accent-glow: rgba(200, 164, 92, 0.08);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 72px;
    --section-gap: 120px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Preloader --- */
#preloader {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.loader-ring {
    width: 40px; height: 40px;
    border: 2px solid var(--text-muted);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    display: flex; gap: 8px; align-items: center;
    letter-spacing: 0.15em; font-size: 14px; font-weight: 500;
}
.nav-logo-img { height: 38px; width: auto; margin-right: 4px; transition: opacity 0.3s; }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.logo-text { color: var(--text-primary); }
.logo-accent {
    color: var(--accent); font-family: var(--font-display);
    font-style: italic; font-weight: 400; letter-spacing: 0.05em;
}

.nav-links { display: flex; align-items: center; gap: 36px; }

.nav-link {
    font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
    color: var(--text-secondary); transition: color 0.3s; text-transform: uppercase;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--accent);
    transform: scaleX(0); transition: transform 0.3s var(--ease-out);
    transform-origin: right;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-instagram {
    display: flex; align-items: center; padding: 6px; border-radius: 6px;
    transition: color 0.3s, background 0.3s;
}
.nav-instagram:hover { color: var(--accent); background: var(--accent-dim); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
    display: none; position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(30px);
    z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-link { font-family: var(--font-display); font-size: 32px; color: var(--text-secondary); transition: color 0.3s, transform 0.3s; }
.mobile-link:hover { color: var(--accent); transform: translateX(8px); }

/* =========================================
   HERO — with Particles Canvas
   ========================================= */
#hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--bg-primary);
}

#hero-particles {
    position: absolute; inset: 0; z-index: 1;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 164, 92, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(200, 164, 92, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 164, 92, 0.03) 0%, transparent 40%);
}

.hero-content {
    position: relative; z-index: 3;
    text-align: center; padding: 0 24px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    width: 110px; height: auto; margin: 0 auto 32px;
    filter: drop-shadow(0 0 30px rgba(200, 164, 92, 0.25));
    animation: heroLogoIn 1s var(--ease-out) 0.1s both;
    image-rendering: -webkit-optimize-contrast;
}
@keyframes heroLogoIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-subtitle {
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px; font-weight: 500;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.5s both;
}

.hero-title {
    font-family: var(--font-display); font-weight: 700;
    line-height: 1.05; margin-bottom: 24px;
}

.title-line {
    display: block; font-size: clamp(56px, 10vw, 120px);
    color: var(--text-primary);
    animation: titleReveal 1s var(--ease-out) 0.6s both;
}
.title-line.accent {
    color: var(--accent); font-style: italic; font-weight: 400;
    animation-delay: 0.75s;
}
@keyframes titleReveal {
    from { opacity: 0; transform: translateY(40px) skewY(2deg); }
    to { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-description {
    font-size: 16px; color: var(--text-secondary); max-width: 440px;
    margin: 0 auto 40px; line-height: 1.7; font-weight: 300;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.9s both;
}

.hero-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); border: 1px solid rgba(200, 164, 92, 0.3);
    padding: 14px 32px; border-radius: 2px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: fadeSlideUp 0.8s var(--ease-out) 1.1s both;
}
.hero-cta:hover {
    background: var(--accent-dim); border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 92, 0.15);
}
.hero-cta svg { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =========================================
   STATS BAR — Animated Counters
   ========================================= */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(200, 164, 92, 0.1);
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
    padding: 40px 40px;
}

.stats-container {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 48px;
}

.stat-item { text-align: center; }

.stat-number {
    display: block; font-family: var(--font-display);
    font-size: 42px; font-weight: 700; color: var(--accent);
    line-height: 1.1;
}

.stat-label {
    display: block; font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted); margin-top: 6px;
}

.stat-divider {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(200,164,92,0.3), transparent);
}

/* =========================================
   SECTION DIVIDERS
   ========================================= */
.section-divider {
    display: flex; justify-content: center; padding: 0 40px;
}

.divider-line {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.4;
}

/* =========================================
   SECTION HEADERS — with animated underline
   ========================================= */
.gallery-section {
    padding: var(--section-gap) 40px 0;
    max-width: 1400px; margin: 0 auto;
}

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

.section-tag {
    display: block; font-size: 12px; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 12px; font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600; color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title-line {
    width: 60px; height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-bottom: 16px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.8s var(--ease-out) 0.3s;
}
.section-title-line.left { margin-bottom: 24px; }

.reveal.visible .section-title-line { transform: scaleX(1); }

.section-description {
    font-size: 16px; color: var(--text-secondary);
    font-weight: 300; max-width: 500px;
}

/* =========================================
   GALLERY GRID — Enhanced Hover Effects
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px; grid-auto-flow: dense;
}

.gallery-item {
    position: relative; overflow: hidden; border-radius: 4px;
    cursor: pointer; aspect-ratio: 4 / 3;
    opacity: 0; animation: itemFadeIn 0.6s var(--ease-out) forwards;
    transform-style: preserve-3d;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

@keyframes itemFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.gallery-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter 0.7s;
    filter: brightness(0.9) saturate(0.95);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.1);
}

.gallery-item-overlay { display: none; }
.gallery-item-title { display: none; }

/* Shimmer border on hover */
.gallery-item::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    border: 1px solid rgba(200, 164, 92, 0);
    border-radius: 4px; transition: border-color 0.4s;
    pointer-events: none;
}
.gallery-item:hover::before { border-color: rgba(200, 164, 92, 0.3); }

/* Click overlay */
.gallery-item::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
}

.gallery-empty {
    grid-column: 1 / -1; text-align: center; padding: 80px 20px;
    color: var(--text-muted); display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}
.gallery-empty code {
    background: var(--bg-card); padding: 4px 10px;
    border-radius: 4px; font-size: 13px; color: var(--accent);
}
.gallery-empty-hint { font-size: 12px; color: var(--text-muted); opacity: 0.6; }

/* Section photo count */
.section-count {
    display: inline-block; margin-top: 12px;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); font-weight: 400;
}

/* Load More Button */
.gallery-load-more {
    display: flex; justify-content: center; margin-top: 48px;
}

.load-more-btn {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: none; border: 1px solid rgba(200, 164, 92, 0.25);
    color: var(--accent); padding: 20px 64px;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 3px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    min-width: 240px;
}

.load-more-btn:hover {
    background: var(--accent-dim); border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 164, 92, 0.12);
}

.load-more-btn:focus-visible {
    outline: 2px solid var(--accent); outline-offset: 3px;
}

.load-more-btn:active { transform: translateY(0); }

.load-more-btn .load-more-count {
    font-size: 12px; color: var(--text-muted);
    font-weight: 300; letter-spacing: 0.05em; text-transform: none;
}

.load-more-btn.loading {
    pointer-events: none; opacity: 0.6;
}

/* Fade-in for dynamically added items */
.gallery-item.fade-in {
    opacity: 0; animation: itemFadeIn 0.6s var(--ease-out) forwards;
}

/* =========================================
   VIDEO SECTION — Card Layout
   ========================================= */
.videos-section { padding-bottom: 40px; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--bg-card); border-radius: 8px;
    overflow: hidden; opacity: 0;
    animation: itemFadeIn 0.6s var(--ease-out) forwards;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    cursor: pointer;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,164,92,0.15);
}

.video-card-preview {
    position: relative; aspect-ratio: 16 / 9; overflow: hidden;
}
.video-card-preview video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.video-card:hover .video-card-preview video { transform: scale(1.05); }

.video-badge {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary); font-size: 11px; font-weight: 500;
    letter-spacing: 0.05em; padding: 4px 10px; border-radius: 3px;
    display: flex; align-items: center; gap: 5px;
}

.play-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .play-overlay { opacity: 1; }

.play-btn {
    width: 68px; height: 68px;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s var(--ease-spring), background 0.3s, border-color 0.3s;
}
.play-btn:hover {
    transform: scale(1.15);
    background: rgba(200, 164, 92, 0.4);
    border-color: var(--accent);
}
.play-btn svg { margin-left: 3px; }

.video-card-info { padding: 16px 20px; }
.video-card-title {
    font-size: 15px; font-weight: 500; color: var(--text-primary);
    letter-spacing: 0.01em;
}

/* =========================================
   ABOUT
   ========================================= */
.about-section {
    padding: var(--section-gap) 40px;
    max-width: 1400px; margin: 0 auto;
}
.about-container { max-width: 640px; }
.about-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600; margin: 12px 0 4px;
}
.about-text {
    font-size: 16px; color: var(--text-secondary);
    font-weight: 300; line-height: 1.8; margin-bottom: 16px;
}
.about-links { margin-top: 32px; }
.about-instagram {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--accent); font-size: 15px; font-weight: 500;
    padding: 12px 24px; border: 1px solid rgba(200, 164, 92, 0.3);
    border-radius: 2px; transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.about-instagram:hover {
    background: var(--accent-dim); border-color: var(--accent);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,92,0.12);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 40px; margin-top: var(--section-gap);
}
.footer-container {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; gap: 8px; align-items: center; font-size: 12px; letter-spacing: 0.15em; }
.footer-logo-img { height: 32px; width: auto; opacity: 0.7; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: none; color: var(--text-primary);
    font-size: 32px; cursor: pointer; padding: 8px;
    opacity: 0.7; transition: opacity 0.3s, transform 0.3s; z-index: 10;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary); cursor: pointer; padding: 16px; border-radius: 50%;
    opacity: 0.6; transition: opacity 0.3s, background 0.3s, transform 0.3s; z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.1); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-content {
    max-width: 90vw; max-height: 85vh;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}
#lightbox-img {
    max-width: 90vw; max-height: 80vh; object-fit: contain;
    border-radius: 2px; transition: opacity 0.3s;
}
.lightbox-caption {
    margin-top: 16px; font-size: 14px;
    color: var(--text-secondary); text-align: center; font-weight: 300;
}
.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: 13px; color: var(--text-muted); letter-spacing: 0.1em;
}

#lightbox-video {
    max-width: 90vw; max-height: 80vh; border-radius: 2px;
    outline: none; background: #000; display: none;
}
#lightbox-video.active { display: block; }
#lightbox-img.hidden { display: none; }

/* =========================================
   IMAGE PROTECTION
   ========================================= */
.gallery-img, .hero-logo, .nav-logo-img, .footer-logo-img, #lightbox-img {
    -webkit-user-select: none; user-select: none;
    -webkit-user-drag: none; pointer-events: auto;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.reveal.visible .section-tag { animation: fadeSlideUp 0.6s var(--ease-out) 0.1s both; }
.reveal.visible .section-title { animation: fadeSlideUp 0.6s var(--ease-out) 0.2s both; }
.reveal.visible .section-description { animation: fadeSlideUp 0.6s var(--ease-out) 0.4s both; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
    :root { --nav-height: 60px; --section-gap: 80px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    #mobile-menu { display: flex; }
    .nav-container { padding: 0 20px; }
    .gallery-section { padding: var(--section-gap) 16px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-item { aspect-ratio: 1; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
    .video-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-section { padding: var(--section-gap) 20px; }
    .stats-container { gap: 24px; flex-wrap: wrap; }
    .stat-number { font-size: 32px; }
    .stat-divider { display: none; }
    .stats-bar { padding: 32px 20px; }
    .site-footer { padding: 32px 20px; }
    .footer-container { flex-direction: column; text-align: center; }
    .lightbox-prev { left: 8px; padding: 12px; }
    .lightbox-next { right: 8px; padding: 12px; }
    .hero-description br { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4 / 3; }
    .mobile-link { font-size: 26px; }
    .stats-container { gap: 16px; }
    .stat-number { font-size: 28px; }
}

/* =========================================
   SELECTION & SCROLLBAR
   ========================================= */
::selection { background: var(--accent); color: var(--bg-primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }
