/* ============================================
   GREVE GRAPHICS - COMMODORE 64 INSPIRED THEME
   ============================================ */

/* C64 Color Palette */
:root {
    --c64-black: #000000;
    --c64-white: #ffffff;
    --c64-red: #9f4e44;
    --c64-cyan: #6abfc6;
    --c64-purple: #a057a3;
    --c64-green: #5cab5e;
    --c64-blue: #50459b;
    --c64-yellow: #c9d487;
    --c64-orange: #a1683c;
    --c64-brown: #6d5412;
    --c64-light-red: #cb7e75;
    --c64-dark-grey: #626262;
    --c64-grey: #898989;
    --c64-light-green: #9ae29b;
    --c64-light-blue: #887ecb;
    --c64-light-grey: #adadad;
    
    /* Custom theme colors */
    --bg-primary: #40318d;
    --bg-secondary: #352879;
    --bg-dark: #1a1442;
    --accent-cyan: #70a4b2;
    --accent-light: #a0a0ff;
    --text-primary: #7869c4;
    --text-light: #a0a0ff;
    --border-color: #6c5eb5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', monospace;
    background: var(--bg-dark);
    color: var(--c64-light-blue);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

/* CRT Screen Effect */
.crt-effect {
    position: relative;
}

.crt-effect::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 1000;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 999;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 4px;
}

h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 2px;
}

h3 {
    font-size: clamp(0.7rem, 2vw, 1rem);
    letter-spacing: 1px;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 2rem 0;
    border-bottom: 4px solid var(--c64-light-blue);
    position: relative;
}

.main-header::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--c64-blue);
}

.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.c64-badge {
    display: inline-block;
    background: var(--c64-brown);
    color: var(--c64-white);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 
        3px 3px 0 var(--c64-orange),
        6px 6px 0 rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.c64-badge.small {
    font-size: 0.5rem;
    padding: 0.3rem 0.6rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--c64-light-blue);
    text-shadow: 
        2px 2px 0 var(--c64-blue),
        4px 4px 0 rgba(0,0,0,0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--c64-cyan);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--c64-red);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    50% { transform: translateX(-2px); }
    75% { transform: translateX(1px); }
}

.tagline {
    font-size: 1.2rem;
    color: var(--c64-light-grey);
    margin-top: 1rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--c64-cyan);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::before {
    content: "► ";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    color: var(--c64-yellow);
    border-color: var(--c64-yellow);
    background: rgba(201, 212, 135, 0.1);
}

.main-nav a:hover::before {
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: 
        linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(80, 69, 155, 0.1) 10px,
            rgba(80, 69, 155, 0.1) 20px
        );
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Terminal Window */
.terminal-window {
    background: var(--c64-black);
    border: 4px solid var(--c64-light-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(136, 126, 203, 0.3),
        inset 0 0 60px rgba(136, 126, 203, 0.1);
}

.terminal-header {
    background: var(--bg-primary);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--c64-light-blue);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: var(--c64-red); }
.terminal-dot.yellow { background: var(--c64-yellow); }
.terminal-dot.green { background: var(--c64-green); }

.terminal-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--c64-light-grey);
    margin-left: auto;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
}

.terminal-line {
    color: var(--c64-light-blue);
    margin-bottom: 0.3rem;
}

.terminal-line.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(30) 1s forwards;
    width: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.terminal-line.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.terminal-line.success {
    color: var(--c64-light-green);
}

/* Hero Text */
.hero-text h2 {
    color: var(--c64-cyan);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Retro Button */
.btn-retro {
    display: inline-block;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--c64-black);
    background: var(--c64-cyan);
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 
        4px 4px 0 var(--c64-blue),
        8px 8px 0 rgba(0,0,0,0.3);
}

.btn-retro:hover {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0 var(--c64-blue),
        4px 4px 0 rgba(0,0,0,0.3);
}

.btn-retro:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--c64-cyan);
}

.section-title .bracket {
    color: var(--c64-yellow);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-dark);
    border: 3px solid var(--c64-blue);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--c64-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pixel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--c64-yellow);
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.2rem;
    color: var(--c64-light-grey);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    background: 
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, var(--bg-dark) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--c64-black);
    border: 4px solid var(--c64-blue);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card .game-tags {
    margin-top: auto;
}

.game-card .download-btn {
    align-self: flex-start;
}

/* Overlay removed for clearer images
.game-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(136, 126, 203, 0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
}
*/

.game-card:hover {
    border-color: var(--c64-cyan);
    transform: scale(1.02);
}

.game-card.featured {
    border-color: var(--c64-yellow);
    box-shadow: 0 0 30px rgba(201, 212, 135, 0.2);
}

.game-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: var(--c64-black);
    background: var(--c64-yellow);
    padding: 0.3rem 0.6rem;
    z-index: 10;
}

.game-screen {
    background: var(--c64-blue);
    height: 150px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        var(--c64-blue) 0px,
        var(--c64-blue) 4px,
        var(--c64-light-blue) 4px,
        var(--c64-light-blue) 8px
    );
    animation: scroll-bg 2s linear infinite;
}

.game-screen.soldier-one-screen {
    width: 242px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.soldier-one {
    background: url('../images/soldier_one.png') center center / cover no-repeat;
    animation: none;
}

.game-screen.captured-screen {
    width: 242px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.captured {
    background: url('../images/captured.png') center center / cover no-repeat;
    animation: none;
}

.game-screen.one-year-after-screen {
    width: 242px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.one-year-after {
    background: url('../images/1943.png') center center / cover no-repeat;
    animation: none;
}

.game-screen.supercan-screen {
    width: 296px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.supercan {
    background: url('../images/supercan.png') center center / cover no-repeat;
    animation: none;
}

.game-screen.musketeers-screen {
    width: 240px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.musketeers {
    background: url('../images/musketeers.png') center center / cover no-repeat;
    animation: none;
}

.game-screen.blood-guts-screen {
    width: 242px;
    margin: 0 auto 1rem auto;
}

.game-placeholder.blood-guts {
    background: url('../images/blood_and_guts.png') center center / cover no-repeat;
    animation: none;
}

@keyframes scroll-bg {
    0% { background-position: 0 0; }
    100% { background-position: 0 8px; }
}

.game-card h3 {
    color: var(--c64-cyan);
    margin-bottom: 0.8rem;
}

.game-card p {
    font-size: 1.1rem;
    color: var(--c64-light-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--c64-black);
    background: var(--c64-light-blue);
    padding: 0.4rem 0.8rem;
}

.download-btn {
    display: inline-block;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: var(--c64-black);
    background: var(--c64-green);
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.2s ease;
    border: 2px solid var(--c64-light-green);
}

.download-btn:hover {
    background: var(--c64-light-green);
    box-shadow: 0 0 15px rgba(154, 226, 155, 0.5);
    transform: scale(1.05);
}

.download-btn::before {
    content: "► ";
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: var(--bg-dark);
    border: 3px solid var(--c64-purple);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--c64-cyan);
    box-shadow: 0 0 30px rgba(106, 191, 198, 0.2);
}

.avatar {
    margin-bottom: 1.5rem;
}

.pixel-avatar {
    font-size: 4rem;
    display: inline-block;
    padding: 1rem;
    background: var(--c64-blue);
    border-radius: 50%;
}

.team-card h3 {
    color: var(--c64-cyan);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.team-card .role {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--c64-yellow);
    margin-bottom: 1rem;
}

.team-card p:last-child {
    color: var(--c64-light-grey);
    font-size: 1.1rem;
}

.team-note {
    background: var(--c64-black);
    border: 2px dashed var(--c64-light-blue);
    padding: 2rem;
    text-align: center;
}

.team-note p {
    font-size: 1.2rem;
    color: var(--c64-light-blue);
    font-style: italic;
}

/* ============================================
   HISTORY SECTION
   ============================================ */
.history-section {
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--c64-light-blue);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        padding-left: 60px;
    }
}

.timeline-year {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--c64-black);
    background: var(--c64-yellow);
    padding: 0.5rem 1rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
        padding-right: 3rem;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        min-width: auto;
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }
}

.timeline-content {
    flex: 1;
    background: var(--c64-black);
    border: 2px solid var(--c64-blue);
    padding: 1.5rem;
}

.timeline-content h3 {
    color: var(--c64-cyan);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--c64-light-grey);
    font-size: 1.1rem;
}

/* ============================================
   FACTS SECTION
   ============================================ */
.facts-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--c64-black);
    border: 3px solid var(--c64-cyan);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: rgba(106, 191, 198, 0.1);
    transform: scale(1.05);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-card p {
    color: var(--c64-light-blue);
    font-size: 1.2rem;
}

.fact-link {
    display: inline-block;
    color: var(--c64-yellow);
    text-decoration: none;
    margin-top: 0.5rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    transition: color 0.2s ease;
}

.fact-link:hover {
    color: var(--c64-cyan);
    text-decoration: underline;
}

/* ============================================
   ARTICLE SECTION
   ============================================ */
.article-section {
    background: var(--bg-dark);
}

.magazine-article {
    background: var(--c64-black);
    border: 4px solid var(--c64-light-blue);
    padding: 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        0 0 30px rgba(136, 126, 203, 0.2),
        inset 0 0 60px rgba(136, 126, 203, 0.05);
}

.magazine-article p {
    color: var(--c64-light-grey);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.magazine-article p.question {
    color: var(--c64-cyan);
    font-style: italic;
}

.magazine-article p.answer {
    color: var(--c64-yellow);
    padding-left: 1rem;
    border-left: 3px solid var(--c64-yellow);
}

.magazine-article p.source {
    text-align: right;
    font-size: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--c64-blue);
}

.magazine-article p.source a {
    color: var(--c64-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

.magazine-article p.source a:hover {
    color: var(--c64-cyan);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .magazine-article {
        padding: 1.5rem;
    }
    
    .magazine-article p {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--c64-black);
    border-top: 4px solid var(--c64-light-blue);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--c64-light-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: var(--c64-grey);
    font-size: 1rem;
}

.flicker {
    animation: flicker 4s linear infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.3; }
    94% { opacity: 1; }
    96% { opacity: 0.5; }
    97% { opacity: 1; }
}

.retro-border {
    border: 2px solid var(--c64-blue);
    padding: 1rem 2rem;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: var(--c64-light-green);
}

.retro-border p {
    margin: 0.3rem 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.game-card,
.team-card,
.fact-card,
.timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .main-nav {
        gap: 0.5rem;
    }
    
    .main-nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.5rem;
    }
    
    .btn-retro {
        font-size: 0.6rem;
        padding: 0.8rem 1.5rem;
    }
    
    .terminal-body {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--c64-yellow);
    outline-offset: 2px;
}

