:root {
    --primary-color: #00ff66; /* Electric Neon Lime */
    --secondary-color: #004d1a; /* Dark Emerald */
    --bg-dark: #050a07; /* Almost Black with Green Tint */
    --bg-card: #0a140d;
    --text-light: #f0fdf4;
    --text-muted: #8a9c90;
    --glass-bg: rgba(10, 20, 13, 0.6);
    --glass-border: rgba(0, 255, 102, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ── CROSS-BROWSER FORM NORMALIZATION ── */
input, textarea, select, button {
    font-family: 'Outfit', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300ff66' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Firefox-specific: remove dotted focus outline */
::-moz-focus-inner { border: 0; padding: 0; }
input::-moz-focus-inner,
button::-moz-focus-inner { border: 0; }

/* Normalize placeholder colour across browsers */
::-webkit-input-placeholder { color: var(--text-muted); opacity: 1; }
::-moz-placeholder           { color: var(--text-muted); opacity: 1; }
:-ms-input-placeholder       { color: var(--text-muted); opacity: 1; }
::placeholder                { color: var(--text-muted); opacity: 1; }

/* Hide desktop browser scrollbar on the side of the website while keeping scroll functionality active */
@media (min-width: 769px) {
    html {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    ::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
}

/* Merch Variant Instructions Responsive Defaults */
.merch-instruction .mobile-text {
    display: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(to right, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.75rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

/* Hamburger Menu Button — sleek pill style */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: rgba(0, 255, 102, 0.06);
    border: 1px solid rgba(0, 255, 102, 0.25);
    border-radius: 10px;
    padding: 8px 10px;
    z-index: 1001;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.hamburger:hover {
    background: rgba(0, 255, 102, 0.12);
    border-color: var(--primary-color);
}

.hamburger span {
    display: block;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    background: var(--text-light);
}

/* Three lines: top long, middle short, bottom long */
.hamburger span:nth-child(1) { width: 22px; height: 2px; }
.hamburger span:nth-child(2) { width: 14px; height: 2px; margin-left: 4px; opacity: 0.7; }
.hamburger span:nth-child(3) { width: 22px; height: 2px; }

/* Open state — elegant X */
.hamburger.open {
    background: rgba(0, 255, 102, 0.15);
    border-color: var(--primary-color);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 22px; background: var(--primary-color); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 22px; background: var(--primary-color); }

/* Mobile Nav Drawer — sleek full-screen overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 7, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-light);
    padding: 1rem 3rem;
    width: 100%;
    text-align: center;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    border-bottom: 1px solid rgba(0, 255, 102, 0.05);
}

.mobile-nav a:first-child {
    border-top: 1px solid rgba(0, 255, 102, 0.05);
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: top;
}

.mobile-nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 102, 0.04);
}

.mobile-nav a:hover::after {
    transform: scaleY(1);
}

nav.scrolled {
    padding: 0.5rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

/* Hero Section */
#hero, .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #021a0a 0%, #050a07 100%);
    padding: 4rem 1rem 2rem;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}

.hero-video-bg video,
.hero-video-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(5, 10, 7, 0.55) 0%,
        rgba(5, 10, 7, 0.75) 50%,
        rgba(5, 10, 7, 0.97) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 1.5rem;
    width: 100%;
    margin-top: 5rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Music Controls */
.music-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    padding: 8px 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10;
}

#music-toggle-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

#music-toggle-btn:hover {
    color: var(--primary-color);
}

#music-volume-slider {
    width: 80px;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#music-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

#music-volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 102, 0.15);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
}

/* Animated title - word-level spans */
.hero-title {
    font-size: clamp(2rem, 8.5vw, 7rem);
    font-weight: 900;
    letter-spacing: clamp(2px, 0.5vw, 8px);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.3em;
    position: relative;
}

.hero-word {
    display: inline-block;
    white-space: nowrap;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.5s both;
}

/* Hero Stats Row - Boxed cards like example */
.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.7s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-col {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 255, 102, 0.06);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 102, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.stat-col:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
}

.stat-col .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0;
}

.stat-col .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Hero Social Links */
.hero-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 1.1s both;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 255, 102, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.hero-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.hero-social-links a:hover::before {
    transform: scale(1);
}

.hero-social-links a:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceScroll 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
    filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.8));
}

@keyframes bounceScroll {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-8px) translateX(-50%); }
}

.streaming-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.4);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.15);
    animation: pillGlow 3s ease-in-out infinite;
}

.pulse-dot {
    font-size: 0.85rem;
    color: var(--primary-color);
    flex-shrink: 0;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.streaming-pill:hover {
    background: rgba(0, 255, 102, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 255, 102, 0.4);
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
}

@keyframes pillGlow {
    0%, 100% { box-shadow: 0 0 18px rgba(0, 255, 102, 0.15); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 102, 0.35); }
}


.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--glass-border);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 5%;
    position: relative;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.1);
    height: 500px; /* Force height */
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: grayscale(80%) sepia(50%) hue-rotate(80deg) saturate(200%) brightness(0.8);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 77, 26, 0.6), rgba(5, 10, 7, 0.8));
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover img {
    transform: scale(1.05);
    filter: grayscale(50%) sepia(80%) hue-rotate(80deg) saturate(250%) brightness(1);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.track-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}

/* Top row: icon left, name right */
.track-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-art {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.track-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.track-card:hover .track-art img {
    transform: scale(1.05);
}

.track-card:hover .track-art {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.track-info {
    flex: 1;
}

.track-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.track-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
}

/* Full-width audio player below */
.track-audio {
    width: 100%;
    height: 36px;
    border-radius: 50px;
    outline: none;
    filter: invert(1) hue-rotate(90deg) saturate(3) brightness(0.85);
    display: block;
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}


/* Video Carousel and Coming Soon */
.coming-soon-container {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px dashed var(--primary-color);
    border-radius: 15px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.05), transparent);
}

.coming-soon-text {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.video-carousel {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-color);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

.video-card {
    flex: 0 0 400px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #00260d, #0a140d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: left bottom;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 7, 0.7);
    transition: var(--transition);
    z-index: 1;
}

.video-card:hover .video-overlay {
    background: rgba(0, 77, 26, 0.4);
    mix-blend-mode: overlay;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    pointer-events: none;
    z-index: 3;
}

.video-play-icon {
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
    z-index: 2;
}

.play-btn-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 102, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulsePlay 2s infinite;
    opacity: 0;
    transition: var(--transition);
}

@keyframes pulsePlay {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.video-card:hover .play-btn-pulse {
    opacity: 1;
}

.video-card:hover .video-play-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.video-card h3 {
    font-size: 1.2rem;
    text-align: center;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 250px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 102, 0.15);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 102, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.4;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 255, 102, 0.35), 0 0 15px rgba(0, 255, 102, 0.15);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::before {
    opacity: 0.15;
}

/* Tour Section */
.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.tour-item:hover {
    background: rgba(0, 255, 102, 0.02);
    padding-left: 1rem;
    padding-right: 1rem;
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.tour-date .month {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
}

.tour-date .day {
    font-size: 1.5rem;
    font-weight: 800;
}

.tour-venue h3 {
    font-size: 1.3rem;
}

.tour-venue p {
    color: var(--text-muted);
}

.tour-item-ended {
    opacity: 0.5;
    filter: grayscale(0.7);
}

.tour-ended-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}

/* Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-emails {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
}

.contact-emails .info-item {
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(5, 10, 7, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
    background: rgba(5, 10, 7, 0.9);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem;
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #020504;
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Merch Hover Popup ── */
.merch-card {
    position: relative;
    overflow: visible !important;
}

.merch-img-container {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.merch-variants-popup {
    position: absolute;
    bottom: 105%; /* Reduced gap slightly for easier hover entry */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: max-content; /* Allow width to accommodate row */
    max-width: 600px;
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
    display: flex;
    flex-direction: row; /* Changed to horizontal */
    flex-wrap: wrap; /* In case items need to wrap */
    justify-content: center;
    gap: 1.2rem;
    pointer-events: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Invisible bridge to keep hover active */
.merch-variants-popup::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: -1;
    pointer-events: all;
}

/* Arrow for the popup */
.merch-variants-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

.merch-card.variant-hover:hover .merch-variants-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.variant-item {
    display: flex;
    flex-direction: column; /* Stack image and text */
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    width: 120px; /* Fixed width for uniform horizontal look */
}

.variant-item:hover {
    background: rgba(0, 255, 102, 0.1);
    border-color: var(--primary-color);
}

.variant-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.variant-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.variants-footer {
    width: 100%; /* Force to new line in flex wrap */
    border-top: 1px solid var(--glass-border);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .merch-variants-popup {
        display: none !important;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.p1 { width: 10px; height: 10px; left: 10%; top: 20%; animation-duration: 25s; }
.p2 { width: 5px; height: 5px; left: 80%; top: 40%; animation-duration: 18s; animation-delay: -5s; }
.p3 { width: 15px; height: 15px; left: 30%; top: 70%; animation-duration: 22s; animation-delay: -10s; }
.p4 { width: 8px; height: 8px; left: 70%; top: 80%; animation-duration: 20s; animation-delay: -2s; }
.p5 { width: 12px; height: 12px; left: 50%; top: 30%; animation-duration: 28s; animation-delay: -7s; }
.p6 { width: 6px; height: 6px; left: 20%; top: 85%; animation-duration: 15s; animation-delay: -3s; }
.p7 { width: 14px; height: 14px; left: 90%; top: 15%; animation-duration: 26s; animation-delay: -12s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
    25% { transform: translateY(-50px) translateX(30px); opacity: 0.4; }
    50% { transform: translateY(-100px) translateX(-20px); opacity: 0.2; }
    75% { transform: translateY(-30px) translateX(-40px); opacity: 0.5; }
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-stats-row { gap: 1.5rem; }
    .contact-emails { gap: 1.5rem; }
    .music-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

/* Small tablet / large mobile - 768px */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Sections */
    section { padding: 70px 5%; }
    h2 { font-size: 2.2rem; }

    /* Hero */
    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: clamp(1px, 1vw, 3px);
        gap: 0.3em;
    }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 3px; }
    .hero-content { margin-top: 1rem; padding: 1rem; }
    .hero-badge { margin-top: -3rem; margin-bottom: 2rem; }
    .hero-stats-row { gap: 1rem; }
    .stat-col { padding: 0.8rem 1rem; min-width: 80px; }
    .stat-col .stat-number { font-size: 1.4rem; }

    /* Buttons */
    .btn { padding: 0.8rem 1.8rem; font-size: 1rem; }
    .btn-outline { margin-left: 0; }
    .hero-btns { gap: 0.8rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { height: 350px; }

    /* Music */
    .music-grid { grid-template-columns: 1fr; }

    /* Carousel */
    .video-card { flex: 0 0 80vw; }
    .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
    .prev-btn { left: -8px; }
    .next-btn { right: -8px; }
    .carousel-container { padding: 0 15px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Merch */
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .merch-img-container { height: 220px; }

    /* Tour */
    .tour-item { flex-direction: column; gap: 1rem; text-align: center; }

    /* Contact */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-emails { flex-direction: column; align-items: center; gap: 1rem; }
    .contact-form { padding: 2rem 1.5rem; }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: clamp(1.8rem, 13vw, 3rem);
        letter-spacing: 1px;
    }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .hero-social-links a { width: 38px; height: 38px; font-size: 1rem; }
    .hero-stats-row { gap: 0.7rem; }
    .stat-col { padding: 0.7rem 0.8rem; min-width: 70px; }
    .stat-col .stat-number { font-size: 1.2rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Merch */
    .merch-grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact */
    .info-item { flex-direction: column; text-align: center; border-radius: 15px; }

    /* Logo */
    .logo img { height: 38px; }
}


/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
    .merch-img-container { height: auto; aspect-ratio: 1; }
}

.merch-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.15);
}

.merch-img-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #050a07, #0a140d);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.merch-card:hover .merch-img-container img {
    transform: scale(1.05);
}

.merch-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex-grow: 1;
}

.merch-info h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.merch-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Merch mobile card layout */
@media (max-width: 768px) {
    .merch-info { padding: 0.5rem 0.4rem; gap: 0.3rem; }
    .merch-info h3 { font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; margin-bottom: 0; }
    .merch-info .merch-price { font-size: 0.75rem; margin: 0; }
    .merch-info .btn,
    .merch-info .merch-instruction { display: none; }
}

/* Coming Soon Button */
.btn-coming-soon {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px dashed rgba(0, 255, 102, 0.4);
    color: var(--text-muted);
    cursor: default;
    letter-spacing: 1px;
    background: transparent;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #050a07;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.6));
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.75; }
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(0, 255, 102, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.8);
    animation: preloaderLoad 1.8s ease forwards;
}

@keyframes preloaderLoad {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

.preloader-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* =====================
   CUSTOM CURSOR
   ===================== */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.8);
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(0, 255, 102, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--primary-color);
    background: rgba(0, 255, 102, 0.08);
}

@media (hover: none) {
    #cursor-dot, #cursor-ring { display: none; }
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.15);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.lightbox.open #lightbox-img {
    transform: scale(1);
}

#lightbox-close,
#lightbox-expand {
    position: absolute;
    top: 1.5rem;
    background: none;
    border: 2px solid rgba(0, 255, 102, 0.4);
    color: var(--text-light);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
    z-index: 105;
}

#lightbox-close {
    right: 1.5rem;
    font-size: 1.8rem;
}

#lightbox-expand {
    right: 5rem;
    font-size: 1.2rem;
}

#lightbox-close:hover,
#lightbox-expand:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 105;
}

#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }

#lightbox-prev:hover,
#lightbox-next:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    #lightbox-close,
    #lightbox-expand {
        top: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(5, 10, 7, 0.8) !important;
    }
    
    #lightbox-close {
        right: 1rem;
        font-size: 1.5rem;
    }
    
    #lightbox-expand {
        right: 4rem;
        font-size: 1rem;
    }
    
    #lightbox-prev,
    #lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        background: rgba(5, 10, 7, 0.8) !important;
    }
    
    #lightbox-prev { left: 0.8rem; }
    #lightbox-next { right: 0.8rem; }
}

/* =====================
   STAT COUNTER SUFFIX
   ===================== */
.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number + .stat-suffix {
    display: inline;
}

.stat-col .stat-number,
.stat-col .stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

/* =====================
   SECTION DIVIDERS
   ===================== */
section::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    opacity: 0.4;
}

#hero::after { display: none; }

/* =====================
   STAGGERED REVEAL
   ===================== */
.reveal-child > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-child.active > * {
    opacity: 1;
    transform: none;
}

.reveal-child.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-child.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-child.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-child.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-child.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-child.active > *:nth-child(6) { transition-delay: 0.6s; }


/* =====================
   BACK TO TOP
   ===================== */
#back-to-top {
    position: fixed;
    bottom: 10rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
    transform: translateY(-3px);
}

/* ── Contact Form: Success & Error States ── */
.form-success {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 0.5s ease forwards;
}

.form-success i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.6));
    animation: badgePulse 2s infinite;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-error {
    color: #ff4d6d;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 0.75rem;
    background: rgba(255, 77, 109, 0.08);
    border: 1px solid rgba(255, 77, 109, 0.25);
    border-radius: 8px;
}

.form-toast {
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
}
.form-toast.success {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
}
.form-toast.error {
    color: #ff4d6d;
    background: rgba(255, 77, 109, 0.08);
    border: 1px solid rgba(255, 77, 109, 0.25);
}

/* =====================
   NEW ALBUM FEATURE SECTION
   ===================== */
.album-feature-section {
    padding: 100px 5% 50px;
    background: radial-gradient(ellipse at top, rgba(0, 77, 26, 0.15) 0%, rgba(5, 10, 7, 0) 70%);
}

.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.album-header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
}

.album-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.album-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album-subtitle {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.album-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 750px;
}

.album-grid-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
    width: 100%;
}

.album-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.album-right-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.album-art-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 102, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
    aspect-ratio: 1 / 1;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
    width: 100%;
    max-width: 450px;
}

.album-art-wrap:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.3), 0 20px 40px rgba(0, 0, 0, 0.8);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

.album-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.6);
    z-index: 2;
    transform: rotate(25deg);
    transform-origin: center;
    animation: albumBadgePulse 2s infinite;
}

@keyframes albumBadgePulse {
    0%, 100% { 
        transform: rotate(25deg) scale(1); 
        box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    }
    50% { 
        transform: rotate(25deg) scale(1.05); 
        box-shadow: 0 0 25px rgba(0, 255, 102, 0.4);
    }
}

.album-left-actions {
    width: 100%;
    max-width: 450px;
}

.tracklist-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: left;
}

.tracklist-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.album-tracks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 2rem;
    row-gap: 0.8rem;
}

@media (max-width: 600px) {
    .album-tracks {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }
}

.album-tracks li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 1rem;
    transition: var(--transition);
}

.album-tracks li:last-child {
    border-bottom: none;
}

.album-tracks li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.track-number {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 0.9rem;
}

.track-name {
    flex: 1;
    font-weight: 500;
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.album-actions {
    display: flex;
    align-items: center;
    width: 100%;
}

.album-actions .btn {
    flex-shrink: 0;
}

.stream-links {
    display: flex;
    gap: 1.2rem;
}

.stream-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.stream-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .album-grid-block {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .album-left-col {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .album-right-col {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .album-actions {
        justify-content: center;
    }
    
    .album-header-block {
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   PRODUCT & MERCH LIGHTBOX VIEWER PANEL
   ========================================================================== */

.lightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-media-side {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    max-height: 80vh;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 102, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.open #lightbox-img {
    transform: scale(1);
}

.lightbox-details-side {
    flex: 1;
    background: rgba(5, 10, 7, 0.85);
    border: 1px solid rgba(0, 255, 102, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 255, 102, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 80vh;
    overflow-y: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Scrollbar styling for details side */
.lightbox-details-side::-webkit-scrollbar {
    width: 6px;
}
.lightbox-details-side::-webkit-scrollbar-track {
    background: transparent;
}
.lightbox-details-side::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 102, 0.2);
    border-radius: 10px;
}
.lightbox-details-side::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Toggle modes */
.lightbox.gallery-mode .lightbox-details-side {
    display: none !important;
}

.lightbox.gallery-mode .lightbox-container {
    max-width: 800px;
}

.lightbox.gallery-mode .lightbox-media-side {
    flex: 1;
}

.lightbox.gallery-mode #lightbox-img {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

/* Badges and Typography */
.lightbox-stock-badge {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
}

.lightbox-stock-badge.in-stock {
    background: rgba(0, 255, 102, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
}

.lightbox-stock-badge.out-of-stock {
    background: rgba(255, 51, 51, 0.15);
    color: #ff3333;
    border: 1px solid #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.25);
}

.lightbox-title {
    font-size: 1.7rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.lightbox-price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.lightbox-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Clone Action Button styling inside Modal */
.lightbox-details-side .snipcart-add-item {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.lightbox-details-side .snipcart-add-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.4);
}

.lightbox-details-side .btn-out-of-stock {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    background: rgba(255, 51, 51, 0.05);
    border: 2px dashed rgba(255, 51, 51, 0.3);
    color: rgba(255, 51, 51, 0.65);
    border-radius: 50px;
    cursor: not-allowed;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Responsive Adaptive Grid (No Scrolling needed on Mobile!) */
@media (max-width: 768px) {
    .lightbox-container {
        flex-direction: column;
        gap: 0.8rem;
        width: 95%;
        max-height: 95vh;
        overflow: hidden; /* Fully disable inner modal scroll */
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
    
    .lightbox-media-side {
        position: relative !important;
        max-height: 25vh;
        width: 100%;
        flex: none;
    }
    
    #lightbox-img {
        max-height: 23vh;
        border-radius: 8px;
    }
    
    .lightbox-details-side {
        width: 100%;
        padding: 1rem;
        max-height: none;
        flex: none;
        gap: 0.6rem;
        background: rgba(5, 10, 7, 0.95);
        border-radius: 12px;
    }
    
    .lightbox-title {
        font-size: 1.25rem;
    }
    
    .lightbox-price {
        font-size: 1.15rem;
    }
    
    .lightbox-description {
        font-size: 0.85rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Lock to 2 lines max so text doesn't overflow the screen height */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .lightbox-details-side .snipcart-add-item,
    .lightbox-details-side .btn-out-of-stock {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.4rem;
    }
    
    .album-label {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        display: block !important;
        text-align: center !important;
    }
    
    h2 {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .merch-instruction .desktop-text {
        display: none !important;
    }
    
    .merch-instruction .mobile-text {
        display: inline !important;
    }

    /* ── Mobile Gallery Fullscreen Override ── */
    .lightbox.gallery-mode .lightbox-container {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        padding: 0;
        margin: 0;
        gap: 0;
        justify-content: center;
        border-radius: 0;
    }
    
    .lightbox.gallery-mode .lightbox-media-side {
        max-height: 100vh;
        height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lightbox.gallery-mode #lightbox-img {
        max-height: 100vh;
        max-width: 100vw;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .lightbox.gallery-mode #lightbox-close,
    .lightbox.gallery-mode #lightbox-expand {
        top: 20px;
        background: rgba(0, 0, 0, 0.6) !important;
        border: none;
        color: white;
    }
    
    .lightbox.gallery-mode #lightbox-close {
        right: 20px;
    }
    
    .lightbox.gallery-mode #lightbox-expand {
        right: 70px;
    }
    
    .lightbox.gallery-mode #lightbox-prev,
    .lightbox.gallery-mode #lightbox-next {
        background: rgba(0, 0, 0, 0.4) !important;
        border: none;
        width: 45px;
        height: 45px;
        color: white;
    }
}

/* ==========================================================================
   SNIPCART CART OFFSET & VISIBILITY OVERRIDES
   ========================================================================== */

/* Push the Snipcart checkout drawer down below our fixed header navigation so the close button is visible */
.snipcart-modal__container {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .snipcart-modal__container {
        padding-top: 70px !important;
    }
}

/* Force hide the back-to-top button when the shopping cart is open */
html.snipcart-checkout-open #back-to-top,
.snipcart-checkout-open #back-to-top,
.snipcart-open #back-to-top {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}



/* ==========================================================================
   SUCCESS TOAST NOTIFICATION
   ========================================================================== */

.cart-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(10, 20, 13, 0.97);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2147483647;
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.3), 0 5px 15px rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    /* Snappy: fast slide-in from right */
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease;
}

.cart-toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 480px) {
    .cart-toast {
        top: auto;
        bottom: 20px;
        right: 12px;
        left: 12px;
        border-radius: 10px;
        padding: 0.85rem 1rem;
    }
    .cart-toast-img {
        width: 52px;
        height: 52px;
    }
}

.cart-toast-img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.cart-toast-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cart-toast-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-toast-msg {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}


/* ==========================================================================
   ONE MAN BAND GEAR SECTION
   ========================================================================== */

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gear-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.gear-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gear-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gear-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gear-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.gear-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.gear-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hover effects */
.gear-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 102, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 102, 0.15), 0 5px 15px rgba(0, 0, 0, 0.6);
}

.gear-card:hover .gear-img-container img {
    transform: scale(1.08);
}

.gear-card:hover .gear-glow {
    opacity: 1;
}

.gear-card:hover .gear-info h3 {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .gear-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

/* ==========================================================================
   NEW SINGLE FEATURE SECTION
   ========================================================================== */
.single-feature-section {
    padding: 100px 5% 50px;
    background: radial-gradient(ellipse at top, rgba(0, 255, 102, 0.1) 0%, rgba(5, 10, 7, 0) 70%);
    border-bottom: 1px solid var(--glass-border);
}

.single-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.single-header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
}

.single-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.single-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-subtitle {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.single-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    max-width: 750px;
}

.single-desc-wrap {
    max-width: 750px;
}

.single-desc-more p {
    margin-top: 0.85rem;
}

.single-read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0.35rem 0;
    margin-top: 0.25rem;
    transition: opacity 0.15s;
    text-transform: uppercase;
}

.single-read-more-btn:hover {
    opacity: 0.75;
}

/* About bio Read More */
.about-bio-wrap {
    display: flex;
    flex-direction: column;
}

.about-bio-p {
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.about-bio-more .about-bio-p {
    margin-top: 0;
}

.about-read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0.35rem 0;
    margin-top: 0.1rem;
    transition: opacity 0.15s;
    text-transform: uppercase;
    text-align: left;
}

.about-read-more-btn:hover {
    opacity: 0.75;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 860px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    animation: cookieSlideUp 0.4s ease;
}

#cookie-banner.cookie-hide {
    animation: cookieSlideDown 0.4s ease forwards;
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.cookie-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes cookieSlideDown {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to   { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@media (max-width: 480px) {
    #cookie-banner { bottom: 0; left: 0; transform: none; width: 100%; border-radius: 14px 14px 0 0; }
    #cookie-banner.cookie-hide { animation: cookieFadeOut 0.4s ease forwards; }
    @keyframes cookieFadeOut { to { opacity: 0; } }
}

/* Gear placeholder */
.gear-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--bg-card);
    border: 1px dashed rgba(0,255,102,0.2);
    min-height: 220px;
    cursor: default !important;
}

.gear-img-placeholder i {
    font-size: 2rem;
    color: rgba(0,255,102,0.25);
}

.gear-img-placeholder span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0,255,102,0.25);
    font-weight: 600;
}

/* Gear download button */
.gear-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
}

.single-grid-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
    width: 100%;
}

.single-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.single-right-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-art-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 102, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
    aspect-ratio: 1 / 1;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
    width: 100%;
    max-width: 450px;
}

.single-art-wrap:hover {
    transform: scale(1.02) rotate(-1deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.3), 0 20px 40px rgba(0, 0, 0, 0.8);
}

.single-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

.single-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.6);
    z-index: 2;
    transform: rotate(15deg);
    transform-origin: center;
    animation: albumBadgePulse 2s infinite;
}

.more-singles-block {
    width: 100%;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.more-singles-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.more-singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.mini-single-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mini-single-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
}

.mini-single-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.mini-single-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-single-title {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.mini-single-audio {
    width: 100%;
    height: 36px;
    margin-bottom: 0.75rem;
}

.mini-single-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mini-single-links .stream-icon {
    font-size: 1.3rem;
}

.player-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: left;
}

.player-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.featured-player-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-player-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.featured-player-art {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.featured-player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-player-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.featured-player-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-audio {
    height: 44px !important;
}

@media (max-width: 992px) {
    .single-grid-block {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .single-left-col {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .single-right-col {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .single-header-block {
        margin-bottom: 3rem;
    }
}

/* --- AUDIO PREVIEW LIMIT CTA MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(0, 255, 102, 0.25);
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 255, 102, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: pulseGlow 2s infinite alternate;
}

.modal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

@media (max-width: 576px) {
    .modal-cta-box {
        grid-template-columns: 1fr;
    }
}

.cta-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
    background: rgba(0, 255, 102, 0.02);
    border-color: rgba(0, 255, 102, 0.3);
}

.cta-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.cta-stream-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.stream-btn.spotify {
    background: #1DB954;
    color: #fff;
}

.stream-btn.apple {
    background: #fc3c44;
    color: #fff;
}

.stream-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4);
    }
    100% {
        box-shadow: 0 0 15px 5px rgba(0, 255, 102, 0.1);
    }
}

/* Disabled Player state to grey out other tracks */
.disabled-player {
    opacity: 0.3 !important;
    pointer-events: none !important;
    filter: grayscale(1) contrast(0.6) brightness(0.8) !important;
    cursor: not-allowed !important;
}

/* ==========================================================================
   MERCH STOREFRONT CTA BANNER
   ========================================================================== */

.merch-storefront-cta {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 102, 0.08);
    border: 1px solid var(--glass-border);
    max-height: 380px;
}

.merch-storefront-img-wrap {
    position: relative;
    width: 100%;
    height: 380px;
}

.merch-storefront-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.6s ease;
}

.merch-storefront-cta:hover .merch-storefront-img-wrap img {
    transform: scale(1.03);
}

.merch-storefront-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 10, 7, 0.85) 0%,
        rgba(5, 10, 7, 0.55) 50%,
        rgba(5, 10, 7, 0.15) 100%
    );
    display: flex;
    align-items: center;
    padding: 3rem 4rem;
}

.merch-storefront-text {
    max-width: 420px;
}

.merch-storefront-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.merch-storefront-text h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.merch-storefront-text p {
    font-size: 1rem;
    color: rgba(240, 253, 244, 0.75);
    line-height: 1.6;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .merch-storefront-cta {
        max-height: 240px;
        border-radius: 14px;
    }
    .merch-storefront-img-wrap {
        height: 240px;
    }
    .merch-storefront-overlay {
        padding: 1.5rem 1.5rem;
        background: linear-gradient(
            to bottom,
            rgba(5, 10, 7, 0.3) 0%,
            rgba(5, 10, 7, 0.85) 100%
        );
        align-items: flex-end;
    }
    .merch-storefront-text h3 {
        font-size: 1.4rem;
    }
    .merch-storefront-text p {
        font-size: 0.85rem;
    }
}


/* ==========================================================================
   SNIPCART BASKET — BIGGER PRODUCT IMAGES ON MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    /* Snipcart cart item image */
    .snipcart-item-line__image,
    .snipcart__item--right img,
    .snipcart-item__image {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }

    /* Snipcart cart item container adjustments */
    .snipcart-item-line {
        gap: 12px !important;
    }

    .snipcart-item-line__product {
        font-size: 0.9rem !important;
    }

    /* Album title: prevent overflow */
    .album-main-title,
    .single-main-title {
        font-size: clamp(1.6rem, 7vw, 2.8rem) !important;
        white-space: normal !important;
        word-break: break-word;
    }

    .album-subtitle,
    .single-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.3rem) !important;
        white-space: normal !important;
    }
}
