/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #0a0a0a;
    --gray-100: #1a1a1a;
    --gray-200: #2a2a2a;
    --gray-300: #3a3a3a;
    --gray-400: #4a4a4a;
    --gray-500: #6a6a6a;
    --gray-600: #8a8a8a;
    --gray-700: #aaaaaa;
    --gray-800: #cccccc;
    --gray-900: #ffffff;
    --border-radius: 50px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--gray-50);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out;
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
}

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

.loader-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: scale(0.9) rotate(-12deg) translateY(-40vh);
    opacity: 0;
    animation: swoopIn 0.7s ease-out forwards;
}

.loader-logo.loaded {
    animation: swoopLoop 1.4s ease-in-out infinite;
}

/* Loader Animations */
@keyframes swoopIn {
    0% {
        transform: scale(0.9) rotate(-12deg) translateY(-40vh);
        opacity: 0;
    }
    100% {
        transform: scale(1.0) rotate(0deg) translateY(0);
        opacity: 1;
    }
}

@keyframes swoopLoop {
    0% {
        transform: scale(0.9) rotate(-12deg) translateY(-20vh);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.0) rotate(0deg) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.9) rotate(12deg) translateY(-20vh);
        opacity: 0.7;
    }
}

@keyframes idleFloat {
    0%, 100% {
        transform: scale(1.0) rotate(0deg) translateY(0);
    }
    50% {
        transform: scale(1.0) rotate(0deg) translateY(-3px);
    }
}

/* Alternative spin animation (toggle with .spin class) */
.loader-logo.spin {
    animation: spinLoop 1.2s ease-in-out infinite;
}

@keyframes spinIn {
    0% {
        transform: scale(0.95) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: scale(1.0) rotate(360deg);
        opacity: 1;
    }
}

@keyframes spinLoop {
    0% {
        transform: scale(0.95) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.0) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.95) rotate(360deg);
        opacity: 0.8;
    }
}

/* Desktop sizing */
@media (min-width: 768px) {
    .loader-logo {
        width: 220px;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .loader-logo {
        animation: fadeIn 0.3s ease-out forwards !important;
        transform: scale(1.0) rotate(0deg) translateY(0) !important;
    }
    
    .loader-logo.loaded {
        animation: fadeIn 0.3s ease-out forwards !important;
    }
    
    .loader-logo.spin {
        animation: fadeIn 0.3s ease-out forwards !important;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Force scroll to always work - emergency fix */
body, html {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    width: 100%;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-toggle:hover {
    background: var(--gray-100);
}

.cart-toggle i {
    font-size: 1.2rem;
    color: var(--black);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 18px;
}

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

.nav-logo a {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
}

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

.nav-pill {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-pill:hover {
    color: var(--black);
    background-color: var(--gray-100);
}

.nav-pill.primary {
    background-color: var(--black);
    color: var(--white);
}

.nav-pill.primary:hover {
    background-color: var(--gray-800);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--black);
    margin: 2px 0;
    transition: var(--transition);
}

/* HQ Hero Section - Dark Mode Only */
#hq-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('hq-background.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}



/* Hero Action Buttons */
.hero-action-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.action-btn {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 20px;
    padding: 25px 20px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    min-height: 120px;
    width: 160px;
    justify-content: center;
    pointer-events: auto;
}

/* Position each button in corners */
.action-btn:nth-child(1) {
    top: 8%;
    left: 5%;
}

.action-btn:nth-child(2) {
    top: 8%;
    right: 5%;
}

.action-btn:nth-child(3) {
    bottom: 15%;
    left: 5%;
}

.action-btn:nth-child(4) {
    bottom: 15%;
    right: 5%;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 140, 0, 0.5));
    border-color: rgba(255, 255, 0, 1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 140, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
}

.action-btn i {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transition: all 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.2);
    color: #ffff00;
    text-shadow: 0 0 30px rgba(255, 255, 0, 1);
}

.action-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile responsive for buttons */
@media (max-width: 768px) {
    .action-btn {
        width: 130px;
        min-height: 100px;
        padding: 20px 15px;
        gap: 8px;
    }
    
    .action-btn:nth-child(1) {
        top: 5%;
        left: 3%;
    }
    
    .action-btn:nth-child(2) {
        top: 5%;
        right: 3%;
    }
    
    .action-btn:nth-child(3) {
        bottom: 12%;
        left: 3%;
    }
    
    .action-btn:nth-child(4) {
        bottom: 12%;
        right: 3%;
    }
    
    .action-btn i {
        font-size: 2rem;
    }
    
    .action-btn span {
        font-size: 0.9rem;
    }
}

.hq-hero-container {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hq-logo {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.hq-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -0.02em;
}

.hq-title h1:first-child {
    margin-bottom: 0.5rem;
}

/* 3D HQ Center Tile */
.hq-center-tile {
    perspective: 1000px;
    margin: 0 auto 4rem;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
}

.tile-inner {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(15deg);
    transition: transform 0.3s ease;
}

.hq-center-tile:hover .tile-inner {
    transform: rotateX(25deg) rotateY(25deg) scale(1.05);
}

.tile-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%);
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 20px rgba(255, 215, 0, 0.1),
        0 0 30px rgba(0, 0, 0, 0.6);
}

.tile-front { transform: rotateY(0deg) translateZ(100px); }
.tile-back { transform: rotateY(180deg) translateZ(100px); }
.tile-right { transform: rotateY(90deg) translateZ(100px); }
.tile-left { transform: rotateY(-90deg) translateZ(100px); }
.tile-top { transform: rotateX(90deg) translateZ(100px); }
.tile-bottom { transform: rotateX(-90deg) translateZ(100px); }

.tile-content {
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.h-symbol {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.heros-logo {
    width: 120px;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}



.hq-btn::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: rgba(100, 100, 100, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(120, 120, 120, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hq-btn:hover::before {
    opacity: 1;
}

.hq-btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, rgba(80, 80, 80, 0.4), transparent);
    border-radius: 1px;
}

.hq-btn i {
    font-size: 1.2rem;
}

.hq-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Scroll Chevron */
.scroll-chevron {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-chevron a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    display: block;
    transition: all 0.3s ease;
}

.scroll-chevron a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Scroll-triggered Navigation */
.scroll-nav {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
}

.scroll-nav.show {
    transform: translateY(0);
    top: 0;
}

.scroll-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scroll-nav .nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

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

.scroll-nav .nav-pill {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.scroll-nav .nav-pill:hover {
    color: var(--white);
    background-color: var(--gray-300);
}

.scroll-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-nav .cart-toggle {
    position: relative;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.scroll-nav .cart-toggle:hover {
    background: var(--gray-300);
}

.scroll-nav .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsiveness for control panels and nav */
@media (max-width: 768px) {
    .scroll-nav .nav-container {
        padding: 0 16px;
    }
    
    .scroll-nav .nav-pills {
        display: none;
    }
    
    .scroll-nav .nav-logo a {
        font-size: 1.3rem;
    }
    
    /* Mobile control panel adjustments */
    .control-panels-container {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 2rem 0;
        pointer-events: auto;
    }
    
    .control-panel-btn {
        width: 180px;
        height: 250px;
        transform: none !important;
        position: relative;
        margin: 0;
    }
    
    .panel-left-btn {
        top: auto;
        left: auto;
        transform: none !important;
        position: relative;
    }
    
    .panel-right-btn {
        top: auto;
        right: auto;
        transform: none !important;
        position: relative;
    }
    
    .control-panel-btn:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .panel-left-btn:hover,
    .panel-right-btn:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .panel-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .panel-label {
        font-size: 1.1rem;
    }
    
    .panel-subtitle {
        font-size: 0.8rem;
    }
    
    /* Adjust 3D room for mobile */
    .control-room-3d {
        display: none;
    }
    
    /* Mobile hero adjustments */
    .hq-title h1 {
        font-size: 2.5rem;
    }
    
    .bottom-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .bottom-btn {
        width: 200px;
        padding: 15px 25px;
    }
}

/* Tablet Responsiveness for HQ Hero */
@media (max-width: 1024px) {
    .hq-title h1 {
        font-size: 3rem;
    }
    
    .tile-inner {
        width: 160px;
        height: 160px;
    }
    
    .tile-face {
        width: 160px;
        height: 160px;
    }
    
    .tile-front { transform: rotateY(0deg) translateZ(80px); }
    .tile-back { transform: rotateY(180deg) translateZ(80px); }
    .tile-right { transform: rotateY(90deg) translateZ(80px); }
    .tile-left { transform: rotateY(-90deg) translateZ(80px); }
    .tile-top { transform: rotateX(90deg) translateZ(80px); }
    .tile-bottom { transform: rotateX(-90deg) translateZ(80px); }
    
    .h-symbol {
        font-size: 3rem;
    }
    
    .heros-logo {
        width: 80px;
    }
    
    .hq-buttons {
        gap: 16px;
    }
}

/* Mobile Responsiveness for HQ Hero */
@media (max-width: 768px) {
    .hq-hero-container {
        padding: 0 16px;
    }
    
    .hq-title h1 {
        font-size: 2.5rem;
    }
    
    .tile-inner {
        width: 120px;
        height: 120px;
    }
    
    .tile-face {
        width: 120px;
        height: 120px;
    }
    
    .tile-front { transform: rotateY(0deg) translateZ(60px); }
    .tile-back { transform: rotateY(180deg) translateZ(60px); }
    .tile-right { transform: rotateY(90deg) translateZ(60px); }
    .tile-left { transform: rotateY(-90deg) translateZ(60px); }
    .tile-top { transform: rotateX(90deg) translateZ(60px); }
    .tile-bottom { transform: rotateX(-90deg) translateZ(60px); }
    
    .h-symbol {
        font-size: 2.5rem;
    }
    
    .heros-logo {
        width: 60px;
    }
    
    .hq-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
    }
    
    .hq-btn {
        flex-direction: row;
        justify-content: center;
        min-height: 48px;
        padding: 16px 20px;
    }
    
    .hq-btn i {
        margin-right: 8px;
    }
    
    .hq-btn span {
        margin: 0;
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--gray-100);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.about-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 1000px;
    color: var(--white);
}

.about-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 4rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.member-card {
    background: var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Mission Statement */
.mission-statement {
    background: var(--gray-200);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-tagline {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

/* Music Section */
.music-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 4rem;
    max-width: 600px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.music-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    height: 400px;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.music-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.music-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.music-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: var(--white);
}

.music-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.music-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stream-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    margin: 0.25rem;
}

.stream-btn.spotify {
    background: #1DB954;
    color: var(--white);
}

.stream-btn.apple {
    background: var(--black);
    color: var(--white);
}

.stream-btn.youtube {
    background: #FF0000;
    color: var(--white);
}

.stream-btn.amazon {
    background: #00A8E1;
    color: var(--white);
}

.stream-btn.tidal {
    background: var(--black);
    color: var(--white);
}

.stream-btn.soundcloud {
    background: #FF5500;
    color: var(--white);
}

.stream-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Merch Section */
.merch-section {
    padding: 8rem 0;
    background: var(--gray-100);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-300);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 32px;
    height: 32px;
    background: var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wishlist-btn:hover {
    background: var(--gray-400);
    transform: scale(1.1);
}

.wishlist-btn i {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.bundle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.product-details {
    padding: 1rem;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bundle-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    width: fit-content;
}

.price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 500;
}



/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.contact-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}

.contact-text {
    flex: 1;
}

.contact-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 500px;
}

.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form-container {
    background: var(--gray-200);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--gray-300);
    color: var(--white);
    transition: var(--transition);
    font-family: 'Sora', sans-serif;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: 'Sora', sans-serif;
}

.contact-btn:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-left p {
    color: var(--gray-800);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
}

.footer-badge {
    font-size: 0.8rem;
    color: var(--gray-800);
    font-weight: 500;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a !important;
    color: #ffffff !important;
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #4a4a4a !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cart-close:hover {
    background: var(--gray-200);
}

.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #cccccc !important;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #4a4a4a !important;
    color: #ffffff !important;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.cart-item-price {
    color: var(--gray-700);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: var(--gray-200);
    color: var(--white);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--gray-300);
}

.cart-total {
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.checkout-btn:hover {
    background: var(--gray-300);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Product modal styles removed - products now use dedicated pages */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-pills {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gray-100);
        border-top: 1px solid var(--gray-300);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav-pills.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }

    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }
    
    .contact-text {
        flex: none;
        width: 100%;
        max-width: 600px;
    }
    
    .contact-form {
        flex: none;
        width: 100%;
        max-width: 600px;
        display: flex;
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        border-radius: 16px;
        max-width: 100%;
        width: 100%;
    }
    
    .contact-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .contact-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .contact-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }
    
    .cart-content {
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
    }
    
    .cart-items {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem;
    }
    
    .cart-footer {
        flex-shrink: 0;
        padding: 1rem;
        background: var(--gray-100);
        border-top: 1px solid var(--gray-300);
        position: sticky;
        bottom: 0;
    }
    
    .checkout-btn {
        padding: 1.125rem;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .merch-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-section .container {
        padding: 0 0.5rem;
    }

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

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

    .about-section,
    .music-section,
    .merch-section {
        padding: 3rem 0;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-textarea {
        min-height: 80px;
        rows: 3;
    }
    
    .contact-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .product-modal {
        padding: 1rem;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .product-modal-title {
        font-size: 1.5rem;
    }

    .product-modal-actions {
        flex-direction: column;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.music-card,
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.music-card.fade-in,
.product-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}