:root {
    --bg: #030303;
    --text: #ffffff;
    --primary: #ffffff;
    --secondary: #6e6e6e;
    --accent: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.4);
    --font-head: 'Syncopate', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    height: 100vh;
}

#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
    background-size: 100% 4px;
    z-index: 99;
    pointer-events: none;
    opacity: 0.3;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, black 150%);
    z-index: 98;
    pointer-events: none;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.loader-text {
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    position: relative;
    color: var(--accent);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #222;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    transition: width 0.5s ease;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.hollow {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.menu-btn {
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.glitch-wrapper {
    position: relative;
}

.glitch {
    font-family: var(--font-head);
    font-size: 8vw;
    font-weight: 700;
    line-height: 1;
    position: relative;
    color: var(--text);
    mix-blend-mode: lighten;
}

.glitch.sub {
    display: block;
    font-size: 2vw;
    letter-spacing: 1em;
    margin-top: 1rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(13px, 9999px, 81px, 0); }
    5% { clip: rect(89px, 9999px, 86px, 0); }
    10% { clip: rect(4px, 9999px, 102px, 0); }
    15% { clip: rect(42px, 9999px, 14px, 0); }
    20% { clip: rect(74px, 9999px, 48px, 0); }
    100% { clip: rect(61px, 9999px, 22px, 0); }
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1rem;
    letter-spacing: 0.5em;
    opacity: 0.7;
    animation: fadeIn 2s ease-out 1s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.line {
    width: 1px;
    height: 50px;
    background: white;
}

.section-header {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    -webkit-text-stroke: 1px var(--accent);
    color: transparent;
}

.roster {
    padding: 10vh 5vw;
    background: transparent;
    position: relative;
    z-index: 2;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.artist-card {
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.artist-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.05);
}

.card-inner h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-inner p {
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.listen-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 30px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    transition: 0.3s;
}

.listen-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: black;
    box-shadow: 0 0 20px var(--accent-glow);
}

.manifesto {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.big-text {
    font-family: var(--font-head);
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

footer {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.7; transform: translateY(0); }
}

@media (max-width: 768px) {
    .glitch { font-size: 15vw; }
    .glitch.sub { font-size: 4vw; }
    .card-container { grid-template-columns: 1fr; }
    .big-text { font-size: 2rem; }
}