        :root {
            --primary: #1a1815;
            --secondary: #242120;
            --accent: #e8a87c;
            --gold: #e8a87c;
            --warm-cream: #f5e6d8;
            --text: #f5e6d8;
            --text-muted: #9a8f85;
            --deep-accent: #c4785a;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Serif 4', Georgia, serif;
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            font-size: 17px;
            font-weight: 400;
        }

        /* Film grain texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.035;
            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");
        }

        h1, h2, h3 {
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 700;
        }

        /* Top Banner */
        .top-banner {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--deep-accent) 0%, #a65d42 100%);
            padding: 0.6rem 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }

        .top-banner a {
            color: var(--warm-cream);
            text-decoration: none;
            font-family: 'Source Serif 4', Georgia, serif;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.3s;
        }

        .top-banner a:hover {
            opacity: 0.85;
        }

        .top-banner svg {
            width: 16px;
            height: 16px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 38px;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(26,26,46,0.95), transparent);
        }

        .logo {
            font-family: 'Fraunces', Georgia, serif;
            font-size: 1.6rem;
            font-weight: 700;
            font-style: italic;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

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

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.02em;
            transition: color 0.3s;
        }

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

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--warm-cream);
            border-radius: 2px;
            transition: all 0.3s ease;
            pointer-events: none;
        }

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

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

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

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: 
                linear-gradient(160deg, rgba(42, 35, 32, 0.4) 0%, rgba(60, 48, 42, 0.5) 40%, rgba(31, 24, 21, 0.6) 100%),
                url('/images/electric-guitar-bg.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            opacity: 0.4;
            filter: brightness(0.85) contrast(1.05) saturate(0.9);
            mix-blend-mode: overlay;
            will-change: transform;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(232,168,124,0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(196,120,90,0.12) 0%, transparent 50%),
                linear-gradient(180deg, rgba(26,24,21,0.2) 0%, rgba(26,24,21,0.4) 50%, rgba(26,24,21,0.85) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(232,168,124,0.06)" stroke-width="0.5"/></svg>');
            background-size: 250px;
            opacity: 0.5;
            z-index: 1;
        }

        /* Vignette effect */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(26,24,21,0.4) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 3rem;
            will-change: transform, opacity;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            text-align: center;
        }

        /* Hero entrance animations */
        .hero-photo {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-text > * {
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeIn 1s ease-out forwards;
        }
        .hero h1 { animation-delay: 0.2s; }
        .hero .tagline { animation-delay: 0.4s; }
        .hero .cta-buttons { animation-delay: 0.6s; }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            opacity: 0;
            animation: scrollFadeIn 1s ease-out 1.2s forwards, scrollBounce 2s ease-in-out 2s infinite;
        }

        .scroll-indicator svg {
            width: 28px;
            height: 28px;
            color: var(--text-muted);
        }

        @keyframes scrollFadeIn {
            to { opacity: 0.6; }
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        .hero-photo {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 
                        0 0 0 1px rgba(232,168,124,0.1),
                        0 0 30px rgba(218,165,32,0.6),
                        0 0 60px rgba(218,165,32,0.4),
                        0 0 90px rgba(218,165,32,0.2);
            flex-shrink: 0;
            animation: goldenGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes goldenGlow {
            0% {
                box-shadow: 0 20px 60px rgba(0,0,0,0.5), 
                            0 0 0 1px rgba(232,168,124,0.1),
                            0 0 30px rgba(218,165,32,0.6),
                            0 0 60px rgba(218,165,32,0.4),
                            0 0 90px rgba(218,165,32,0.2);
            }
            100% {
                box-shadow: 0 20px 60px rgba(0,0,0,0.5), 
                            0 0 0 1px rgba(232,168,124,0.1),
                            0 0 40px rgba(218,165,32,0.8),
                            0 0 80px rgba(218,165,32,0.6),
                            0 0 120px rgba(218,165,32,0.4);
            }
        }

        .hero-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-text {
                align-items: center;
                text-align: center;
            }

            .hero-photo {
                width: 220px;
                height: 220px;
            }
        }

        .hero h1 {
            font-size: clamp(3.5rem, 12vw, 8rem);
            font-weight: 700;
            margin-bottom: 0;
            color: var(--warm-cream);
            letter-spacing: -0.03em;
            line-height: 0.95;
        }

        .hero .tagline {
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .fan-site-badge {
            display: inline-block;
            background: rgba(232,168,124,0.12);
            border: 1px solid rgba(232,168,124,0.4);
            color: var(--accent);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--warm-cream);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--warm-cream);
            border: 1px solid var(--text-muted);
        }

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

        /* Sections */
        section {
            padding: 6rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }

        /* News Section */
        /* Recovery Section */
        .recovery-section {
            background: var(--secondary);
            padding: 4rem 2rem;
        }

        .recovery-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .recovery-card {
            background: var(--primary);
            border-radius: 8px;
            padding: 2.5rem;
            border-left: 3px solid var(--accent);
        }

        .recovery-card .date {
            color: var(--accent);
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
        }

        .recovery-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .recovery-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .news {
            background: var(--secondary);
        }

        .news-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .news-card {
            background: var(--primary);
            border-radius: 8px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 3px solid var(--accent);
        }

        .news-card .date {
            color: var(--accent);
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .news-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .news-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .recovery-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .gofundme-btn,
        .etsy-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            color: var(--warm-cream);
            text-decoration: none;
            border-radius: 6px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-weight: 600;
            transition: all 0.3s;
        }

        .gofundme-btn {
            background: linear-gradient(135deg, var(--deep-accent) 0%, #a65d42 100%);
        }

        .etsy-btn {
            background: linear-gradient(135deg, #f56400 0%, #e85d00 100%);
        }

        .gofundme-btn:hover,
        .etsy-btn:hover {
            transform: translateY(-2px);
        }

        .gofundme-btn:hover {
            box-shadow: 0 10px 30px rgba(196, 120, 90, 0.3);
        }

        .etsy-btn:hover {
            box-shadow: 0 10px 30px rgba(245, 100, 0, 0.3);
        }

        .gofundme-btn svg,
        .etsy-btn svg {
            width: 20px;
            height: 20px;
        }
        
        @media (max-width: 768px) {
            .recovery-buttons {
                flex-direction: column;
            }
            
            .gofundme-btn,
            .etsy-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .read-more {
            display: inline-block;
            margin-top: 0.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .read-more:hover {
            color: var(--deep-accent);
            transform: translateX(4px);
        }

        /* About Section */
        .about {
            background: var(--primary);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            object-position: center top;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .about-text h3 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            letter-spacing: -0.02em;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        /* Discography */
        .discography {
            background: var(--primary);
        }

        .albums-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .album-card {
            background: var(--secondary);
            border-radius: 8px;
            overflow: visible;
            transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
            cursor: pointer;
        }

        .album-card:hover {
            transform: translateY(-8px) rotate(-1deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
        }

        .album-cover {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #2a2a4e 0%, var(--primary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            overflow: visible;
            position: relative;
            border-radius: 8px 8px 0 0;
        }



        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease-out;
            position: relative;
            z-index: 2;
        }

        .album-card:hover .album-cover img {
            transform: scale(1.02);
        }

        .album-info {
            padding: 1.5rem;
        }

        .album-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .album-info .year {
            color: var(--accent);
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.9rem;
        }

        /* Music Section */
        .music {
            background: var(--secondary);
        }

        .streaming-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .streaming-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            color: var(--text);
            font-family: 'Source Serif 4', Georgia, serif;
            transition: all 0.3s;
        }

        .streaming-link:hover {
            background: var(--accent);
            color: var(--primary);
        }

        .streaming-link svg {
            width: 24px;
            height: 24px;
        }

        /* Contact */
        .contact {
            background: var(--primary);
            text-align: center;
        }

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

        .social-links a {
            width: 50px;
            height: 50px;
            border: 1px solid var(--text-muted);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* Timeline Section */
        .timeline {
            background: var(--secondary);
        }

        .timeline-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--gold);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: var(--primary);
            padding: 1.5rem;
            border-radius: 8px;
            max-width: 400px;
            margin-right: 2rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 0;
            margin-left: 2rem;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            right: -10px;
            top: 20px;
            border: 10px solid transparent;
            border-left-color: var(--primary);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: auto;
            left: -10px;
            border-left-color: transparent;
            border-right-color: var(--primary);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--gold);
            border-radius: 50%;
            top: 20px;
        }

        .timeline-content .year {
            color: var(--accent);
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 700;
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .timeline-content h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

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

        /* Photo Gallery */
        .gallery {
            background: var(--primary);
        }

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

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

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

        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            font-size: 0.9rem;
        }

        /* Video Gallery */
        .videos {
            background: var(--secondary);
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-card {
            background: var(--primary);
            border-radius: 8px;
            overflow: hidden;
        }

        .video-card .video-container {
            margin-bottom: 0;
            border-radius: 0;
        }

        .video-card .video-info {
            padding: 1rem 1.5rem 1.5rem;
        }

        .video-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            letter-spacing: -0.01em;
        }

        .video-card .video-year {
            color: var(--accent);
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.85rem;
        }

        /* Awards Section */
        .awards {
            background: var(--primary);
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .award-card {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 6px;
            text-align: center;
            border: 1px solid rgba(232,168,124,0.15);
            transition: transform 0.3s, border-color 0.3s;
        }

        .award-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .award-card .icon {
            margin-bottom: 1.25rem;
            color: var(--accent);
        }

        .award-card .icon svg {
            width: 36px;
            height: 36px;
        }

        .award-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
            letter-spacing: -0.01em;
        }

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

        .award-card .year {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.25rem 0.75rem;
            background: var(--primary);
            border-radius: 20px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 0.8rem;
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .timeline-container::before {
                left: 20px;
            }
            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                justify-content: flex-start;
            }
            .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 0;
                margin-right: 0;
            }
            .timeline-dot {
                left: 20px;
            }
            .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -10px;
                right: auto;
                border-left-color: transparent;
                border-right-color: var(--primary);
            }
        }



        /* Footer */
        footer {
            background: var(--secondary);
            padding: 3rem 5% 2rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section h3 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(232, 168, 124, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-support-text {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .footer-donate-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .footer-donate-btn:hover {
            background: var(--deep-accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(232, 168, 124, 0.3);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Navigation */
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 24, 21, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s, visibility 0.3s;
                z-index: 1001;
            }

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

            .nav-links li {
                opacity: 0;
                transform: translateY(20px);
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
                transition: opacity 0.3s, transform 0.3s;
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

            .nav-links a {
                font-size: 1.5rem;
            }

            /* Hero */
            .hero h1 {
                font-size: clamp(2.5rem, 12vw, 4rem);
            }

            .hero .tagline {
                font-size: 0.9rem;
                letter-spacing: 0.1em;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
                padding: 0 2rem;
            }

            .btn {
                width: 100%;
                text-align: center;
                font-size: 0.75rem;
                padding: 1rem 1.5rem;
            }

            /* Sections */
            section {
                padding: 4rem 5%;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            /* About */
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .about-image {
                max-width: 280px;
                margin: 0 auto;
            }

            .about-text h3 {
                font-size: 1.75rem;
            }

            /* Albums */
            .albums-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .album-info {
                padding: 1rem;
            }

            .album-info h3 {
                font-size: 1rem;
            }

            /* Videos */
            .videos-grid {
                grid-template-columns: 1fr;
            }

            /* Timeline */
            .timeline-container::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
            }

            .timeline-dot {
                left: 20px;
            }

            .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -10px;
                right: auto;
                border-left-color: transparent;
                border-right-color: var(--primary);
            }

            /* Awards */
            .awards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* Streaming Links */
            .streaming-links {
                flex-direction: column;
                align-items: center;
            }

            .streaming-link {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            /* News */
            .news-card {
                padding: 1.5rem;
            }

            .news-card h3 {
                font-size: 1.25rem;
            }

            /* Top Banner */
            .top-banner {
                padding: 0.5rem 3%;
            }

            .top-banner a {
                font-size: 0.75rem;
            }

            nav {
                top: 32px;
                padding: 1rem 5%;
            }

            /* Social Links */
            .social-links {
                gap: 1rem;
            }

            .social-links a {
                width: 44px;
                height: 44px;
            }
        }

        /* Small phones */
        @media (max-width: 480px) {
            .albums-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 1.75rem;
            }

            .timeline-content {
                padding: 1rem;
            }

            .timeline-content .year {
                font-size: 1.1rem;
            }

            .timeline-content h3 {
                font-size: 1rem;
            }
        }
        /* Album Modal */
        .album-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }

        .album-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-content {
            background: var(--primary);
            border-radius: 12px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid var(--accent);
            animation: slideUp 0.3s ease-out;
        }

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

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

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary);
            border: none;
            color: var(--accent);
            font-size: 2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

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

        .modal-header {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            border-bottom: 1px solid var(--secondary);
        }

        .modal-album-cover {
            width: 200px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .modal-album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-album-info h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .modal-album-info .year {
            color: var(--accent);
            font-size: 1.2rem;
            font-family: 'Source Serif 4', Georgia, serif;
            margin-bottom: 1rem;
            display: block;
        }

        .modal-album-info .description {
            color: var(--text-muted);
            line-height: 1.8;
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-section {
            margin-bottom: 2rem;
        }

        .modal-section h3 {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--secondary);
            padding-bottom: 0.5rem;
        }

        .track-list {
            list-style: none;
            padding: 0;
        }

        .track-list li {
            padding: 0.75rem 1rem;
            background: var(--secondary);
            margin-bottom: 0.5rem;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .track-list li:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateX(5px);
        }

        .track-number {
            color: var(--accent);
            font-weight: 600;
            margin-right: 1rem;
        }

        .track-list li:hover .track-number {
            color: var(--primary);
        }

        .modal-cta {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--secondary);
        }

        .modal-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent) 0%, var(--deep-accent) 100%);
            color: var(--primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .modal-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(232, 168, 124, 0.3);
        }

        @media (max-width: 768px) {
            .modal-header {
                flex-direction: column;
            }

            .modal-album-cover {
                width: 100%;
                height: auto;
                aspect-ratio: 1;
            }

            .artwork-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section {
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

