        /* Kaleidoscope Background */
        .kaleidoscope {
            position: fixed;
            width: 120vmax;
            height: 120vmax;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .slice {
            position: absolute;
            width: 50%;
            height: 50%;
            top: 50%;
            left: 50%;
            transform-origin: 0% 0%;
            overflow: hidden;
        }

        .slice-inner {
            width: 200%;
            height: 200%;
            background-image: url("textures/texture5.jpg");
            background-size: cover;
            animation: drift 30s ease-in-out infinite alternate,
                       hue 40s linear infinite;
        }

        /* TEXTURE MOTION */
        @keyframes drift {
            0%   { transform: scale(1) translate(0px, 0px); }
            25%  { transform: scale(1.2) translate(-80px, -40px); }
            50%  { transform: scale(1.1) translate(60px, -60px); }
            75%  { transform: scale(1.3) translate(-40px, 70px); }
            100% { transform: scale(1.15) translate(40px, 40px); }
        }

        @keyframes hue {
            from { filter: hue-rotate(0deg) contrast(1.1) saturate(1.2); }
            to   { filter: hue-rotate(360deg) contrast(1.1) saturate(1.2); }
        }

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

        :root {
            --color-dark: #0a0a0a;
            --color-earth: #2d2416;
            --color-moss: #3d5a3a;
            --color-gold: #c9a961;
            --color-bone: #e8dcc4;
            --color-blood: #8b2e2e;
            --color-fog: rgba(200, 200, 200, 0.05);
        }

        body {
            background: black;
            color: var(--color-bone);
            font-family: 'EB Garamond', serif;
            font-size: 18px;
            line-height: 1.7;
            overflow-x: hidden;
            padding-bottom: 120px;
            margin: 0;
        }

        /* Dark overlay over kaleidoscope for readability */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.3);
            z-index: 1;
            pointer-events: none;
        }

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

        .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }

        .logo-container {
            max-width: 600px;
            margin-bottom: 60px;
            animation: fadeInDown 1.5s ease-out;
        }

        .logo-container img {
            width: 100%;
            height: auto;
            display: block;
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 40px;
            right: 40px;
            z-index: 100;
            display: flex;
            gap: 30px;
        }

        nav a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--color-bone);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            transition: color 0.3s ease;
        }

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

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

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

        /* Hamburger Menu */
        .hamburger {
            display: none;
            position: fixed;
            top: 13px;
            right: 13px;
            z-index: 101;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background: var(--color-gold);
            transition: all 0.3s ease;
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(9px, -9px);
        }

        /* Mobile Nav Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(45, 36, 22, 0.98);
            backdrop-filter: blur(10px);
            border-left: 2px solid var(--color-gold);
            z-index: 100;
            padding: 100px 40px 40px;
            transition: right 0.4s ease;
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav a {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: var(--color-bone);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--color-gold);
        }

        /* Login Modal */
        .login-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .login-modal.open {
            display: flex;
        }

        .login-box {
            background: var(--color-earth);
            border: 2px solid var(--color-gold);
            padding: 40px;
            max-width: 400px;
            width: 90%;
        }

        .login-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            color: var(--color-gold);
            margin-bottom: 20px;
            text-align: center;
        }

        .login-box input[type="password"] {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid var(--color-gold);
            color: var(--color-bone);
            font-family: 'EB Garamond', serif;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .login-box button {
            width: 100%;
            padding: 12px;
            background: var(--color-gold);
            color: var(--color-dark);
            border: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-box button:hover {
            background: var(--color-bone);
        }

        .error-message {
            color: var(--color-blood);
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }

        /* Section Titles */
        h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 72px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 80px;
            color: var(--color-gold);
            letter-spacing: 4px;
            position: relative;
            text-transform: lowercase;
        }

        h2::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            max-width: 90%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-gold) 20%, var(--color-gold) 80%, transparent);
            opacity: 0.7;
            animation: lineBreath 8s ease-in-out infinite;
        }

        @keyframes lineBreath {
            0%, 100% { width: 40%; }
            50% { width: 90%; }
        }

        h2::after {
            display: none;
        }

        /* Sections */
        section {
            padding: 120px 0;
            position: relative;
        }

        /* Music Section */
        .albums-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .album {
            position: relative;
            cursor: pointer;
            transition: transform 0.4s ease;
        }

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

        .album:active {
            transform: translateY(-5px);
        }

        .album-art {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--color-earth) 0%, var(--color-moss) 100%);
            border: 3px solid var(--color-gold);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .album-art::before {
            content: '♪';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 120px;
            color: var(--color-bone);
            opacity: 0.1;
        }

        .album-title {
            font-family: 'IM Fell English', serif;
            font-size: 28px;
            color: var(--color-gold);
            margin-bottom: 8px;
        }

        .album-year {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--color-bone);
            opacity: 0.7;
            letter-spacing: 2px;
        }

        /* Tour Dates */
        .tour-dates {
            max-width: 900px;
            margin: 0 auto;
        }

        .date-item {
            display: grid;
            grid-template-columns: 120px 1fr 150px;
            gap: 30px;
            padding: 30px 0;
            border-bottom: 1px solid rgba(201, 169, 97, 0.2);
            align-items: center;
            transition: all 0.3s ease;
        }

        .date-item:hover {
            background: rgba(201, 169, 97, 0.05);
            padding-left: 20px;
        }

        .date-date {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 18px;
            color: var(--color-gold);
            letter-spacing: 1px;
        }

        .date-venue {
            font-family: 'EB Garamond', serif;
            font-size: 20px;
        }

        .date-location {
            font-size: 16px;
            opacity: 0.7;
            margin-top: 4px;
        }

        .date-tickets {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 14px;
            text-align: right;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .date-tickets a {
            color: var(--color-bone);
            text-decoration: none;
            border: 1px solid var(--color-gold);
            padding: 10px 20px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .date-tickets a:hover {
            background: var(--color-gold);
            color: var(--color-dark);
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 22px;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .quote {
            font-family: 'IM Fell English', serif;
            font-size: 32px;
            font-style: italic;
            color: var(--color-gold);
            margin: 60px 0;
            position: relative;
            padding: 40px 0;
        }

        .quote::before,
        .quote::after {
            content: '"';
            font-size: 80px;
            position: absolute;
            opacity: 0.3;
        }

        .quote::before {
            top: -20px;
            left: -40px;
        }

        .quote::after {
            bottom: -40px;
            right: -40px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 60px 20px 40px;
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            margin-top: 100px;
        }

        .social-links {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .social-links a {
            color: var(--color-gold);
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        /* Mobile expand/collapse button */
        /* Fixed Audio Player */
        .audio-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(45, 36, 22, 0.98) 100%);
            border-top: 2px solid var(--color-gold);
            padding: 0 40px;
            height: 85px;
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: height 0.25s ease;
            overflow: visible;
        }

        .player-content {
            max-width: 1400px;
            margin: 0 auto;
            height: 85px;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 24px;
            align-items: center;
        }

        /* Left: art + track info */
        .now-playing {
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 0;
        }

        .now-playing-art {
            width: 52px;
            height: 52px;
            background: var(--color-moss);
            border: 2px solid var(--color-gold);
            flex-shrink: 0;
        }

        .now-playing-info {
            min-width: 0;
        }

        .track-title {
            font-family: 'IM Fell English', serif;
            font-size: 16px;
            color: var(--color-gold);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .track-album {
            font-size: 13px;
            opacity: 0.6;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Centre: buttons above scrubber */
        .player-centre {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .controls-buttons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .control-btn {
            background: none;
            border: none;
            color: var(--color-bone);
            font-size: 20px;
            cursor: pointer;
            transition: color 0.2s ease;
            padding: 4px 8px;
            line-height: 1;
        }

        .control-btn:hover {
            color: var(--color-gold);
        }

        .control-btn.play {
            font-size: 28px;
        }

        /* Scrubber row */
        .progress-container {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .time-current,
        .time-duration,
        .time-current-mobile,
        .time-duration-mobile {
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            font-weight: 600;
            opacity: 0.7;
            color: var(--color-gold);
            white-space: nowrap;
        }

        .progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(201, 169, 97, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            transition: height 0.15s ease;
        }

        .progress-bar:hover {
            height: 6px;
        }

        .progress-fill {
            height: 100%;
            background: var(--color-gold);
            border-radius: 2px;
            width: 0%;
            pointer-events: none;
        }

        /* Right: volume */
        .volume-control {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: flex-end;
        }

        .volume-icon {
            color: var(--color-bone);
            font-size: 18px;
            flex-shrink: 0;
        }

        .volume-slider {
            width: 100px;
            height: 4px;
            background: rgba(201, 169, 97, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .volume-fill {
            height: 100%;
            background: var(--color-gold);
            border-radius: 2px;
            width: 80%;
            pointer-events: none;
        }

        /* Mobile-only elements — hidden on desktop */
        .mobile-right,
        .mobile-expanded-panel {
            display: none;
        }

        /* ── Mobile ── */
        @media (max-width: 640px) {
            .audio-player {
                padding: 0 16px;
                height: 72px;
            }

            /* Expanded: room for controls row + scrubber row */
            .audio-player.expanded {
                height: 180px;
            }

            .player-content {
                grid-template-columns: 1fr auto;
                height: 72px;
                gap: 8px;
            }

            /* Hide desktop-only zones */
            .player-centre,
            .volume-control {
                display: none;
            }

            /* Show mobile play + expand */
            .mobile-right {
                display: flex;
                align-items: center;
                gap: 0;
                flex-shrink: 0;
            }

            .mobile-expand-btn {
                position: absolute;
                top: -16px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(45, 36, 22, 0.98);
                border: 2px solid var(--color-gold);
                border-radius: 4px;
                color: var(--color-gold);
                font-size: 13px;
                cursor: pointer;
                width: 36px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0.85;
                transition: opacity 0.2s;
                z-index: 1001;
            }

            .mobile-expand-btn:hover {
                opacity: 1;
            }

            /* Scrubber panel — slides in below the bar */
            .mobile-expanded-panel {
                display: flex;
                flex-direction: column;
                gap: 4px;
                padding: 8px 4px 12px;
                max-height: 0;
                opacity: 0;
                pointer-events: none;
                transition: max-height 0.25s ease, opacity 0.2s ease;
                overflow: hidden;
            }

            .audio-player.expanded .mobile-right .control-btn.play {
                display: none;
            }

            .audio-player.expanded .mobile-expanded-panel {
                max-height: 100px;
                opacity: 1;
                pointer-events: auto;
            }

            .mobile-expanded-controls {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 16px;
            }
        }
            height: 100%;
            background: var(--color-gold);
            border-radius: 2px;
            width: 70%;
        }

        /* Admin Toggle - Gold Pencil Icon in Footer */
        .admin-toggle {
            background: none;
            border: none;
            color: var(--color-gold);
            font-size: 20px;
            cursor: pointer;
            opacity: 0.4;
            transition: opacity 0.2s ease;
            padding: 10px;
            margin-top: 20px;
            display: block;
            margin-left: auto;
            margin-right: 0;
        }

        .admin-toggle:hover {
            opacity: 0.7;
        }

        /* Admin Logout Button */
        .admin-logout {
            background: var(--color-blood);
            color: var(--color-bone);
            border: none;
            padding: 10px 20px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            width: 100%;
        }

        .admin-logout:hover {
            background: #a63939;
        }

        /* Admin Panel */
        .admin-panel {
            position: fixed;
            top: 0;
            right: -500px;
            width: 500px;
            height: 100vh;
            background: rgba(45, 36, 22, 0.98);
            border-left: 2px solid var(--color-gold);
            z-index: 1002;
            transition: right 0.4s ease;
            overflow-y: auto;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
        }

        .admin-panel.open {
            right: 0;
        }

        .admin-panel h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            color: var(--color-gold);
            margin-bottom: 30px;
            text-align: center;
        }

        .song-form {
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--color-gold);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid var(--color-gold);
            color: var(--color-bone);
            font-family: 'EB Garamond', serif;
            font-size: 16px;
        }

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

        .file-input-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-input-wrapper input[type=file] {
            position: absolute;
            left: -9999px;
        }

        .file-input-label {
            display: block;
            padding: 12px;
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid var(--color-gold);
            color: var(--color-bone);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-input-label:hover {
            background: rgba(201, 169, 97, 0.1);
        }

        .file-name {
            margin-top: 8px;
            font-size: 14px;
            color: var(--color-gold);
            font-style: italic;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--color-gold);
            color: var(--color-dark);
            border: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--color-bone);
            transform: translateY(-2px);
        }

        .songs-list {
            margin-top: 40px;
            border-top: 1px solid var(--color-gold);
            padding-top: 30px;
        }

        .songs-list h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: var(--color-gold);
            margin-bottom: 20px;
        }

        .song-item {
            background: rgba(10, 10, 10, 0.3);
            border: 1px solid rgba(201, 169, 97, 0.3);
            padding: 15px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .song-info {
            flex: 1;
        }

        .song-info-title {
            font-family: 'IM Fell English', serif;
            font-size: 18px;
            color: var(--color-gold);
            margin-bottom: 4px;
        }

        .song-info-details {
            font-size: 14px;
            opacity: 0.7;
        }

        .btn-delete {
            background: var(--color-blood);
            color: var(--color-bone);
            border: none;
            padding: 8px 16px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-delete:hover {
            background: #a63939;
        }

        .close-admin {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--color-gold);
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 40px;
            height: 40px;
        }

        .close-admin:hover {
            color: var(--color-bone);
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* Show hamburger, hide desktop nav */
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-nav {
                display: flex;
                flex-direction: column;
            }

            h2 {
                font-size: 48px;
            }

            h2::before,
            h2::after {
                display: none;
            }

            nav {
                top: 20px;
                right: 20px;
                flex-direction: column;
                gap: 15px;
            }

            .date-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .date-tickets {
                text-align: left;
            }

            .quote::before,
            .quote::after {
                font-size: 40px;
            }
        }
