@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@900&family=Space+Mono&display=swap');

:root {
    --bg: #030303;
    --fg: #ffffff;
    --accent: #bf00ff; /* Vivid Purple */
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-mono);
    line-height: 1.4;
    overflow-x: hidden;
    cursor: crosshair;
}

body.no-scroll {
    overflow: hidden;
}

#grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('grain.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

#app {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.panel {
    min-height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    border-bottom: 2px solid #111;
    position: relative;
}

/* HERO */
.hero {
    background: radial-gradient(circle at center, #0a0a0a 0%, #030303 100%);
    text-align: left;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.offset {
    margin-left: 2rem;
}

.scroll-hint {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.6;
}

/* STATEMENT */
.poetic {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    max-width: 800px;
}

.indent-1 { padding-left: 40px; }
.indent-2 { padding-left: 80px; }

/* ARTISTS */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.artist-list {
    list-style: none;
}

.artist-item {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 6rem);
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.1s;
    line-height: 0.9;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    display: block;
    color: var(--fg);
}

.artist-item:hover {
    color: var(--accent);
    transform: translateX(20px);
}

/* ARCHIVE */
.archive-grid {
    display: grid;
    gap: 1rem;
}

.archive-entry {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #222;
    font-size: 0.9rem;
}

.archive-entry:hover {
    background: #111;
}

.archive-entry .code { color: var(--accent); }

/* VISUALS */
.image-scrawl {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.raw-img {
    height: 400px;
    filter: grayscale(1) contrast(1.5);
    border: 1px solid #333;
}

/* CONTACT */
.contact-box {
    border: 2px solid var(--fg);
    padding: 3rem;
    max-width: fit-content;
}

.glitch-link {
    color: var(--fg);
    text-decoration: none;
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: bold;
}

.glitch-link:hover {
    background: var(--fg);
    color: var(--bg);
}

.terminal-cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

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

footer {
    padding: 20px;
    font-size: 0.7rem;
    color: #444;
}

/* UI ELEMENTS */
#audio-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid var(--fg);
    color: var(--fg);
    padding: 5px 10px;
    font-family: var(--font-mono);
    z-index: 10000;
}

#image-preview {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vh;
    pointer-events: none;
    z-index: 50;
    display: none;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

/* MOBILE FIXES */
@media (max-width: 600px) {
    .panel { padding: 20px; }
    #image-preview { width: 80vw; }
}