:root {
    --color-bg: #0f1115;
    --color-bg-secondary: #16191d;
    --color-bg-tertiary: #1c2025;
    --color-text: #9ba1a6;
    --color-text-light: #f1f3f5;
    --color-accent: #ffffff;
    --color-accent-subtle: rgba(255, 255, 255, 0.15);
    
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* Modern CSS Reset */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) var(--color-bg);
}
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
    
    &:hover {
        opacity: 0.7;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-md) var(--spacing-xl);
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 800;
        font-size: 1.25rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--color-text-light);
    }
    
    .nav-logo {
        height: 42px;
        width: auto;
        object-fit: contain;
    }
    
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: var(--spacing-md);
        
        a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            
            &:hover {
                color: var(--color-text-light);
            }
        }
    }
    
    .btn-discord {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background-color: var(--color-text-light);
        color: var(--color-bg);
        border-radius: 2px;
        font-weight: 600;
        font-size: 0.85rem;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: transform 0.2s ease, opacity 0.2s ease;
        
        &:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }
    }
    
    .nav-toc-link {
        font-size: 0.85rem;
        font-weight: 700;
        color: #a84242; /* Desaturated blood red */
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: color 0.2s ease, opacity 0.2s ease;
        
        &:hover {
            color: #c95151; /* Brighter red on hover */
        }
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    background-size: cover;
    background-position: center;
    
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(15, 17, 21, 0.4) 0%, rgba(15, 17, 21, 0.95) 100%);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }
    
    h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        letter-spacing: -0.03em;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: var(--spacing-md);
    }
    
    p {
        font-size: 1.1rem;
        font-weight: 400;
        margin-bottom: var(--spacing-lg);
        color: rgba(255, 255, 255, 0.7);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        display: inline-block;
        padding: 0.875rem 2.5rem;
        background: var(--color-text-light);
        color: var(--color-bg);
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border-radius: 2px;
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        
        &:hover {
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            opacity: 1;
        }
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    color: var(--color-text-light);
}

/* Games Row */
.games-row {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.game-logo img {
    height: 70px;
    transition: transform 0.3s ease;
}

.game-logo img[alt="Arma 3"] {
    height: 92px;
}

.game-logo img:hover {
    transform: translateY(-4px);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-bg-secondary);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    
    &:hover {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: var(--shadow-lg);
    }
    
    .card-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 0;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        background-color: var(--color-bg-secondary);
        opacity: 0.6;
    }
    
    &:hover .card-bg {
        transform: scale(1.03);
        opacity: 0.8;
    }
    
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        opacity: 0.5;
        transition: opacity 0.4s ease, background 0.4s ease;
        z-index: 3;
    }
    
    &:hover::after {
        opacity: 1;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }

    .card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.5) 50%, transparent 100%);
        z-index: 1;
    }
    
    .card-content {
        position: relative;
        z-index: 2;
    }
    
    h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: var(--spacing-sm);
        color: var(--color-text-light);
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--color-text);
    }
}

/* Text Blocks */
.text-block {
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
    
    p {
        font-size: 1.15rem;
        line-height: 1.7;
        color: var(--color-text);
    }
}

/* List Block */
.list-block {
    list-style: none;
    max-width: 800px;
    
    li {
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        
        &:last-child {
            border-bottom: none;
        }
        
        strong {
            color: var(--color-text-light);
            display: block;
            margin-bottom: var(--spacing-sm);
            font-size: 1.1rem;
            font-weight: 600;
        }
    }
}

/* Operations Grid */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--spacing-lg);
    list-style: none;
    
    li {
        background: rgba(22, 25, 29, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: calc(var(--spacing-lg) * 1.25);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
        
        /* Subtle top highlight for premium feel */
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            opacity: 0.5;
            transition: opacity 0.4s ease, background 0.4s ease;
        }
        
        &:hover {
            background: rgba(22, 25, 29, 0.9);
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            
            &::after {
                opacity: 1;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            }
        }
        
        strong {
            color: var(--color-text-light);
            display: block;
            margin-bottom: var(--spacing-sm);
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            position: relative;
            z-index: 2;
        }
        
        p {
            color: var(--color-text);
            font-size: 1rem;
            line-height: 1.65;
            position: relative;
            z-index: 2;
        }
    }
}

/* Media Layout */
.media-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.gallery-component {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-width: 0; /* Fixes CSS Grid blowout */
}

.gallery-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-strip {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    
    &::-webkit-scrollbar {
        height: 6px;
    }
    &::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }
}

.gallery-thumb {
    width: 120px;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
}

.youtube-wrapper {
    /* Removed absolute height restrictions */
}

.youtube-callout {
    background: rgba(22, 25, 29, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    
    .yt-header-group { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: var(--spacing-sm); }
    .yt-main-icon { color: #ff0000; font-size: 1.6rem; margin-top: -0.05rem; }
    .yt-header-content { display: block; flex: 1; min-width: 0; }
    .yt-header-content h3 { display: block; font-size: 1.4rem; margin-bottom: 0.25rem; color: var(--color-text-light); line-height: 1.2; }
    .yt-header-content p { display: block; margin-top: 0; margin-bottom: var(--spacing-lg); color: var(--color-text); font-size: 0.95rem; line-height: 1.5; }
}

.youtube-videos {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.video-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    
    &:hover .play-overlay {
        background: rgba(255, 0, 0, 0.8);
        color: #fff;
    }
}

.video-thumb {
    width: 130px;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
}

.play-overlay {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.video-info {
    flex-grow: 1;
}

.video-info span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgba(255,255,255,0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255,255,255,0.1);
    
    &:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
    }
}

/* Join Paths */
.join-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--spacing-lg);
    
    .path-card {
        background: rgba(22, 25, 29, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: calc(var(--spacing-lg) * 1.25);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        flex-direction: row;
        gap: var(--spacing-lg);
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            opacity: 0.5;
            transition: opacity 0.4s ease, background 0.4s ease;
        }
        
        &:hover {
            background: rgba(22, 25, 29, 0.9);
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            
            &::after {
                opacity: 1;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            }
        }
        
        .path-image {
            width: 140px;
            height: 140px;
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .path-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .path-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        h3 {
            color: var(--color-text-light);
            margin-bottom: var(--spacing-md);
            font-size: 1.4rem;
        }
        
        p {
            color: var(--color-text);
            line-height: 1.6;
        }
    }
}

/* Workshop Styles Overrides */
.bento-card {
    & .list-block li {
        border: none;
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 2px;
        transition: background 0.3s ease;
        
        &:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        
        a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 0.85rem;
            
            span {
                font-size: 0.75rem;
                font-weight: 600;
                color: var(--color-text);
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
        }
    }
}

/* Footer */
.site-footer {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--spacing-xl);
    background: var(--color-bg);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    justify-content: center;
}

.footer-col {
    h4 {
        color: var(--color-text-light);
        margin-bottom: var(--spacing-sm);
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    
    a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        color: var(--color-text);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
        
        &:hover {
            background: var(--color-text-light);
            color: var(--color-bg);
            border-color: var(--color-text-light);
            transform: translateY(-2px);
        }
    }
}

.support-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    
    .pill-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        color: var(--color-text);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
        
        &:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-light);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-lg);
    
    p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.3);
    }
}

/* Media Layout responsive overrides removed, handled by flex */

/* Mobile Header overrides */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .site-header .nav-container {
        padding: var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-header .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 17, 21, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .site-header .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .site-header .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .site-header .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .site-header .nav-links a {
        display: block;
        padding: var(--spacing-sm);
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .media-layout {
        display: flex;
        flex-direction: column;
    }
    
    .youtube-callout {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .yt-header-group {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .yt-main-icon {
        font-size: 3.5rem;
        margin-top: 0.2rem;
        float: none;
        margin-right: 0;
    }
    
    .yt-header-content h3 {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .yt-header-content p {
        margin-top: 0;
        font-size: 1.1rem;
        max-width: 800px;
        margin-bottom: 0;
    }
    
    .youtube-videos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .video-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        background: transparent;
        border: none;
    }
    
    .video-card .video-thumb {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .path-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .path-card .path-image {
        margin-bottom: var(--spacing-sm);
    }
    
    .path-card .path-content {
        align-items: center;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .support-pills {
        justify-content: center;
    }
}

/* Accessibility & Power User Configs */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (forced-colors: active) {
    .bento-card, .operations-grid li, .path-card, .btn, .youtube-callout {
        border: 2px solid CanvasText;
    }
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
