@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Inter:wght@900&display=swap');

:root {
    --neon-pink: #ff00ef;
    --neon-blue: #00f2ff;
    --neon-green: #39ff14;
    --acid-yellow: #f0ff00;
    --space-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--space-black);
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
#cursor {
    width: 30px;
    height: 30px;
    background: #fff;
    mix-blend-mode: difference;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
}

/* Texture Overlays */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?auto=format&fit=crop&q=80&w=2070');
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 9999;
    pointer-events: none;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.3) 2px, rgba(0, 0, 0, 0) 4px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0.2;
}

/* Surreal Collage Essentials */
.collage-container {
    position: relative;
    width: 100%;
    min-height: 800vh;
    /* Long scroll journey */
    padding-top: 100px;
}

.art-fragment {
    position: absolute;
    z-index: 10;
    transition: transform 0.2s ease-out;
}

.art-fragment img {
    width: 100%;
    border: 15px solid #fff;
    filter: saturate(1.2) contrast(1.1);
    box-shadow: 20px 20px var(--neon-pink), -20px -20px var(--neon-blue);
    display: block;
}

.fragment-label {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 20;
    top: -25px;
    left: -20px;
    transform: rotate(-3deg);
}

/* Typography Fragments */
.huge-text {
    position: fixed;
    font-size: 30vw;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
    line-height: 0.8;
}

/* Navigation - Floating Blocks */
nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
}

.nav-block {
    background: #fff;
    color: #000;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
    transform: skew(-5deg);
    transition: all 0.2s;
}

.nav-block:hover {
    background: var(--neon-pink);
    color: #fff;
    transform: skew(0deg) scale(1.1);
}

/* Audio Player Stylized */
.audio-player {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(-1deg);
}

/* Grid & Drips */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

@keyframes dripDrop {
    0% {
        height: 0;
    }

    100% {
        height: 400px;
    }
}

.acid-drip {
    position: absolute;
    width: 20px;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    animation: dripDrop 4s infinite alternate ease-in-out;
}