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

:root {
    --primary-orange: #d97638;
    --dark-orange: #b85c1f;
    --light-orange: #e89660;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #2a2a2a;
    --light-gray: #888888;
    --white: #ffffff;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    z-index: 1;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255, 255, 255, 0.03) 1px, rgba(255, 255, 255, 0.03) 2px),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.03) 1px, rgba(255, 255, 255, 0.03) 2px);
    background-size: 4px 4px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1) invert(0);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-orange);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 118, 56, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 92, 31, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 120% 50% at 50% 100%, rgba(217, 118, 56, 0.18) 0%, rgba(184, 92, 31, 0.08) 40%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 30% 100%, rgba(232, 150, 96, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 70% 100%, rgba(184, 92, 31, 0.1) 0%, transparent 60%);
    animation: horizonPulse 8s ease-in-out infinite;
}

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

@keyframes horizonPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scaleY(1) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15) scaleX(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    position: relative;
    margin-bottom: 2rem;
    animation: fadeInScale 1.5s ease;
}

.burning-city-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -30%;
    z-index: -1;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 118, 56, 0.8) 0%, transparent 30%),
        radial-gradient(circle at 40% 85%, rgba(232, 150, 96, 0.6) 0%, transparent 25%),
        radial-gradient(circle at 60% 82%, rgba(184, 92, 31, 0.7) 0%, transparent 28%),
        radial-gradient(circle at 80% 88%, rgba(217, 118, 56, 0.5) 0%, transparent 32%),
        linear-gradient(to top, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(26, 26, 26, 0.7) 30%,
            rgba(42, 42, 42, 0.5) 60%,
            transparent 100%
        );
    animation: burningFlames 8s ease-in-out infinite;
    filter: blur(2px);
}

.burning-city-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.2) 4px,
        transparent 6px,
        transparent 12px,
        rgba(0, 0, 0, 0.4) 14px,
        rgba(0, 0, 0, 0.1) 16px,
        transparent 18px,
        transparent 25px,
        rgba(0, 0, 0, 0.3) 27px,
        transparent 29px
    );
    animation: cityFlicker 3s ease-in-out infinite;
}

.burning-city-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: 
        radial-gradient(ellipse at 15% 100%, rgba(217, 118, 56, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 35% 100%, rgba(232, 150, 96, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 55% 100%, rgba(184, 92, 31, 0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 100%, rgba(217, 118, 56, 0.3) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 100%, rgba(232, 150, 96, 0.4) 0%, transparent 40%);
    animation: flameWave 6s ease-in-out infinite;
}

@keyframes burningFlames {
    0%, 100% { 
        transform: scale(1) translateY(0);
        opacity: 0.4;
    }
    25% { 
        transform: scale(1.05) translateY(-3px);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.02) translateY(-1px);
        opacity: 0.45;
    }
    75% { 
        transform: scale(1.08) translateY(-5px);
        opacity: 0.6;
    }
}

@keyframes cityFlicker {
    0%, 100% { opacity: 1; }
    20% { opacity: 0.8; }
    40% { opacity: 0.9; }
    60% { opacity: 0.7; }
    80% { opacity: 0.95; }
}

@keyframes flameWave {
    0%, 100% { 
        transform: scaleY(1) scaleX(1);
    }
    33% { 
        transform: scaleY(1.2) scaleX(0.95);
    }
    66% { 
        transform: scaleY(1.1) scaleX(1.05);
    }
}

.hero-logo-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(217, 118, 56, 0.3))
            drop-shadow(0 0 60px rgba(217, 118, 56, 0.1));
    animation: pulse 4s ease-in-out infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(217, 118, 56, 0.3))
                drop-shadow(0 0 60px rgba(217, 118, 56, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(217, 118, 56, 0.5))
                drop-shadow(0 0 80px rgba(217, 118, 56, 0.2));
    }
}

.glitch {
    position: relative;
    color: var(--white);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--light-orange);
    z-index: -1;
    text-shadow: 
        2px 2px 0 var(--dark-orange),
        -2px -2px 0 var(--primary-orange);
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--primary-orange);
    z-index: -2;
    text-shadow: 
        -2px 2px 0 var(--light-orange),
        2px -2px 0 var(--dark-orange);
}

@keyframes glitch-1 {
    0%, 100% { 
        clip-path: inset(0 0 0 0); 
        transform: translate(0) scaleY(1);
        filter: hue-rotate(0deg);
    }
    20% { 
        clip-path: inset(20% 0 30% 0); 
        transform: translate(-2px, 2px) scaleY(1.02);
        filter: hue-rotate(5deg);
    }
    40% { 
        clip-path: inset(50% 0 20% 0); 
        transform: translate(2px, -2px) scaleY(0.98);
        filter: hue-rotate(-5deg);
    }
    60% { 
        clip-path: inset(10% 0 60% 0); 
        transform: translate(-1px, 1px) scaleY(1.01);
        filter: hue-rotate(3deg);
    }
    80% { 
        clip-path: inset(70% 0 10% 0); 
        transform: translate(1px, -1px) scaleY(0.99);
        filter: hue-rotate(-3deg);
    }
}

@keyframes glitch-2 {
    0%, 100% { 
        clip-path: inset(0 0 0 0); 
        transform: translate(0) scaleX(1);
        filter: brightness(1);
    }
    20% { 
        clip-path: inset(60% 0 10% 0); 
        transform: translate(2px, -1px) scaleX(1.02);
        filter: brightness(1.2);
    }
    40% { 
        clip-path: inset(20% 0 50% 0); 
        transform: translate(-2px, 1px) scaleX(0.98);
        filter: brightness(0.9);
    }
    60% { 
        clip-path: inset(30% 0 40% 0); 
        transform: translate(1px, 2px) scaleX(1.01);
        filter: brightness(1.1);
    }
    80% { 
        clip-path: inset(10% 0 70% 0); 
        transform: translate(-1px, -2px) scaleX(0.99);
        filter: brightness(0.95);
    }
}

.album-announcement {
    margin: 2rem 0;
}

.album-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 
        0 0 10px rgba(217, 118, 56, 0.8),
        0 0 20px rgba(217, 118, 56, 0.6),
        0 0 30px rgba(217, 118, 56, 0.4),
        0 0 40px rgba(217, 118, 56, 0.2);
    animation: fireGlow 2s ease-in-out infinite alternate;
}

@keyframes fireGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(217, 118, 56, 0.8),
            0 0 20px rgba(217, 118, 56, 0.6),
            0 0 30px rgba(217, 118, 56, 0.4),
            0 0 40px rgba(217, 118, 56, 0.2);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(232, 150, 96, 0.9),
            0 0 30px rgba(217, 118, 56, 0.7),
            0 0 40px rgba(184, 92, 31, 0.5),
            0 0 50px rgba(217, 118, 56, 0.3);
    }
}

.release-date {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--light-gray);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 118, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 100px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.music-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.album-art {
    display: flex;
    justify-content: center;
}

.album-cover {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--dark-gray);
    border: 2px solid var(--gray);
    box-shadow: 
        0 0 30px rgba(217, 118, 56, 0.2),
        0 0 60px rgba(217, 118, 56, 0.1);
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05) rotate(1deg);
}

.album-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.album-date {
    color: var(--light-gray);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.album-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--white);
}

.streaming-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.streaming-btn {
    padding: 1rem;
    background: var(--gray);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.streaming-btn:hover::before {
    left: 100%;
}

.streaming-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 118, 56, 0.3);
}

.video-showcase {
    margin-top: 4rem;
    text-align: center;
}

.video-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--dark-gray);
    border: 2px solid var(--gray);
    box-shadow:
        0 0 30px rgba(217, 118, 56, 0.2),
        0 0 60px rgba(217, 118, 56, 0.1);
}

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

.shows-section {
    background: var(--black);
    position: relative;
}

.shows-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0.3;
}

.shows-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.shows-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--light-gray);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shows-tab:hover {
    border-color: var(--primary-orange);
    color: var(--white);
}

.shows-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.shows-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--light-gray);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.shows-empty,
.shows-error {
    text-align: center;
    padding: 3rem;
    color: var(--light-gray);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.shows-error {
    color: var(--primary-orange);
}

.show-year {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--black);
    opacity: 0.8;
    margin-top: 0.25rem;
}

.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.show-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 118, 56, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 118, 56, 0.2);
}

.show-card:hover::before {
    opacity: 1;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    padding: 1rem;
}

.show-month {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
}

.show-day {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--black);
    line-height: 1;
}

.show-info {
    padding: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.show-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.show-venue {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--light-gray);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.show-description {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.show-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.show-time,
.show-price {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.show-lineup {
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
}

.lineup-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--light-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.headliner {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
}

.support {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.25rem;
}

.ticket-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 118, 56, 0.3);
}

.merch-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0.3;
}

.merch-showcase-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.merch-product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.merch-product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.merch-product-img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 15px 40px rgba(217, 118, 56, 0.3));
}

.merch-cta {
    background: var(--dark-gray);
    padding: 3rem;
    border: 2px solid var(--gray);
    position: relative;
    overflow: hidden;
}

.merch-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 118, 56, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.merch-info {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.merch-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.merch-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.merch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.merch-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    border: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.merch-shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.merch-shop-btn:hover::before {
    left: 0;
}

.merch-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 118, 56, 0.4);
}

.merch-shop-btn:hover .arrow-icon {
    transform: translate(2px, -2px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.about-section {
    background: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

blockquote {
    border-left: 3px solid var(--primary-orange);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--light-gray);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-orange);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.band-photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(217, 118, 56, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.band-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(217, 118, 56, 0.2);
}

.band-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: 
        brightness(0.7)
        contrast(1.2)
        saturate(0.8)
        sepia(0.2)
        hue-rotate(10deg);
    transition: filter 0.3s ease;
}

.band-photo-container:hover .band-photo {
    filter: 
        brightness(0.8)
        contrast(1.3)
        saturate(0.9)
        sepia(0.1)
        hue-rotate(5deg);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(217, 118, 56, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.band-photo-container:hover .photo-overlay {
    opacity: 0.6;
}

.band-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.stat:hover {
    background: var(--gray);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(217, 118, 56, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.stat-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

.contact-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-gray);
}

.newsletter-signup {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.email-contact {
    text-align: center;
}

.email-contact h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.email-link {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-orange);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-orange);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.5s ease;
    z-index: -1;
}

.email-link:hover::before {
    left: 0;
}

.email-link:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 118, 56, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dark-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 300%;
    height: 300%;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 118, 56, 0.3);
}

#the-signal-chain {
    --sc-bg: var(--dark-gray);
    --sc-text: var(--white);
    --sc-accent: var(--primary-orange);
}

.footer {
    background: var(--black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--gray);
}

.footer p {
    color: var(--light-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-logo-img {
        max-width: 90%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .streaming-links {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .band-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat {
        flex: 1;
        padding: 1rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
    
    .shows-tabs {
        gap: 0.5rem;
    }

    .shows-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .show-card {
        grid-template-columns: 80px 1fr;
    }

    .show-date {
        padding: 0.75rem 0.5rem;
    }

    .show-day {
        font-size: 2.2rem;
    }

    .merch-showcase-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .merch-product {
        order: 1;
    }
    
    .merch-cta {
        padding: 2rem;
    }
    
    .merch-info h3 {
        font-size: 2rem;
    }
    
    .merch-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .merch-shop-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-logo-img {
        max-width: 280px;
    }
    
    .album-title {
        font-size: 2rem;
    }
    
    .release-date {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 180px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .album-info h3 {
        font-size: 2rem;
    }
    
    .album-description {
        font-size: 1rem;
    }
    
    .streaming-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    blockquote {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    .band-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .email-contact h3 {
        font-size: 1.2rem;
    }
    
    .email-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    .merch-cta {
        padding: 1.5rem;
    }
    
    .merch-info h3 {
        font-size: 1.5rem;
    }
    
    .merch-info p {
        font-size: 0.95rem;
    }
    
    .merch-shop-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .merch-product-img {
        max-width: 300px;
    }

    .shows-tabs {
        flex-direction: column;
        align-items: center;
    }

    .shows-tab {
        width: 100%;
        max-width: 200px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .show-card {
        grid-template-columns: 70px 1fr;
    }

    .show-title {
        font-size: 1.5rem;
    }

    .show-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .headliner {
        font-size: 1rem;
    }

    .show-year {
        font-size: 0.75rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-logo-img {
        max-width: 700px;
    }
    
    .album-showcase {
        gap: 6rem;
    }
    
    .about-content {
        gap: 6rem;
    }
}