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

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .page-header h1 {
            font-family: 'Fraunces', serif;
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        .albums-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .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;
            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;
        }

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

        footer {
            background: var(--secondary);
            padding: 2rem;
            text-align: center;
            color: var(--text-muted);
            border-top: 1px solid rgba(232, 168, 124, 0.1);
        }

        /* 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) {
            /* Top Banner */
            .top-banner {
                padding: 0.5rem 3%;
            }

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

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

            /* 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);
            }

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

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

            .modal-header {
                flex-direction: column;
            }

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

            .page-header h1 {
                font-size: 2.5rem;
            }
        }
