/* ============================================
   TrackShack Records - Romanian/Balkanic Design
   Warm earth tones, deep reds, golds, traditional patterns
   ============================================ */

:root {
    /* Romanian/Balkanic Color Palette */
    --bg-primary: #1a0f0a;
    --bg-secondary: #2d1810;
    --bg-tertiary: #3d2418;
    --accent-red: #8B0000;
    --accent-deep-red: #6B0000;
    --accent-gold: #DAA520;
    --accent-bright-gold: #FFD700;
    --accent-earth: #8B4513;
    --accent-warm-brown: #654321;
    --accent-deep-blue: #1E3A8A;
    --accent-royal-blue: #4169E1;
    --text-primary: #F5E6D3;
    --text-secondary: #D4A574;
    --text-muted: #8B6F47;
    
    /* Gradients - Warm & Rich */
    --gradient-red-gold: linear-gradient(135deg, #8B0000 0%, #DAA520 100%);
    --gradient-gold-red: linear-gradient(135deg, #DAA520 0%, #8B0000 100%);
    --gradient-earth: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    --gradient-royal: linear-gradient(135deg, #1E3A8A 0%, #4169E1 100%);
    --gradient-warm: linear-gradient(135deg, #8B0000 0%, #DAA520 50%, #8B4513 100%);
    
    /* Shadows & Glows */
    --glow-red: 0 0 20px rgba(139, 0, 0, 0.6), 0 0 40px rgba(139, 0, 0, 0.4);
    --glow-gold: 0 0 20px rgba(218, 165, 32, 0.6), 0 0 40px rgba(218, 165, 32, 0.4);
    --glow-warm: 0 0 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(218, 165, 32, 0.5);
    
    /* Typography */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-decorative: 'Orbitron', sans-serif;
    
    /* Spacing - More Compact */
    --section-padding: 60px 0;
    --container-max-width: 1200px;
    --section-gap: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius - Softer */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ============================================
   Global Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

body.studio-mode {
    background: #000000;
    filter: contrast(1.2);
}

/* Custom Scrollbar - Warm Theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold-red);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ============================================
   Navigation - Compact & Elegant
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: var(--transition-medium);
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 15, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--accent-gold);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-medium);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--glow-gold));
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red-gold);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

.studio-mode-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    margin-left: 1rem;
}

.studio-mode-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-medium);
    border-radius: 2px;
}

/* ============================================
   Hero Section - Compact & Impactful
   ============================================ */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 15, 10, 0.8) 0%, rgba(26, 15, 10, 0.95) 100%);
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.dynamic-text {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
    margin-bottom: 0.75rem;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.now-playing-widget {
    background: rgba(45, 24, 16, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin: 1.5rem auto;
    max-width: 380px;
    transition: var(--transition-medium);
}

.now-playing-widget:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.now-playing-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.now-playing-track {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-artwork {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-sm);
    background: var(--gradient-red-gold);
    animation: pulse 2s ease-in-out infinite;
}

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

.track-info {
    flex: 1;
    text-align: left;
}

.track-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.track-controls button {
    background: var(--accent-red);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.track-controls button:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-red-gold);
    color: var(--text-primary);
    box-shadow: var(--glow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

/* ============================================
   Section Styles - Compact Layout
   ============================================ */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   Artist Showcase - Compact Grid
   ============================================ */

.artists-section {
    background: var(--bg-secondary);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 2px solid var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-red-gold);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--glow-warm);
}

.artists-carousel-container {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.artists-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1.5rem 0;
}

.artists-carousel::-webkit-scrollbar {
    display: none;
}

.artist-card {
    min-width: 280px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.artist-card-image {
    width: 100%;
    height: 320px;
    background: var(--gradient-red-gold);
    position: relative;
    overflow: hidden;
}

.artist-card-info {
    padding: 1.25rem;
}

.artist-card-name {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.artist-card-genre {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid var(--accent-red);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--accent-red);
    box-shadow: var(--glow-red);
}

.carousel-nav.prev {
    left: 0.5rem;
}

.carousel-nav.next {
    right: 0.5rem;
}

.artist-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.artist-detail-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    max-width: 850px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--glow-gold);
    margin: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.75rem;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

/* ============================================
   Music Player Hub - Compact Design
   ============================================ */

.player-section {
    background: var(--bg-primary);
}

.player-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.visualizer-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.audio-visualizer {
    width: 100%;
    height: 100%;
    display: block;
}

.visualizer-controls {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.viz-btn {
    padding: 0.4rem 0.85rem;
    background: rgba(45, 24, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.viz-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.player-controls-panel {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.current-track-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.track-cover {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-md);
    background: var(--gradient-red-gold);
    flex-shrink: 0;
}

.track-details {
    flex: 1;
}

.player-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.player-btn {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.player-btn.play-pause {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    background: var(--gradient-red-gold);
    border: none;
    color: var(--text-primary);
}

.player-btn:hover {
    background: var(--accent-red);
    color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: var(--glow-red);
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-red-gold);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: var(--glow-warm);
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.lyrics-container {
    margin-bottom: 1.5rem;
    max-height: 180px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.lyrics-display {
    text-align: center;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lyrics-display .active-line {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stream-link {
    padding: 0.4rem 0.85rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.stream-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.spatial-audio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.playlist-panel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.playlist-panel h4 {
    margin-bottom: 1.25rem;
    color: var(--accent-gold);
}

.playlist-container {
    margin-bottom: 1.25rem;
    max-height: 280px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    margin-bottom: 0.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.playlist-item:hover {
    background: var(--bg-primary);
    border-left: 3px solid var(--accent-red);
}

/* ============================================
   Releases Section - Compact Grid
   ============================================ */

.releases-section {
    background: var(--bg-secondary);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.release-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
}

.release-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.release-artwork {
    width: 100%;
    height: 280px;
    background: var(--gradient-red-gold);
    position: relative;
    overflow: hidden;
}

.release-info {
    padding: 1.25rem;
}

.release-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.release-artist {
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.release-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.countdown-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(218, 165, 32, 0.95);
    color: var(--bg-primary);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.countdown-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.countdown-modal.active {
    display: flex;
}

.countdown-content {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.countdown-timer {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

/* ============================================
   Immersive Experience - Compact Cards
   ============================================ */

.immersive-section {
    background: var(--bg-primary);
}

.immersive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.immersive-card {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(218, 165, 32, 0.3);
    transition: var(--transition-medium);
}

.immersive-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.02);
}

.immersive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red-gold);
    opacity: 0.25;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.card-overlay h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-overlay p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.virtual-tour-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: var(--bg-primary);
}

.virtual-tour-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.tour-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 24, 16, 0.9);
    border: 2px solid var(--accent-red);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.tour-close:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

/* ============================================
   Events & Tours - Compact Layout
   ============================================ */

.events-section {
    background: var(--bg-secondary);
}

.events-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tour-map-container {
    margin-bottom: 2rem;
}

.tour-map {
    width: 100%;
    height: 400px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: var(--transition-medium);
    cursor: pointer;
}

.event-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-4px);
}

.event-date {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.event-venue {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.event-location {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* ============================================
   Community Hub - Compact Grid
   ============================================ */

.community-section {
    background: var(--bg-primary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.social-wall,
.fan-art-gallery,
.discord-widget,
.collab-playlist {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.social-posts {
    max-height: 350px;
    overflow-y: auto;
}

.social-post {
    padding: 0.85rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--accent-red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

/* ============================================
   Label Shop - Compact Grid
   ============================================ */

.shop-section {
    background: var(--bg-secondary);
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.shop-cat-btn {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 2px solid var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.shop-cat-btn:hover,
.shop-cat-btn.active {
    background: var(--gradient-gold-red);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--glow-gold);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.shop-item {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.shop-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-4px);
}

.shop-item-image {
    width: 100%;
    height: 280px;
    background: var(--gradient-red-gold);
    position: relative;
}

.shop-item-info {
    padding: 1.25rem;
}

.shop-item-name {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.shop-item-price {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
}

.product-modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.product-viewer {
    min-height: 350px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.product-details {
    display: flex;
    flex-direction: column;
}

/* ============================================
   Industry Section - Compact Cards
   ============================================ */

.industry-section {
    background: var(--bg-primary);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.industry-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
    transition: var(--transition-medium);
    text-align: center;
}

.industry-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-4px);
}

.industry-card h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

/* ============================================
   Footer - Compact Design
   ============================================ */

.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Loading Screen
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity var(--transition-slow);
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.audio-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.audio-wave span {
    width: 3px;
    height: 35px;
    background: var(--gradient-red-gold);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.audio-wave span:nth-child(2) {
    animation-delay: 0.1s;
}

.audio-wave span:nth-child(3) {
    animation-delay: 0.2s;
}

.audio-wave span:nth-child(4) {
    animation-delay: 0.3s;
}

.audio-wave span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-secondary);
        padding: 1.5rem;
        transition: var(--transition-medium);
        border-top: 2px solid var(--accent-gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .artists-carousel {
        padding-left: 0;
    }

    .carousel-nav {
        display: none;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
    }

    :root {
        --section-padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .now-playing-widget {
        max-width: 100%;
    }

    .visualizer-container {
        height: 220px;
    }

    .releases-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations & Effects
   ============================================ */

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

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

/* Cursor sound wave effect */
body.cursor-wave {
    cursor: none;
}

.cursor-wave-effect {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    animation: ripple 1s ease-out;
    z-index: 9999;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Musical note hover effect */
.musical-note {
    position: absolute;
    pointer-events: none;
    color: var(--accent-gold);
    font-size: 1.3rem;
    animation: floatUp 1s ease-out forwards;
    z-index: 9998;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

/* ============================================
   Under Construction Screen
   ============================================ */

.construction-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.2) 0%, transparent 50%);
}

.construction-box {
    background: var(--bg-secondary);
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--glow-gold);
    animation: pulse 2s ease-in-out infinite;
}

.construction-logo h1 {
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.construction-logo p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.construction-icon {
    font-size: 4rem;
    margin: 2rem 0;
    animation: bounce 2s ease-in-out infinite;
}

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

.construction-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.construction-box input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
}

.construction-box input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.construction-error {
    color: var(--accent-red);
    margin-top: 1rem;
    min-height: 1.5rem;
    font-size: 0.9rem;
}
