:root {
    --bg-color: #0d0d0d;
    --text-color: #e5e5e5;
    --accent: #ff003c;
    
    --font-display: 'Oswald', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-mono); overflow-x: hidden; }

/* Noise overlay */
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 9000; opacity: 0.05; background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); }

/* Custom Inverted Cursor */
.kroma-cursor {
    position: fixed; width: 40px; height: 40px; border-radius: 50%;
    background-color: #fff; mix-blend-mode: difference;
    pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s;
}
.kroma-cursor.hover { width: 120px; height: 120px; }

/* Brutalist Nav */
.kr-nav {
    position: fixed; top: 0; width: 100%; border-bottom: 2px solid var(--text-color); display: flex; justify-content: space-between; align-items: stretch; z-index: 100;
    background: var(--bg-color); mix-blend-mode: normal;
}
.kr-nav > div, .kr-nav > button { padding: 20px 40px; display: flex; align-items: center; justify-content: center; }
.logo { font-family: var(--font-display); font-size: 2rem; border-right: 2px solid var(--text-color); letter-spacing: 5px; }
.nav-middle { flex: 1; display: flex; justify-content: space-around; font-size: 0.9rem; letter-spacing: 3px; }
.nav-btn { background: var(--text-color); color: var(--bg-color); font-family: var(--font-mono); font-size: 1.1rem; font-weight: bold; border: none; border-left: 2px solid var(--text-color); transition: background 0.2s, color 0.2s; }
.nav-btn:hover { background: var(--accent); color: #fff; }

/* Hero */
.kr-hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; border-bottom: 2px solid var(--text-color); position: relative; }
.kr-marquee { width: 100%; overflow: hidden; white-space: nowrap; border-bottom: 2px solid var(--text-color); position: absolute; top: 82px; padding: 10px 0; font-size: 1.2rem; font-weight: bold; }
.marquee-content { display: inline-block; animation: scrollLeft 20s linear infinite; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-title-container { padding: 0 5%; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 60%; }
.kr-title { font-family: var(--font-display); font-size: 15vw; line-height: 0.9; text-transform: uppercase; margin: 0; letter-spacing: -2px; }
.kr-title.outline { color: transparent; -webkit-text-stroke: 2px var(--text-color); position: relative; top: -20px; }

.kr-info { display: flex; justify-content: space-between; padding: 0 5%; position: absolute; bottom: 40px; width: 100%; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-instruction { animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Asymmetrical Gallery */
.kr-gallery { padding: 150px 5%; }
.gallery-wrapper { display: flex; flex-direction: column; gap: 150px; max-width: 1400px; margin: 0 auto; }

.art-piece { display: flex; flex-direction: column; gap: 20px; }
/* Sizing */
.sz-large { width: 60%; }
.sz-med { width: 45%; }
.sz-small { width: 30%; }
/* Placement */
.pos-left { align-self: flex-start; }
.pos-center { align-self: center; }
.pos-right { align-self: flex-end; }
/* Offsets */
.mt-down { margin-top: 100px; }
.mt-up { margin-top: -100px; }

/* Image Hover Reveal */
.img-container { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border: 2px solid var(--text-color); }
.img-container img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.2); transition: filter 0.5s ease, transform 0.8s ease; transform: scale(1.1); }
.art-piece:hover .img-container img { filter: grayscale(0%) contrast(1.1) saturate(1.5); transform: scale(1); }

.art-meta { display: flex; justify-content: space-between; border-top: 2px solid var(--text-color); padding-top: 15px; }
.id { font-weight: bold; font-size: 1.2rem; }
.name { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; font-weight: 400; letter-spacing: 2px; }

/* Manifesto */
.kr-manifesto { padding: 150px 10%; border-top: 2px solid var(--text-color); border-bottom: 2px solid var(--text-color); text-align: center; }
.kr-manifesto h2 { font-family: var(--font-display); font-size: 4rem; line-height: 1.2; text-transform: uppercase; margin-bottom: 60px; max-width: 1000px; margin: 0 auto 60px; }
.btn-block { display: inline-block; padding: 20px 40px; border: 2px solid var(--text-color); color: var(--text-color); text-decoration: none; font-size: 1.2rem; font-weight: bold; transition: all 0.3s; }
.btn-block:hover { background: var(--text-color); color: var(--bg-color); }

/* Footer */
.kr-footer { padding: 40px 5%; }
.f-grid { display: flex; justify-content: space-between; font-size: 0.9rem; letter-spacing: 2px; line-height: 1.8; }
.tar { text-align: right; }

@media (max-width: 900px) {
    .kr-title { font-size: 20vw; }
    .sz-large, .sz-med, .sz-small { width: 100%; }
    .nav-middle { display: none; }
    .gallery-wrapper { gap: 80px; }
    .mt-down, .mt-up { margin-top: 0; }
    .f-grid { flex-direction: column; text-align: center; gap: 40px; }
    .tar { text-align: center; }
}
