        :root {
            --bg-primary: #202020;
            --bg-secondary: #181818;
            --bg-tertiary: #2a2a2a;
            --text-primary: #edd8cb;
            --text-muted: rgba(237, 216, 203, 0.65);
            --text-dim: rgba(237, 216, 203, 0.4);
            --border-color: rgba(237, 216, 203, 0.12);
            --border-hover: rgba(237, 216, 203, 0.25);
            --glow-color: rgba(237, 216, 203, 0.15);
            --glow-strong: rgba(237, 216, 203, 0.3);
            --screen-glow: rgba(237, 216, 203, 0.05);
            /* 70s Wood & Brass */
            --wood-dark: #2a1810;
            --wood-medium: #4a3020;
            --wood-light: #5c4033;
            --wood-highlight: #6d4c3d;
            --brass: #b8956c;
            --brass-light: #d4b896;
            --brass-dark: #8b7355;
            --amber-glow: rgba(255, 180, 100, 0.4);
            --vu-green: #4a7c40;
            --vu-yellow: #c4a32a;
            --vu-red: #a34a3a;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-weight: 300;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Subtle background texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 0;
        }

        /* Header - Centered and Balanced */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-primary) 70%, transparent 100%);
            padding: 1.25rem 3rem;
        }

        .header-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
        }

        .logo-link {
            justify-self: start;
        }

        .logo {
            height: 70px;
            width: auto;
            opacity: 0.95;
            transition: all 0.3s ease;
        }

        .logo:hover {
            opacity: 1;
            filter: drop-shadow(0 0 12px var(--glow-color));
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.25rem;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--text-primary);
            transition: width 0.3s ease;
        }

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

        nav a:hover::after {
            width: 100%;
        }

        .header-right {
            justify-self: end;
        }

        .search-container {
            position: relative;
        }

        .search-toggle {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s ease;
        }

        .search-toggle:hover {
            color: var(--text-primary);
        }

        .search-toggle svg {
            width: 20px;
            height: 20px;
        }

        .search-panel {
            position: absolute;
            top: 100%;
            right: 0;
            width: 320px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1rem;
            margin-top: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .search-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .search-input {
            width: 100%;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-input::placeholder {
            color: var(--text-dim);
        }

        .search-input:focus {
            border-color: var(--border-hover);
        }

        .search-results {
            margin-top: 0.75rem;
            max-height: 300px;
            overflow-y: auto;
        }

        .search-result-item {
            padding: 0.75rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .search-result-item:hover {
            background: var(--bg-tertiary);
        }

        .search-result-type {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-dim);
            margin-bottom: 0.25rem;
        }

        .search-result-title {
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Main Content */
        main {
            position: relative;
            z-index: 1;
            padding-top: 120px;
        }

        /* Hero - 1970s Vintage Console Player */
        .hero {
            padding: 2rem 3rem 4rem;
            display: flex;
            justify-content: center;
        }

        .tv-unit {
            position: relative;
            width: 100%;
            max-width: 1000px;
        }

        /* Main Console Frame - Wood Veneer */
        .tv-frame {
            background: linear-gradient(180deg, 
                var(--wood-highlight) 0%, 
                var(--wood-medium) 3%, 
                var(--wood-dark) 50%,
                var(--wood-medium) 97%,
                var(--wood-highlight) 100%);
            border-radius: 12px;
            padding: 1.75rem 2rem 1.5rem;
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.03),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            position: relative;
        }

        /* Wood grain texture overlay */
        .tv-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='wood'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02 0.15' numOctaves='3' result='noise'/%3E%3CfeDiffuseLighting in='noise' lighting-color='%23fff' surfaceScale='1'%3E%3CfeDistantLight azimuth='45' elevation='60'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23wood)'/%3E%3C/svg%3E");
            opacity: 0.08;
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        /* Brass trim top */
        .console-trim-top {
            position: absolute;
            top: 8px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--brass-dark) 10%, 
                var(--brass-light) 50%, 
                var(--brass-dark) 90%, 
                transparent 100%);
            border-radius: 2px;
        }

        /* Screen area with brass bezel */
        .screen-bezel {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border-radius: 8px;
            padding: 6px;
            box-shadow: 
                inset 0 2px 4px rgba(0, 0, 0, 0.8),
                0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
        }

        /* Brass corner accents */
        .screen-bezel::before,
        .screen-bezel::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border: 2px solid var(--brass);
            opacity: 0.6;
        }

        .screen-bezel::before {
            top: -1px;
            left: -1px;
            border-right: none;
            border-bottom: none;
            border-radius: 8px 0 0 0;
        }

        .screen-bezel::after {
            top: -1px;
            right: -1px;
            border-left: none;
            border-bottom: none;
            border-radius: 0 8px 0 0;
        }

        .screen-container {
            position: relative;
            background: #000;
            border-radius: 4px;
            overflow: hidden;
            aspect-ratio: 16/9;
            box-shadow: 
                inset 0 0 80px rgba(0, 0, 0, 0.9),
                0 0 40px var(--screen-glow);
        }

        /* CRT curvature effect */
        .screen-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at center, transparent 0%, transparent 70%, rgba(0,0,0,0.3) 100%),
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.1) 0px,
                    rgba(0, 0, 0, 0.1) 1px,
                    transparent 1px,
                    transparent 3px
                );
            pointer-events: none;
            z-index: 10;
        }

        /* Screen reflection/glare */
        .screen-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, 
                    rgba(255,255,255,0.03) 0%, 
                    transparent 50%,
                    transparent 100%);
            pointer-events: none;
            z-index: 11;
        }

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

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Screen placeholder when no video */
        .screen-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #080808 100%);
        }

        .screen-placeholder-logo {
            width: 140px;
            opacity: 0.25;
            margin-bottom: 1.5rem;
            animation: pulse 3s ease-in-out infinite;
            filter: sepia(20%);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.35; transform: scale(1.02); }
        }

        .screen-placeholder-text {
            color: var(--text-dim);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        /* Console Control Panel - 70s Style */
        .console-panel {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 1.25rem 0.5rem 0.25rem;
            gap: 1.5rem;
        }

        /* Speaker Grille - Left */
        .speaker-grille {
            display: flex;
            flex-direction: column;
            gap: 3px;
            padding: 12px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 6px;
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
        }

        .speaker-row {
            display: flex;
            gap: 3px;
        }

        .speaker-hole {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #0a0a0a;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
        }

        /* Center Controls */
        .control-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        /* VU Meter */
        .vu-meter {
            display: flex;
            gap: 3px;
            padding: 8px 16px;
            background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
            border-radius: 4px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.8);
        }

        .vu-bar {
            width: 6px;
            height: 20px;
            background: var(--vu-green);
            border-radius: 2px;
            opacity: 0.3;
            transition: opacity 0.1s ease, background 0.1s ease;
        }

        .vu-bar.active {
            opacity: 1;
            box-shadow: 0 0 8px currentColor;
        }

        .vu-bar:nth-child(n+8) {
            background: var(--vu-yellow);
        }

        .vu-bar:nth-child(n+11) {
            background: var(--vu-red);
        }

        /* Transport Controls */
        .transport-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .control-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--brass-light), var(--brass-dark));
            border: 2px solid var(--brass-dark);
            color: var(--wood-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        }

        .control-btn:hover {
            background: linear-gradient(145deg, var(--brass), var(--brass-light));
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.5),
                0 0 20px var(--amber-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .control-btn:active {
            transform: scale(0.96);
            box-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .control-btn svg {
            width: 18px;
            height: 18px;
        }

        .control-btn.play-btn {
            width: 52px;
            height: 52px;
        }

        .control-btn.play-btn svg {
            width: 22px;
            height: 22px;
            margin-left: 2px;
        }

        /* Right Side - Knobs */
        .knob-panel {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
        }

        .knob-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
        }

        .knob-label {
            font-size: 0.6rem;
            color: var(--brass);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
        }

        .knob-container {
            position: relative;
            width: 44px;
            height: 44px;
        }

        .knob {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--brass-light), var(--brass-dark));
            border: 3px solid var(--brass-dark);
            cursor: pointer;
            position: relative;
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.5),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
            transition: box-shadow 0.2s ease;
        }

        .knob:hover {
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.6),
                0 0 20px var(--amber-glow),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
        }

        /* Knob pointer/indicator */
        .knob::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 10px;
            background: var(--wood-dark);
            border-radius: 2px;
        }

        /* Knob ring markings */
        .knob-ring {
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 1px dashed rgba(184, 149, 108, 0.3);
            border-radius: 50%;
        }

        /* Brand Badge - positioned below controls */
        .brand-badge {
            display: flex;
            justify-content: center;
            margin-top: 0.75rem;
            padding-bottom: 0.25rem;
        }

        .brand-badge span {
            background: linear-gradient(145deg, var(--brass), var(--brass-dark));
            padding: 5px 24px;
            border-radius: 3px;
            font-size: 0.55rem;
            font-weight: 800;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--wood-dark);
            box-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Now Playing Info - Centered */
        .now-playing {
            text-align: center;
            padding: 1.75rem 0 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .now-playing-label {
            font-size: 0.65rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.25em;
            margin-bottom: 0.5rem;
        }

        .now-playing-title {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            transition: opacity 0.3s ease;
        }

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

        /* Track List Drawer - Centered */
        .track-drawer {
            margin: 1.5rem auto 0;
            max-width: 1000px;
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .track-drawer-header {
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            gap: 0.75rem;
        }

        .track-drawer-header:hover {
            background: var(--bg-tertiary);
        }

        .track-drawer-title {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
        }

        .track-drawer-toggle {
            color: var(--text-dim);
            transition: transform 0.3s ease;
        }

        .track-drawer.open .track-drawer-toggle {
            transform: rotate(180deg);
        }

        .track-list {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .track-drawer.open .track-list {
            max-height: 400px;
            overflow-y: auto;
        }

        .track-item {
            display: flex;
            align-items: center;
            padding: 0.875rem 1.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            border-top: 1px solid var(--border-color);
        }

        .track-item:hover {
            background: var(--bg-tertiary);
        }

        .track-item.active {
            background: rgba(237, 216, 203, 0.08);
        }

        .track-number {
            width: 32px;
            font-size: 0.8rem;
            color: var(--text-dim);
            font-weight: 500;
        }

        .track-title {
            flex: 1;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .track-duration {
            font-size: 0.8rem;
            color: var(--text-dim);
            font-family: 'Courier New', monospace;
        }

        /* Album Catalog Section - Centered */
        .catalog-section {
            padding: 4rem 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            gap: 2rem;
        }

        .section-line {
            flex: 1;
            max-width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        }

        .section-title {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--text-muted);
        }

        /* Album Grid */
        .album-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .album-card {
            cursor: pointer;
            transition: transform 0.4s ease;
        }

        .album-card:hover {
            transform: translateY(-8px);
        }

        .album-artwork {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-secondary);
            margin-bottom: 1rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.4s ease;
        }

        .album-card:hover .album-artwork {
            box-shadow: 
                0 12px 32px rgba(0, 0, 0, 0.4),
                0 0 40px var(--glow-color);
        }

        .album-artwork img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .album-card:hover .album-artwork img {
            transform: scale(1.05);
        }

        .album-artwork-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .album-card:hover .album-artwork-overlay {
            opacity: 1;
        }

        .album-play-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--text-primary);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .album-card:hover .album-play-btn {
            transform: scale(1);
            opacity: 1;
        }

        .album-play-btn svg {
            width: 24px;
            height: 24px;
            color: var(--bg-primary);
            margin-left: 3px;
        }

        .album-info {
            padding: 0 0.25rem;
        }

        .album-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.375rem;
            transition: color 0.2s ease;
        }

        .album-card:hover .album-title {
            color: var(--text-primary);
        }

        .album-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-dim);
            font-size: 0.8rem;
        }

        .album-date {
            font-weight: 400;
        }

        .album-genres {
            display: flex;
            gap: 0.5rem;
        }

        .genre-tag {
            background: var(--bg-tertiary);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Footer */
        footer {
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 4rem;
        }

        .footer-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
        }

        .footer-logo {
            height: 40px;
            opacity: 0.6;
            justify-self: start;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-self: center;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s ease;
        }

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

        .social-links {
            display: flex;
            gap: 1rem;
            justify-self: end;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--text-primary);
            color: var(--bg-primary);
            border-color: var(--text-primary);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        /* Loading state for album transitions */
        .loading .now-playing-title,
        .loading .now-playing-artist {
            opacity: 0.5;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: var(--border-hover);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-dim);
        }

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

        .album-card {
            animation: fadeInUp 0.6s ease backwards;
        }

        .album-card:nth-child(1) { animation-delay: 0.1s; }
        .album-card:nth-child(2) { animation-delay: 0.2s; }
        .album-card:nth-child(3) { animation-delay: 0.3s; }
        .album-card:nth-child(4) { animation-delay: 0.4s; }
        .album-card:nth-child(5) { animation-delay: 0.5s; }
        .album-card:nth-child(6) { animation-delay: 0.6s; }

        /* VU Meter Animation */
        @keyframes vuPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .header-inner {
                grid-template-columns: auto 1fr auto;
            }

            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.7rem;
            }

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

            .speaker-grille {
                display: none;
            }

            .knob-panel {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            .header-inner {
                grid-template-columns: 1fr auto;
            }

            nav {
                display: none;
            }

            .logo {
                height: 50px;
            }

            .hero {
                padding: 1rem 1rem 2rem;
            }

            .tv-frame {
                padding: 1rem 1rem 0.75rem;
                border-radius: 10px;
            }

            .catalog-section {
                padding: 2rem 1.5rem;
            }

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

            footer {
                padding: 2rem 1.5rem;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-logo {
                justify-self: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .social-links {
                justify-self: center;
            }
        }

/* ============================================
   Inner Pages Styles
   ============================================ */

/* Page Container */
.page-section {
    padding: 2rem 3rem 6rem;
    min-height: 60vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-container-narrow {
    max-width: 700px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* About Page */
.about-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-logo {
    max-width: 200px;
    opacity: 0.8;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-links h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.social-card svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group .optional {
    font-weight: 300;
    color: var(--text-dim);
}

.form-group input,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.1);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(145deg, var(--brass-light), var(--brass));
    color: var(--wood-dark);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--brass), var(--brass-light));
    box-shadow: 0 4px 12px rgba(184, 149, 108, 0.3);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--border-hover);
}

/* Alerts */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert p {
    margin: 0;
    line-height: 1.5;
}

.alert-success {
    background: rgba(74, 124, 64, 0.15);
    border: 1px solid rgba(74, 124, 64, 0.3);
    color: #7cb870;
}

.alert-error {
    background: rgba(163, 74, 58, 0.15);
    border: 1px solid rgba(163, 74, 58, 0.3);
    color: #d4837a;
}

/* News Page */
.news-grid {
    display: grid;
    gap: 2rem;
}

.news-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.news-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--brass);
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brass);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Press Kit */
.press-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.press-section h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brass);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.press-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.press-content a {
    color: var(--brass);
}

.press-downloads {
    display: grid;
    gap: 1.5rem;
}

.download-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    align-items: center;
}

.download-preview {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.download-preview.dark-bg {
    background: var(--bg-primary);
}

.download-preview img {
    max-width: 80%;
    max-height: 80%;
}

.download-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.download-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.press-note {
    background: var(--bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.press-note p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
}

/* Color Swatches */
.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.color-swatch {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.swatch-color {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.swatch-name {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.swatch-info code {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
}

/* Legal/Privacy Pages */
.legal-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--brass);
}

/* Footer additions */
.footer-bottom {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
}

/* Active nav state */
nav a.active {
    color: var(--text-primary);
}

nav a.active::after {
    width: 100%;
}

/* Responsive for inner pages */
@media (max-width: 768px) {
    .page-section {
        padding: 1.5rem 1.5rem 4rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .color-swatches {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE NAVIGATION - Added for hamburger menu
   ============================================ */

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
}

/* Mobile Nav Overlay - Hidden on desktop */
.mobile-nav-overlay {
    display: none;
}

/* Mobile Nav Drawer - Hidden on desktop */
.mobile-nav {
    display: none;
}

/* ============================================
   Mobile Styles - Show navigation on mobile
   ============================================ */
@media (max-width: 768px) {
    /* Show hamburger button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #c8a276;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hide desktop nav on mobile */
    header nav {
        display: none !important;
    }

    /* Overlay */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Nav drawer */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #181818;
        border-left: 1px solid rgba(237, 216, 203, 0.12);
        z-index: 1001;
        padding: 80px 30px 30px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav a {
        display: block;
        color: rgba(237, 216, 203, 0.65);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(237, 216, 203, 0.12);
        transition: color 0.3s ease;
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: #b8956c;
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Header right section alignment */
    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================
   NOW PLAYING GENRES
   ============================================ */

.now-playing-genres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.now-playing-genres .genre-tag {
    background: rgba(184, 149, 108, 0.15);
    border: 1px solid rgba(184, 149, 108, 0.3);
    color: #b8956c;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   INFO/DESCRIPTION DRAWER
   ============================================ */

.info-drawer {
    margin: 1.5rem auto 0;
    max-width: 1000px;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.info-drawer-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 0.75rem;
}

.info-drawer-header:hover {
    background: var(--bg-tertiary);
}

.info-drawer-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.info-drawer-toggle {
    color: var(--text-dim);
    transition: transform 0.3s ease;
}

.info-drawer.open .info-drawer-toggle {
    transform: rotate(180deg);
}

.info-drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.info-drawer.open .info-drawer-content {
    max-height: 600px;
    overflow-y: auto;
}

.info-drawer-content .description-text {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ============================================
   GENRE "+X MORE" BADGE
   ============================================ */

.genre-tag.genre-more {
    background: rgba(184, 149, 108, 0.1);
    color: #b8956c;
    font-size: 0.6rem;
}

/* ============================================
   MOBILE RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 768px) {
    .info-drawer,
    .track-drawer {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .now-playing {
        padding: 1.5rem 1rem 0;
    }

    /* Prevent tap highlight on album cards */
    .album-card {
        -webkit-tap-highlight-color: transparent;
    }
}

/* FORCE MOBILE NAV FIX - Must be at very end of file */
@media (max-width: 768px) {
    .mobile-nav-overlay {
        display: block !important;
    }
    .mobile-nav {
        display: block !important;
    }
}