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

:root {
    --orange: #ff6b35;
    --black: #0a0a0a;
    --white: #e8e8e8;
    --gray: #666;

    /* SNAP SCROLL TOGGLE - Change to 'none' to disable snap scrolling */
    --scroll-snap-type: none;
    --scroll-snap-align: start;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: var(--scroll-snap-type);
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Full-screen video background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 107, 53, 0.08) 0px,
        transparent 2px,
        transparent 4px,
        rgba(255, 107, 53, 0.08) 6px
    );
    animation: scanlines 3s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(12px); }
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    --parallax-scale: 1;
    transform: translate(-50%, -50%) scale(var(--parallax-scale));
    object-fit: cover;
    filter: contrast(1.15) saturate(1.3) brightness(0.95);
    animation: videoGlitch 6s ease-in-out infinite;
}

@keyframes videoGlitch {
    0%, 88%, 100% {
        filter: contrast(1.15) saturate(1.3) brightness(0.95) hue-rotate(0deg);
        transform: translate(-50%, -50%) scale(var(--parallax-scale, 1));
    }
    90% {
        filter: contrast(1.5) saturate(1.6) brightness(1.1) hue-rotate(10deg);
        transform: translate(-50.8%, -50%) scale(calc(var(--parallax-scale, 1) * 1.02));
    }
    92% {
        filter: contrast(0.8) saturate(1.5) brightness(0.9) hue-rotate(-8deg);
        transform: translate(-49.2%, -50%) scale(calc(var(--parallax-scale, 1) * 1.02));
    }
    94% {
        filter: contrast(1.3) saturate(1.4) brightness(1.05) hue-rotate(5deg);
        transform: translate(-50%, -50.3%) scale(calc(var(--parallax-scale, 1) * 1.01));
    }
    96% {
        filter: contrast(1.15) saturate(1.2) brightness(0.95) hue-rotate(-3deg);
        transform: translate(-50.2%, -50%) scale(var(--parallax-scale, 1));
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.8) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 107, 53, 0.06) 0px,
        transparent 1px,
        transparent 2px,
        rgba(255, 107, 53, 0.06) 3px
    );
    animation: scanlines 4s linear infinite;
    opacity: 0.6;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.1) 50%,
        transparent 100%
    );
    animation: colorShift 12s ease-in-out infinite;
    mix-blend-mode: overlay;
}

@keyframes colorShift {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Audio control */
.audio-control {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--orange);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.audio-control:hover {
    background: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

.audio-control svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.audio-control .icon-unmuted {
    display: none;
}

.audio-control.unmuted .icon-muted {
    display: none;
}

.audio-control.unmuted .icon-unmuted {
    display: block;
}

/* Icon Navigation */
.icon-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-nav.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(50px);
}

.nav-icon {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon svg {
    width: 12px;
    height: 12px;
    color: var(--orange);
    filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.3));
    flex-shrink: 0;
}

.nav-icon-label {
    position: absolute;
    right: 24px;
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0.65;
    pointer-events: auto;
    transition: all 0.3s ease;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    cursor: pointer;
}

.nav-icon:hover,
.nav-icon.active {
    opacity: 1;
    transform: scale(1.5);
}

.nav-icon:hover .nav-icon-label,
.nav-icon.active .nav-icon-label {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.nav-icon.active svg {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    left: 40px;
    top: 0;
    height: 100vh;
    width: 2px;
    z-index: 900;
    pointer-events: none;
}

.scroll-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--orange), transparent);
    transition: height 0.1s ease;
}

/* Content panels */
.content {
    position: relative;
    z-index: 1;
}

.panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    scroll-snap-align: var(--scroll-snap-align);
    scroll-snap-stop: always;
}

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

.panel-content {
    max-width: 600px;
    width: 100%;
}

/* Card style */
.card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card.wide {
    max-width: 900px;
}

/* Hero section */
#hero .panel-content {
    text-align: center;
}

.vinyl-spin {
    margin-bottom: 40px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.vinyl-disc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px var(--black),
        0 0 0 6px var(--orange),
        0 0 40px rgba(255, 107, 53, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.5);
    animation: spin 20s linear infinite;
    filter: contrast(1.1) brightness(1.05);
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

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

.hero-logo-text {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
    animation: subtle-glitch 8s ease-in-out infinite;
    display: block;
}

@keyframes subtle-glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-1px, 1px); }
}

.glitch-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    text-shadow:
        0 0 10px rgba(255, 107, 53, 0.5),
        3px 3px 0 rgba(255, 107, 53, 0.2);
    animation: subtle-glitch 8s ease-in-out infinite;
}

.tagline {
    font-size: 20px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Section headings */
.section-heading {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--orange);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

/* Gigs */
.gigs-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gig-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.gig-item:last-child {
    border-bottom: none;
}

.gig-item:hover {
    padding-left: 10px;
    border-color: var(--orange);
}

.gig-date {
    font-size: 14px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.gig-venue {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gig-city {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
}

.gig-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.gig-btn:hover {
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Music links */
.music-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.music-link {
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.music-link:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bio */
.bio-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--white);
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--white);
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-text .highlight {
    color: var(--orange);
    font-weight: 700;
}

.bio-text .role {
    color: var(--orange);
    font-style: italic;
}

.members-list {
    display: none;
}

.member {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.member-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--orange);
    padding-left: 35px;
}

.link-icon {
    font-size: 32px;
    font-weight: 900;
    color: var(--orange);
    width: 60px;
    text-align: center;
}

.link-text {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .audio-control {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .icon-nav {
        bottom: 30px;
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 20px;
    }

    .icon-nav.hidden {
        transform: translateX(-50%) translateY(100px);
    }

    .nav-icon {
        flex-direction: column;
        width: auto;
        height: auto;
        text-decoration: none;
    }

    .nav-icon svg {
        width: 10px;
        height: 10px;
    }

    .nav-icon-label {
        position: static;
        font-size: 8px;
        margin-top: 4px;
        opacity: 0.7;
        letter-spacing: 1.5px;
        color: var(--orange);
        text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
    }

    .nav-icon:hover .nav-icon-label,
    .nav-icon.active .nav-icon-label {
        opacity: 1;
        text-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
    }

    .scroll-indicator {
        left: 20px;
    }

    .panel {
        padding: 60px 20px;
    }

    .card {
        padding: 30px;
    }

    .vinyl-disc {
        width: 150px;
        height: 150px;
    }

    .hero-logo-text {
        max-width: 300px;
    }

    .glitch-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .section-heading {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .bio-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .bio-text p {
        margin-bottom: 18px;
    }

    .music-links {
        grid-template-columns: 1fr;
    }

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

    .members-list {
        grid-template-columns: 1fr;
    }

    .contact-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Vinyl scratch effect on hover */
@keyframes scratch {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.vinyl-disc:hover {
    animation: scratch 0.3s ease-in-out 3, spin 20s linear infinite;
}
