:root {
    --cyan: #00ffee;
    --magenta: #ff00ff;
    --green: #00ff88;
    --dark: #0a0a0a;
    --darker: #050505;
    --grey: #1a1a1a;
    --light-grey: #2a2a2a;
    --marker-font: 'Permanent Marker', cursive;
    --salt-font: 'Rock Salt', cursive;
    --grace-font: 'Covered By Your Grace', cursive;
    --mono-font: 'Space Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) var(--dark);
}

body {
    background: var(--darker);
    color: #e0e0e0;
    font-family: var(--mono-font);
    overflow-x: hidden;
    cursor: none;
    /* We will use a custom cursor */
}

/* ============ CUSTOM CURSOR ============ */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

#cursor.hovered {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 238, 0.1);
    border-color: var(--magenta);
}

/* ============ GRAIN OVERLAY ============ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
    opacity: 0.5;
    animation: noiseShift 0.5s steps(3) infinite;
}

@keyframes noiseShift {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-5px, 5px);
    }

    40% {
        transform: translate(-10px, -5px);
    }

    60% {
        transform: translate(5px, -10px);
    }

    80% {
        transform: translate(10px, 5px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ============ SCRATCHY SVG DECORATIONS ============ */
.scratch-line {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

/* ============ GLITCH TEXT ============ */
@keyframes glitch {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -1px);
    }

    60% {
        transform: translate(-1px, -2px);
    }

    80% {
        transform: translate(1px, 1px);
    }
}

@keyframes glitchColor {

    0%,
    100% {
        text-shadow: 2px 0 var(--cyan), -2px 0 var(--magenta);
    }

    25% {
        text-shadow: -2px -1px var(--magenta), 2px 1px var(--green);
    }

    50% {
        text-shadow: 1px 2px var(--cyan), -1px -2px var(--magenta);
    }

    75% {
        text-shadow: -1px 1px var(--green), 1px -1px var(--cyan);
    }
}

@keyframes holoShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) rotate(-1deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 238, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 238, 0.3), 0 0 80px rgba(255, 0, 255, 0.1);
    }
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    93% {
        opacity: 0.3;
    }

    94% {
        opacity: 1;
    }

    96% {
        opacity: 0.5;
    }

    97% {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes splatter {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(15deg);
        opacity: 1;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(1deg);
    }

    66% {
        transform: translateY(4px) rotate(-1deg);
    }
}

@keyframes scanline {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(5px);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 255, 238, 0.5));
    transition: all 0.3s ease;
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 10px var(--cyan)) drop-shadow(0 0 20px var(--magenta));
    transform: rotate(-5deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    position: relative;
    font-family: 'Space Mono', monospace;
}


.nav-links a:hover {
    color: var(--cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, var(--darker) 70%);
    pointer-events: none;
    z-index: 3;
}

/* Scanline effect */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 238, 0.05);
    z-index: 4;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

.hero-bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.06;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-logo {
    width: min(550px, 80vw);
    z-index: 5;
    mix-blend-mode: screen;
    animation: fadeSlideUp 1.2s ease-out, float 6s ease-in-out infinite 1.2s;
    filter: drop-shadow(0 0 30px rgba(0, 255, 238, 0.15)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.1));
    transition: filter 0.5s;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 40px rgba(0, 255, 238, 0.35)) drop-shadow(0 0 80px rgba(255, 0, 255, 0.25));
}

.hero-tagline {
    font-family: 'Rock Salt', cursive;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: #666;
    z-index: 5;
    margin-top: 30px;
    animation: fadeSlideUp 1.2s ease-out 0.3s both;
    text-align: center;
    padding: 0 20px;
}

.hero-tagline span {
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: holoShift 4s ease infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeSlideUp 1s ease-out 1s both, breathe 3s ease-in-out infinite 2s;
}

.scroll-indicator span {
    font-family: var(--grace-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: lowercase;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: holoShift 4s ease infinite;
    opacity: 0.5;
}

.scroll-arrow-svg {
    color: #555;
    animation: wigglyArrow 2s ease-in-out infinite;
    opacity: 0.5;
}

.scroll-arrow-svg .arrow-line {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawArrowLine 2s ease forwards 1.5s, wigglyArrow 2s ease-in-out infinite 3.5s;
}

.scroll-arrow-svg .arrow-head {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawArrowLine 0.5s ease forwards 2.5s;
}

@keyframes breathe {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(4px); }
}

@keyframes wigglyArrow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(3px) rotate(1deg); }
    50% { transform: translateY(6px) rotate(-1deg); }
    75% { transform: translateY(3px) rotate(0.5deg); }
}

@keyframes drawArrowLine {
    to { stroke-dashoffset: 0; }
}

/* ============ HERO SOCIALS ============ */
.hero-socials {
    display: flex;
    gap: 20px;
    z-index: 5;
    margin-top: 24px;
    animation: fadeSlideUp 1.2s ease-out 0.6s both;
}

.hero-socials a {
    color: #444;
    opacity: 0.35;
    transition: opacity 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hero-socials a:hover {
    opacity: 0.7;
    color: var(--cyan);
}

/* ============ SECTIONS ============ */
section {
    position: relative;
    padding: 120px 40px;
}

.section-number {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    color: transparent;
    -webkit-text-stroke: 1px #1a1a1a;
    position: absolute;
    top: 60px;
    right: 40px;
    z-index: 0;
    user-select: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    margin-top: 10px;
}

.section-subtitle {
    font-family: 'Rock Salt', cursive;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 50px;
}

/* ============ MANIFESTO ============ */
.manifesto {
    background: var(--dark);
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.manifesto-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.manifesto-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #999;
}

.manifesto-text .highlight {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 1.6rem;
    color: #fff;
    position: relative;
    display: inline;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: holoShift 4s ease infinite;
}

.manifesto-image {
    position: relative;
}

.manifesto-image img {
    width: 100%;
    border-radius: 2px;
    filter: grayscale(0.2);
    transition: all 0.5s;
}

.manifesto-image:hover img {
    filter: grayscale(0);
}

.manifesto-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid #222;
    z-index: -1;
    transform: rotate(1deg);
}

.manifesto-image::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--cyan);
    z-index: -1;
    transform: rotate(-0.5deg);
    opacity: 0.3;
}

/* ============ PROJECTS ============ */
.projects {
    background: var(--darker);
}

.project-card {
    background: var(--dark);
    border: 1px solid #1a1a1a;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s;
    animation: pulseGlow 4s ease-in-out infinite;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--green));
}

.project-card::after {
    content: 'LIVE';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 4px 12px;
    animation: flicker 3s infinite;
}

.project-name {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.project-desc {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 25px;
}

.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #222;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.02);
}

.tag.holo {
    border-color: rgba(0, 255, 238, 0.3);
    color: var(--cyan);
}

/* ============ CREW ============ */
.crew {
    background: var(--dark);
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.crew-member {
    position: relative;
    padding: 40px 30px;
    background: var(--darker);
    border: 1px solid #1a1a1a;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
}

.crew-member:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.crew-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.crew-member:hover::before {
    opacity: 1;
}

.member-initial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: #fff;
    position: relative;
}

.crew-member:nth-child(1) .member-initial {
    border-color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.crew-member:nth-child(2) .member-initial {
    border-color: var(--magenta);
    text-shadow: 0 0 20px var(--magenta);
}

.crew-member:nth-child(3) .member-initial {
    border-color: var(--green);
    text-shadow: 0 0 20px var(--green);
}

.member-name {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
}

.member-handle {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.member-role {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 1rem;
    color: #777;
}

/* ============ CONTACT / CTA ============ */
.contact {
    background: var(--darker);
    text-align: center;
    padding: 150px 40px;
}

/* ============ CHAOS PROJECTS ============ */
@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    10% {
        transform: skew(5deg);
    }

    20% {
        transform: skew(-5deg);
    }

    30% {
        transform: skew(3deg);
    }

    40% {
        transform: skew(-3deg);
    }

    50% {
        transform: skew(0deg);
    }

    100% {
        transform: skew(0deg);
    }
}

.project-card:hover {
    border-color: #eee;
    transform: scale(1.02);
    box-shadow: 10px 10px 0px rgba(0, 255, 238, 0.2), -10px -10px 0px rgba(255, 0, 255, 0.2);
    animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.project-card:hover .project-name {
    text-shadow: 3px 0 var(--cyan), -3px 0 var(--magenta);
}

/* ============ CREW CHAOS ============ */
.crew-member {
    /* ... existing styles ... */
    overflow: visible;
    /* Allow SVGs to spill out */
}

.member-bg {
    transition: all 0.5s ease;
    transform-origin: center;
}

.crew-member:hover .member-bg {
    transform: scale(1.5) rotate(180deg);
    opacity: 0.8 !important;
}

.crew-member:hover .member-initial {
    border-color: #fff;
    background: transparent;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
}

.contact-heading {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    margin-bottom: 20px;
    animation: glitchColor 2s infinite, pulseGlow 3s infinite;
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.contact-heading:hover {
    animation: glitch 0.2s infinite;
}

.contact-sub {
    font-family: 'Rock Salt', cursive;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    padding: 15px 35px;
    border: 1px solid #222;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 238, 0.05), transparent);
    transition: left 0.5s;
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.social-link:hover::before {
    left: 100%;
}

/* ============ FOOTER ============ */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #111;
    background: var(--darker);
}

footer p {
    font-size: 0.65rem;
    color: #333;
    letter-spacing: 4px;
    text-transform: uppercase;
}

footer .footer-holo {
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: holoShift 4s ease infinite;
}

/* ============ DECORATIVE ELEMENTS ============ */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    pointer-events: none;
}

.deco-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
}

.ink-splatter {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* ============ SKETCH DIVIDER ============ */
.sketch-divider {
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.sketch-divider svg {
    width: 100%;
    height: 100%;
}

/* ============ BANNER SECTION ============ */
.banner-showcase {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 60px 0;
}

.banner-showcase img {
    width: 100%;
    opacity: 0.7;
    transition: opacity 0.5s;
}

.banner-showcase:hover img {
    opacity: 1;
}

/* ============ MARQUEE ============ */
.marquee-container {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    transform: rotate(-2deg);
    margin: 40px -20px;
    z-index: 10;
}

.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.9);
}

.marquee-strip.rotated-cw {
    transform: rotate(1deg);
}

.marquee-strip.rotated-ccw {
    transform: rotate(-1.5deg);
    mix-blend-mode: hard-light;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--grace-font);
    font-size: 1.5rem;
    color: #2a2a2a;
}

.marquee-content span.holo-word {
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============ AUDIO CONTROL BAR ============ */
.audio-control-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}

.audio-control-bar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ctrl-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    padding: 0;
}

.ctrl-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.ctrl-btn.active {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 8px rgba(0, 255, 238, 0.2);
}

.ctrl-mood-btn {
    width: auto;
    padding: 0 12px;
    font-family: var(--mono-font);
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Volume Slider */
.ctrl-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.ctrl-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px rgba(0, 255, 238, 0.5);
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.ctrl-volume::-webkit-slider-thumb:hover {
    box-shadow: 0 0 12px rgba(0, 255, 238, 0.8);
}

.ctrl-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px rgba(0, 255, 238, 0.5);
    border: none;
    cursor: pointer;
}

.ctrl-volume::-moz-range-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    border: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    section {
        padding: 80px 20px;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crew-grid {
        grid-template-columns: 1fr;
    }

    .section-number {
        font-size: 4rem;
        right: 20px;
    }

    .project-card {
        padding: 30px 25px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .audio-control-bar {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        justify-content: center;
        padding: 12px 20px;
    }

    .ctrl-btn {
        width: 42px;
        height: 42px;
    }

    .ctrl-volume {
        width: 100px;
    }

    .ctrl-volume::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
    }

    .ctrl-volume::-moz-range-thumb {
        width: 18px;
        height: 18px;
    }
}