:root {
    --citrus: #D4FF00;
    --orange: #FF4500;
    --black: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: crosshair;
}

body {
    background-color: var(--citrus);
    color: var(--black);
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
    line-height: 1.2;
    padding: 2vw;
    border: 8px solid var(--black);
    min-height: 100vh;
}

::selection {
    background: var(--black);
    color: var(--citrus);
}

/* ── Masthead ───────────────────────────────────────────── */

.masthead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 8px solid var(--black);
}

h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(4rem, 12vw, 15rem);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.8;
    word-wrap: break-word;
    padding-bottom: 20px;
    margin-bottom: 0;
    flex: 1 1 auto;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
    font-weight: 900;
    background: var(--black);
    color: var(--citrus);
    padding: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

/* ── Marquee ────────────────────────────────────────────── */

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
    background-color: var(--orange);
    color: var(--black);
    padding: 10px 0;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.marquee {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Top Nav ────────────────────────────────────────────── */

.top-nav {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 0;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.top-nav a {
    font-size: 1rem;
    padding: 8px 12px;
    border: 2px solid var(--black);
}

/* ── Mix Grid ───────────────────────────────────────────── */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    border-top: 8px solid var(--black);
    padding-top: 20px;
}

/* ── Mix Cards ──────────────────────────────────────────── */

.mix-card {
    border: 4px solid var(--black);
    padding: 20px;
    background: var(--citrus);
    transition: all 0.1s steps(2);
    box-shadow: 10px 10px 0px var(--black);
}

.mix-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--orange);
    background: var(--black);
    color: var(--citrus);
}

.mix-card:hover h2 {
    background: var(--orange);
    color: var(--black);
}

.mix-info {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.mix-details {
    border: 2px solid currentColor;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.05);
}

.mix-details:hover {
    background: var(--orange);
    color: var(--black);
}

/* ── Audio Player ───────────────────────────────────────── */

.audio-player {
    border: 2px solid currentColor;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.audio-player:hover {
    background: var(--orange);
    color: var(--black);
}

.audio-player audio {
    width: 100%;
    margin-top: 10px;
}

/* ── Tracklist ──────────────────────────────────────────── */

details {
    border: 2px solid currentColor;
    padding: 10px;
}

summary {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    list-style: none;
}

summary:hover {
    background: var(--orange);
    color: var(--black);
}

.tracklist {
    list-style-type: square;
    margin-left: 24px;
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tracklist li {
    border-bottom: 1px dashed currentColor;
    padding: 5px 0;
}

/* ── Footer ─────────────────────────────────────────────── */

footer {
    margin-top: 60px;
    border-top: 8px solid var(--black);
    padding-top: 20px;
    text-align: center;
}

/* ── Links ──────────────────────────────────────────────── */

a {
    color: var(--black);
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--citrus);
    transition: all 0.1s;
}

a:hover {
    background: var(--black);
    color: var(--citrus);
    text-decoration: line-through;
}
