/* 
 * Rush 2112 Theme
 * Inspired by the iconic 1976 Rush album
 * Black/Red/White color scheme with geometric, dystopian sci-fi aesthetic
 */

:root {
    /* 2112 Color Palette - Updated for album aesthetic */
    --bg-primary: #0d0d0d;
    /* Very dark gray instead of pure black */
    --bg-secondary: #1a1a1a;
    /* Lighter dark for depth */
    --bg-tertiary: #252525;
    /* Card/section backgrounds */

    --accent-red: #ad1700;
    /* Custom red - primary accent */
    --accent-red-dark: #8B0000;
    /* Deep red for borders */
    --accent-red-bright: #DC143C;
    /* Bright red for highlights */

    --accent-blue: #1e3a8a;
    /* Dark royal blue - secondary accent */
    --accent-blue-light: #2563eb;
    /* Lighter blue for highlights */

    --text-primary: #FFFFFF;
    /* Pure white */
    --text-secondary: #C0C0C0;
    /* Silver/gray */
    --text-muted: #808080;
    /* Muted gray */

    --accent-silver: #E8E8E8;
    /* Metallic silver */
    --accent-gold: #FFD700;
    /* Gold accents */

    /* Typography */
    --font-heading: 'Rajdhani', 'Audiowide', 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', 'Inter', sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;

    /* Spacing & Effects */
    --border-red: 2px solid var(--accent-red);
    --border-blue: 2px solid var(--accent-blue);
    --shadow-red: 0 0 20px rgba(173, 23, 0, 0.5);
    --shadow-blue: 0 0 20px rgba(30, 58, 138, 0.5);
    --shadow-deep: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* Base Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle texture overlay */
    background-image:
        radial-gradient(circle at 20% 50%, rgba(173, 23, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(173, 23, 0, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px);
}

/* Global anchor link styles */
a {
    color: var(--accent-red);
    text-decoration: none;
}

a:hover {
    color: #FFFFFF;
}

/* Header Styling */
.main-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-primary);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-blue);
    position: relative;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-blue) 50%,
            transparent 100%);
}

#main-title {
    font-family: var(--font-heading);
    margin: 0;
    opacity: 0;
    transition: opacity 2s ease-in;
}

.brand-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.m2-sq {
    color: #ff0000;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    line-height: 1;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

.paren {
    color: #666;
    font-size: 3.5rem;
    font-weight: 300;
}

.brand-mark {
    color: #d1dcff;
}

.brand-pipe {
    color: #00ffff;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
    margin: 0 0.5rem;
    font-size: 3.5rem;
}

.brand-mcfadden {
    color: #ffd1d1;
}

#main-title.fade-in {
    opacity: 1;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(173, 23, 0, 0.3));
    }

    to {
        filter: drop-shadow(0 0 15px rgba(173, 23, 0, 0.6));
    }
}

/* Navigation Styling */
.main-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Syrinx Banner - Scrolling Text */
.syrinx-banner {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    border-top: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-blue);
    padding: 1rem 0;
    position: relative;
}

.syrinx-text {
    display: inline-block;
    white-space: nowrap;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.05em;
    animation: scrollText 60s linear infinite;
    padding-left: 100%;
}

.syrinx-text .citation {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9em;
    margin-left: 1em;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid var(--accent-blue);
    background: var(--bg-tertiary);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-blue-light), transparent);
    transition: left 0.5s ease;
}

.main-nav a:hover::before {
    left: 100%;
}

.main-nav a:hover {
    color: #ad1700;
    border-color: var(--accent-blue-light);
    background: var(--accent-blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

/* Starman Logo (Red Star) - Image-based */
.starman-logo {
    width: 140px;
    height: 140px;
    margin: 2rem auto 1rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starman-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(173, 23, 0, 0.6));
    animation: starPulse 3s ease-in-out infinite;
}

/* Year Logo (2026) */
.year-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(173, 23, 0, 0.4));
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(173, 23, 0, 0.6));
    }

    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 35px rgba(173, 23, 0, 0.8));
    }
}

/* Sticky Starman Logo - Controlled by JS */
.starman-logo-sticky {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    z-index: 100;
    pointer-events: auto;
    /* Allow clicking to go home */
    cursor: pointer;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-red);
    padding: 10px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: var(--shadow-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.starman-logo-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(173, 23, 0, 0.8);
    border-color: var(--accent-red-bright);
}

/* Section Containers (replacing monolith) */
.section-2112 {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 3px solid var(--accent-blue);
    border-left: 8px solid var(--accent-red);
    border-right: 8px solid var(--accent-blue);
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            20px 100%,
            0 calc(100% - 20px));
    box-shadow:
        var(--shadow-deep),
        inset 0 0 60px rgba(30, 58, 138, 0.05),
        0 0 40px rgba(173, 23, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.section-label {
    position: absolute;
    top: -22px;
    right: 60px;
    background: var(--accent-red);
    color: white;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 30px 32px 8px 32px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    box-shadow: 0 0 30px rgba(173, 23, 0, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 20;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.personal-section .section-label {
    background: var(--accent-blue);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-blue-light);
}

.section-2112.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-2112::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.section-2112::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.section-2112 h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 2px solid var(--accent-red-dark);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(173, 23, 0, 0.5);
}

.section-2112 p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-2112 strong {
    color: var(--accent-red);
    font-weight: 700;
}

.section-2112 h3 {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-left: 4px solid var(--accent-red);
    padding-left: 15px;
}

.section-2112 ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.section-2112 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-2112 li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 0.8rem;
    top: 4px;
}

/* Diagnostics Grid */
.diagnostics-grid {
    display: grid;
    gap: 12px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diagnostic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    padding: 12px 16px;
    border: 1px solid var(--accent-blue);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s ease;
}

.diagnostic-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-blue-light);
    box-shadow: var(--shadow-red);
    transform: translateX(5px);
}

.diagnostic-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.diagnostic-value {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 4px 12px;
    border-radius: 3px;
    background: var(--bg-primary);
}

.archive-header {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 15px 0 5px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.archive-header::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--bg-tertiary) 0%, transparent 100%);
}

.status-red {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red);
}

.status-white {
    color: var(--accent-blue-light);
    text-shadow: 0 0 10px var(--accent-blue-light);
}

.status-silver {
    color: var(--text-muted);
}

/* Interactive Diagnostics */
.interactive-diagnostics {
    margin-top: 3.5rem;
    font-family: var(--font-mono);
    padding: 1.5rem;
    padding-top: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    border-left: 4px solid var(--accent-red);
    border-right: 4px solid var(--accent-blue);
    clip-path: polygon(0 0,
            calc(100% - 15px) 0,
            100% 15px,
            100% 100%,
            15px 100%,
            0 calc(100% - 15px));
    position: relative;
    overflow: visible;
}

.interactive-diagnostics::before {
    content: '[ COMPUTER HALLS INTERFACE ]';
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-primary);
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 3px 10px;
    z-index: 10;
    border: 1px solid var(--accent-red);
}

#diagnostic-command {
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--accent-blue);
    border-left: 3px solid var(--accent-red);
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    box-sizing: border-box;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

#diagnostic-command:focus {
    outline: none;
    border-color: var(--accent-red);
    border-left-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(173, 23, 0, 0.4), inset 0 0 30px rgba(173, 23, 0, 0.05);
    background: rgba(15, 15, 15, 0.95);
}

#run-diagnostic {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red-dark) 0%, #6B0000 100%);
    border: 2px solid var(--accent-red);
    border-right: 3px solid var(--accent-blue);
    color: var(--text-primary);
    padding: 15px;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#run-diagnostic::before {
    content: '▶';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.7;
}

#run-diagnostic:hover {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    box-shadow: 0 0 30px rgba(173, 23, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    letter-spacing: 0.25em;
}

#diagnostic-output {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border: 2px solid var(--accent-blue);
    border-left: 3px solid var(--accent-red);
    min-height: 150px;
    white-space: pre-wrap;
    color: var(--accent-red);
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 1.6;
    max-height: 300px;
    overflow-y: auto;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    box-shadow: inset 0 0 40px rgba(173, 23, 0, 0.1);
}

#diagnostic-output strong {
    color: #ad1700;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(173, 23, 0, 0.5);
}

/* Contact Section */
.contact-list {
    list-style: none;
    padding: 0;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-list li {
    margin-bottom: 15px;
    padding: 12px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-red);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
    box-shadow: var(--shadow-red);
}

.comm-label {
    color: var(--accent-red);
    font-weight: 700;
    margin-right: 10px;
}

.comm-value {
    color: var(--text-secondary);
}

.contact-list a {
    color: var(--accent-red) !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* General anchor links for better contrast */
.section-2112 a {
    color: var(--accent-red) !important;
    text-decoration: underline;
    text-decoration-color: rgba(173, 23, 0, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-2112 a:hover {
    color: #FFFFFF !important;
    text-decoration-color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-muted);
    border-top: 3px solid var(--accent-blue);
    margin-top: 4rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-blue) 50%,
            transparent 100%);
}

.main-footer p {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--accent-blue-light);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border: 2px solid var(--accent-blue);
    display: inline-block;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
    background: var(--accent-blue);
    border-color: var(--accent-blue-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

/* Tooltips */
.rush-tooltip {
    position: fixed;
    z-index: 9999;
    background: var(--bg-secondary);
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.6em 1.2em;
    border: 2px solid var(--accent-red);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    box-shadow: var(--shadow-red);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.rush-tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main-header {
        padding: 2rem 1rem;
    }

    #main-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .main-nav {
        gap: 0.3rem;
    }

    .main-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .syrinx-banner {
        padding: 0.8rem 0;
    }

    .syrinx-text {
        font-size: 0.85rem;
        animation: scrollText 45s linear infinite;
    }

    .starman-logo {
        width: 110px;
        height: 110px;
    }

    .year-logo {
        width: 160px;
    }

    .section-2112 {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .section-2112 h2 {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
    }

    .section-2112 p {
        font-size: 1rem;
    }

    .diagnostic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .diagnostic-value {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    #main-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .year-logo {
        width: 130px;
        margin: 0.5rem auto 1rem auto;
    }

    .starman-logo {
        width: 90px;
        height: 90px;
        margin: 1rem auto;
    }

    .starman-logo-sticky {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
        padding: 5px;
    }

    .section-2112 {
        margin: 1.5rem 0.5rem;
        padding: 1rem;
    }

    .section-2112 h2 {
        font-size: 1.5rem;
    }

    .section-2112 p {
        font-size: 0.95rem;
    }

    .social-links a {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    background: var(--bg-primary);
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid var(--accent-red-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red-dark);
    border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Selection Styling */
::selection {
    background: var(--accent-red);
    color: var(--text-primary);
}

::-moz-selection {
    background: var(--accent-red);
    color: var(--text-primary);
}