        :root {
            --primary-orange: #FF8C00;
            --gold: #FFD700;
            --dark-orange: #CC7000;
            --light-orange: #FFA500;
            --text-dark: #2C1810;
            --text-light: #F5F5DC;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--gold) !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: white;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23FFD700" opacity="0.05" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-dark);
            position: relative;
        }

        .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="1" fill="%23FF8C00" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(255,140,0,0.2);
            color: var(--primary-orange);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            color: var(--dark-orange);
        }

        .btn-custom {
            background: linear-gradient(135deg, var(--gold), var(--light-orange));
            color: var(--text-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,215,0,0.4);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,215,0,0.6);
            background: linear-gradient(135deg, var(--light-orange), var(--gold));
        }

        /* About Section - Artist intro (photo, name, tagline) */
        .about-artist-intro img {
            max-width: 220px;
            border-radius: 50%;
            border: 4px solid var(--gold);
            box-shadow: 0 10px 30px rgba(255,140,0,0.3);
            margin-bottom: 1.5rem;
        }

        .about-artist-intro .subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .about-artist-intro .lead {
            font-size: 1.2rem;
            color: var(--dark-orange);
        }

        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: linear-gradient(to bottom, #ffffff, #FFF8DC);
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(255,140,0,0.2);
            border: 3px solid var(--gold);
        }

        .section-title {
            color: var(--primary-orange);
            font-size: 3rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--gold));
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* Music Section */
        .music-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: white;
        }

        .music-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem 0;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
        }

        .music-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,215,0,0.3);
            background: rgba(255,255,255,0.2);
        }

        .music-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Themes Section */
        .themes-section {
            padding: 6rem 0;
            background: #FFF8DC;
        }

        .theme-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 1rem 0;
            border-left: 5px solid var(--primary-orange);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .theme-item:hover {
            transform: translateX(10px);
            border-left-color: var(--gold);
        }

        .theme-icon {
            color: var(--primary-orange);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 0;
            background: white;
        }

        /* Press Section */
        .press-section {
            padding: 6rem 0;
            background: linear-gradient(to bottom, #FFF8DC, white);
        }

        .press-intro {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(255,140,0,0.1);
            border-left: 5px solid var(--primary-orange);
        }

        .press-subtitle {
            color: var(--primary-orange);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .press-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 5px solid var(--gold);
            transition: all 0.3s ease;
        }

        .press-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255,140,0,0.2);
        }

        .press-card-title {
            color: var(--primary-orange);
            font-size: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--gold);
        }

        .press-card-title i {
            color: var(--gold);
            margin-right: 1rem;
        }

        .press-subsection {
            color: var(--dark-orange);
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .press-highlight {
            background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(255,215,0,0.1));
            padding: 1.5rem;
            border-left: 4px solid var(--primary-orange);
            border-radius: 10px;
            font-style: italic;
        }

        .press-highlight i {
            color: var(--gold);
            margin-right: 0.5rem;
        }

        .press-highlight-card {
            background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,140,0,0.05));
            border-top: 5px solid var(--primary-orange);
        }

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

        .press-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid rgba(255,140,0,0.1);
        }

        .press-list li i {
            color: var(--primary-orange);
            margin-right: 0.8rem;
            position: absolute;
            left: 0;
        }

        .press-feature {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .press-feature h5 {
            color: var(--primary-orange);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .press-feature i {
            color: var(--gold);
            margin-right: 0.5rem;
        }

        .discography-item {
            background: linear-gradient(135deg, rgba(255,140,0,0.05), rgba(255,215,0,0.05));
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--primary-orange);
        }

        .discography-item h4 {
            color: var(--dark-orange);
            margin-bottom: 0.5rem;
        }

        .discography-item i {
            color: var(--gold);
            margin-right: 0.5rem;
        }

        .press-quotes {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .quote-item {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            box-shadow: 0 10px 30px rgba(255,140,0,0.3);
            position: relative;
        }

        .quote-item i {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .quote-author {
            font-weight: 600;
            color: var(--gold);
            text-align: right;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255,140,0,0.4);
        }

        .gallery-item i {
            font-size: 5rem;
            color: white;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover i {
            transform: scale(1.2);
            opacity: 0.5;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem 1rem 1rem;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h5 {
            color: white;
            margin: 0;
            font-weight: 600;
            text-align: center;
        }

        /* Modal Glitch */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .gallery-modal.active .modal-content-wrapper {
            opacity: 1;
            transform: scale(1);
        }

        .modal-image-container {
            position: relative;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 50px rgba(255, 140, 0, 0.5);
            border: 3px solid var(--gold);
        }

        .modal-image-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--gold), var(--primary-orange), var(--gold));
            border-radius: 20px;
            z-index: -1;
        }

        .modal-image {
            display: flex;
            align-items: center;
            justify-content: center;
            max-height: 70vh;
            max-width: 70vw;
            background: white;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .modal-image img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
        }

        .modal-title {
            text-align: center;
            margin-top: 1.5rem;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .modal-close {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            border: 3px solid var(--primary-orange);
            border-radius: 50%;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,215,0,0.5);
            z-index: 10;
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--primary-orange);
            color: white;
            box-shadow: 0 6px 20px rgba(255,140,0,0.7);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.9);
            border: 2px solid var(--primary-orange);
            border-radius: 50%;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-nav:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-50%) scale(1.2);
        }

        .modal-nav.prev {
            left: -70px;
        }

        .modal-nav.next {
            right: -70px;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
            color: white;
        }

        .contact-form-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid var(--gold);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--gold);
            font-size: 1.1rem;
        }

        .form-group label i {
            margin-right: 0.5rem;
            color: var(--gold);
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: #999;
        }

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

        select.form-control {
            cursor: pointer;
        }

        .form-message {
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .form-message.success {
            background: rgba(76, 175, 80, 0.9);
            color: white;
            display: block;
            animation: slideInUp 0.5s ease;
        }

        .form-message.error {
            background: rgba(244, 67, 54, 0.9);
            color: white;
            display: block;
            animation: slideInUp 0.5s ease;
        }

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

        .social-links a {
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            border-radius: 50%;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(255,215,0,0.5);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--gold);
            padding: 2rem 0;
            text-align: center;
        }

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

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

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .modal-nav.prev {
                left: -50px;
            }
            
            .modal-nav.next {
                right: -50px;
            }

            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            color: white;
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
            background: linear-gradient(135deg, var(--gold), var(--primary-orange));
        }

        .back-to-top:hover i {
            animation: bounceUp 0.6s ease-in-out infinite;
        }

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

        .back-to-top i {
            transition: transform 0.3s ease;
        }

        /* Live Concert Hero Section */
        .live-concert-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 7rem 0 3rem;
            background: linear-gradient(135deg, var(--text-dark), #1a0a00),
                        url('bg_slide1.png');
            background-size: cover;
            background-position: center;
            background-blend-mode: multiply;
            overflow: hidden;
        }

        .live-concert-section .section-title {
            color: var(--gold);
        }

        .live-concert-section .section-title::after {
            background: linear-gradient(to right, var(--gold), var(--primary-orange));
        }

        .live-concert-poster {
            max-width: 460px;
            width: 100%;
            border-radius: 16px;
            border: 3px solid var(--gold);
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .live-concert-poster:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(255,215,0,0.35);
        }

        .poster-link {
            display: inline-block;
            cursor: pointer;
        }

        .btn-reserver {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.9rem 3rem;
            background: linear-gradient(to right, var(--primary-orange), var(--gold));
            color: var(--text-dark);
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.35);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-reserver:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255,215,0,0.4);
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            .live-concert-section {
                padding: 6rem 0 2rem;
            }
        }

        /* Hero carousel controls & indicators tuned for this dark hero */
        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            width: 8%;
            opacity: 0.8;
        }

        .hero-carousel .carousel-control-prev-icon,
        .hero-carousel .carousel-control-next-icon {
            background-color: rgba(255,215,0,0.85);
            border-radius: 50%;
            padding: 1.2rem;
            background-size: 60%;
        }

        .hero-carousel .carousel-indicators {
            bottom: -0.5rem;
        }

        .hero-carousel .carousel-indicators [data-bs-target] {
            background-color: var(--gold);
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        /* Video Section */
        .video-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--text-dark), #1a0a00);
        }

        .video-section .section-title {
            color: var(--gold);
        }

        .video-section .section-title::after {
            background: linear-gradient(to right, var(--gold), var(--primary-orange));
        }

        .video-poster {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
            border: 3px solid var(--gold);
            cursor: pointer;
            background-size: cover;
            background-position: center;
        }

        .video-poster::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            transition: background 0.3s ease;
        }

        .video-poster:hover::before {
            background: rgba(0, 0, 0, 0.15);
        }

        .video-poster .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--primary-orange);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 30px rgba(255, 140, 0, 0.6);
            transition: transform 0.3s ease, background 0.3s ease;
            z-index: 2;
        }

        .video-poster:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--gold);
        }

        /* Video Modal */
        .video-modal .modal-content {
            background: transparent;
            border: none;
        }

        .video-modal .modal-body {
            position: relative;
            padding: 0;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            border: 3px solid var(--gold);
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
        }

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

        .video-modal .btn-close {
            position: absolute;
            top: -44px;
            right: 0;
            background-color: var(--gold);
            opacity: 1;
            border-radius: 50%;
            padding: 0.65rem;
            z-index: 5;
        }

        /* Billeterie Modal */
        .billeterie-modal .modal-dialog {
            max-width: 900px;
            height: 90vh;
        }

        .billeterie-modal .modal-content {
            background: var(--text-light);
            border: none;
            border-radius: 16px;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
        }

        .billeterie-modal .modal-header {
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            border-bottom: 3px solid var(--gold);
            padding: 1rem 1.5rem;
        }

        .billeterie-modal .modal-title {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .billeterie-modal .btn-close {
            background-color: var(--gold);
            opacity: 1;
            border-radius: 50%;
            padding: 0.6rem;
        }

        .billeterie-modal .modal-body {
            padding: 0;
            height: 100%;
        }

        .billeterie-modal .modal-body iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .billeterie-modal .billeterie-fallback {
            padding: 1rem 1.5rem;
            text-align: center;
            background: #FFF8DC;
            font-size: 0.95rem;
        }

/* =====================================================================
   REVAMP ADDITIONS — new multi-page site, login/register, shop, players,
   floating radio, admin/customer dashboards, sponsors strip.
   Reuses the palette above (--primary-orange, --gold, --dark-orange,
   --light-orange, --text-dark, --text-light). No new colours introduced.
===================================================================== */

/* ---- Navbar layout fixes: logo hugs left, links never wrap ---- */
.navbar .container-fluid { align-items: center; }
.navbar-brand { margin-right: .5rem; padding: 0; }
.navbar-nav { flex-wrap: nowrap; }
.navbar-nav .nav-link {
    margin: 0 .55rem;
    white-space: nowrap;
    font-size: 0.94rem;
}
@media (max-width: 1300px) and (min-width: 992px) {
    .navbar-nav .nav-link { margin: 0 .35rem; font-size: 0.86rem; }
}

/* ---- Language toggle pill (before Home link) ---- */
.lang-toggle-item { margin-right: .75rem; display: flex; align-items: center; }
.lang-toggle {
    display: inline-flex; align-items: center; box-sizing: border-box;
    background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px; padding: 3px; gap: 2px; line-height: 1;
}
.lang-toggle .lang-btn {
    box-sizing: border-box; border: none; background: transparent; color: var(--text-light);
    font-weight: 700; font-size: .72rem; letter-spacing: .03em;
    padding: .35rem .7rem; min-width: 2.4rem; border-radius: 999px;
    cursor: pointer; transition: all .2s; white-space: nowrap; line-height: 1;
}
.lang-toggle .lang-btn:hover:not(.active) { background: rgba(255,255,255,.15); }
.lang-toggle .lang-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--light-orange));
    color: var(--text-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

/* ---- Top utility nav links (unified Login — no role hints) ---- */
.nav-utility { display: flex; align-items: center; gap: 1rem; margin-left: 1rem; flex-wrap: nowrap; }
.nav-utility a { color: var(--text-light); font-weight: 600; text-decoration: none; transition: color .2s; white-space: nowrap; }
.nav-utility a:hover { color: var(--gold); }
.nav-utility .btn-login-pill {
    background: linear-gradient(135deg, var(--gold), var(--light-orange));
    color: var(--text-dark) !important; padding: .5rem 1.6rem; border-radius: 30px; font-weight: 700;
    display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
}

/* ---- Login modal ---- */
.auth-modal .modal-content { background: linear-gradient(160deg, #fff, #fff8ec); border: 2px solid var(--gold); border-radius: 18px; }
.auth-modal .modal-header { border-bottom: none; }
.auth-modal h3 { font-family:'Playfair Display', serif; color: var(--dark-orange); }
.auth-modal .form-control { border-radius: 10px; border: 1px solid #e6d3b3; }
.auth-modal .btn-auth-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: #fff; border: none; border-radius: 30px; padding: .6rem 1.5rem; font-weight: 700;
}
.auth-modal .auth-links a { color: var(--dark-orange); text-decoration: none; font-size: .9rem; }
.auth-modal .auth-links a:hover { text-decoration: underline; }
.password-field { position: relative; }
.password-field .toggle-eye {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    cursor: pointer; color: var(--dark-orange); background: none; border: none;
}
.password-strength-bar { height: 6px; border-radius: 4px; background: #eee; overflow: hidden; margin-top: 4px; }
.password-strength-bar span { display: block; height: 100%; width: 0; transition: width .3s, background .3s; }

/* ---- Create-account offcanvas (right-hand slide-in, triggered from Shop Buy buttons) ---- */
.offcanvas-signup { width: 420px; background: linear-gradient(180deg, #fff, #fff8ec); }
.offcanvas-signup .offcanvas-header { background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange)); color: #fff; }
.offcanvas-signup .step-indicator { display:flex; align-items:center; justify-content:center; gap:.75rem; margin: 1rem 0 1.5rem; }
.offcanvas-signup .step-dot { width:32px; height:32px; border-radius:50%; border:2px solid var(--dark-orange); color:var(--dark-orange); display:flex; align-items:center; justify-content:center; font-weight:700; }
.offcanvas-signup .step-dot.active { background: var(--dark-orange); color:#fff; }
.offcanvas-signup .step-line { width:60px; height:2px; background:#e6d3b3; }

/* ---- Sponsors / Partners strip ---- */
.sponsors-section { height: 200px; display:flex; align-items:center; background:#fff8ec; border-top:3px solid var(--gold); border-bottom:3px solid var(--gold); overflow:hidden; }
.sponsors-track { display:flex; align-items:center; gap:3rem; padding:0 2rem; }
.sponsors-track img { height:80px; width:auto; filter:grayscale(20%); opacity:.9; transition:.3s; }
.sponsors-track img:hover { filter:none; opacity:1; transform:scale(1.05); }

/* ---- Shop ---- */
.album-shop-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,.08); margin-bottom:2.5rem; }
.album-shop-card .row { min-height: 280px; }
.album-shop-card .album-cover-col { background-size:cover; background-position:center; min-height:280px; }
.album-shop-card .album-tracklist { padding:1.5rem; }
.album-shop-card h4 { font-family:'Playfair Display', serif; color: var(--dark-orange); }
.track-row { display:flex; align-items:center; justify-content:space-between; padding:.55rem 0; border-bottom:1px dashed #e6d3b3; }
.track-row:last-child { border-bottom:none; }
.track-row .track-play { color: var(--primary-orange); cursor:pointer; margin-right:.6rem; }
.track-row .track-name { font-weight:600; color: var(--text-dark); }
.track-row .track-length { color:#999; font-size:.85rem; margin-left:.5rem; }
.btn-buy { background: linear-gradient(135deg, var(--gold), var(--light-orange)); color: var(--text-dark); border:none; border-radius:20px; padding:.3rem 1rem; font-weight:700; font-size:.85rem; }
.btn-buy-album { background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange)); color:#fff; border:none; border-radius:30px; padding:.6rem 1.8rem; font-weight:700; }

/* ---- Musique page media player ---- */
.media-player-card { background:#fff; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,.1); overflow:hidden; max-width:520px; margin:0 auto; }
.media-player-card .cover { width:100%; aspect-ratio:1/1; object-fit:cover; }
.media-player-card .player-body { padding:1.5rem; }
.media-player-track { display:flex; align-items:center; gap:.75rem; padding:.6rem .5rem; border-radius:10px; cursor:pointer; transition:.2s; }
.media-player-track:hover, .media-player-track.playing { background: #fff3de; }
.media-player-track .idx { width:24px; color:#aaa; font-weight:700; }
.media-player-track .info { flex:1; }
.media-player-track .info .t-title { font-weight:600; color:var(--text-dark); }
.media-player-track .info .t-len { font-size:.8rem; color:#999; }
.media-player-track .play-icon { color: var(--primary-orange); }
.btn-radio-listen { display:block; width:100%; margin-top:1rem; background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange)); color:#fff; border:none; border-radius:30px; padding:.75rem; font-weight:700; text-align:center; }

/* ---- Floating Tatuwage Radio widget ---- */
.radio-toggle-btn {
    position: fixed; right: 24px; bottom: 24px; z-index: 1050;
    width:64px; height:64px; border-radius:50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color:#fff; border:none; box-shadow:0 6px 20px rgba(0,0,0,.3);
    display:flex; align-items:center; justify-content:center; font-size:1.5rem;
    animation: radioPulse 2.5s infinite;
}
@keyframes radioPulse { 0%,100%{box-shadow:0 6px 20px rgba(255,140,0,.4);} 50%{box-shadow:0 6px 30px rgba(255,140,0,.8);} }
.radio-panel {
    position: fixed; right: 24px; bottom: 100px; z-index: 1050;
    width: 280px; background:#fff; border-radius:16px; box-shadow:0 10px 40px rgba(0,0,0,.25);
    border:2px solid var(--gold); padding:1rem; display:none;
}
.radio-panel.open { display:block; animation: slideUp .25s ease; }
@keyframes slideUp { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }
.radio-panel .radio-title { font-family:'Playfair Display', serif; color:var(--dark-orange); font-weight:700; display:flex; align-items:center; gap:.5rem; }
.radio-panel .now-playing { font-size:.85rem; color:#777; margin:.4rem 0 .8rem; }
.radio-panel .radio-controls { display:flex; align-items:center; justify-content:center; gap:1rem; }
.radio-panel .radio-controls button { background:none; border:none; font-size:1.4rem; color: var(--primary-orange); cursor:pointer; }
.radio-panel .live-dot { width:8px; height:8px; border-radius:50%; background:#e63946; display:inline-block; animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity:.2; } }

/* ---- Dashboard shell (customer + admin) shared layout ---- */
.dash-body { background:#f4f6fa; min-height:100vh; }
.dash-sidebar {
    background:#1b1f2b; color:#cfd3dc; min-height:100vh; width:250px; position:fixed; top:0; left:0; padding-top:1.2rem; z-index:100;
}
.dash-sidebar .brand { color:#fff; font-family:'Playfair Display', serif; font-weight:700; padding:0 1.2rem 1rem; border-bottom:1px solid #2c3142; margin-bottom:1rem; }
.dash-sidebar .brand small { display:block; color: var(--gold); font-size:.7rem; font-weight:400; }
.dash-sidebar .nav-link { color:#cfd3dc; padding:.65rem 1.2rem; display:flex; align-items:center; gap:.7rem; border-radius:0; }
.dash-sidebar .nav-link:hover { background:#262b3a; color:#fff; }
.dash-sidebar .nav-link.active { background: var(--dark-orange); color:#fff; }
.dash-sidebar .nav-section-label { color:#6b7180; text-transform:uppercase; font-size:.7rem; padding:1rem 1.2rem .3rem; }
.dash-sidebar .badge-count { background:#e63946; color:#fff; font-size:.7rem; border-radius:10px; padding:.1rem .5rem; margin-left:auto; }
.dash-main { margin-left:250px; padding:1.8rem 2rem; }
.dash-topbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; }
.dash-topbar h1 { font-family:'Playfair Display', serif; font-size:1.6rem; color:var(--text-dark); margin:0; }
.dash-alert { border-left:5px solid var(--gold); background:#fff8de; border-radius:8px; padding:.9rem 1.2rem; margin-bottom:1.3rem; display:flex; justify-content:space-between; align-items:center; }
.kpi-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-bottom:1.3rem; }
.kpi-card { background:#fff; border-radius:14px; padding:1.2rem; box-shadow:0 2px 10px rgba(0,0,0,.05); }
.kpi-card .kpi-icon { font-size:1.5rem; margin-bottom:.6rem; }
.kpi-card .kpi-number { font-size:1.8rem; font-weight:700; color:var(--text-dark); }
.kpi-card .kpi-label { color:#888; font-size:.85rem; }
.dash-columns { display:grid; grid-template-columns:1.4fr 1fr; gap:1.3rem; }
.dash-panel { background:#fff; border-radius:14px; padding:1.2rem 1.4rem; box-shadow:0 2px 10px rgba(0,0,0,.05); }
.dash-panel h5 { font-weight:700; color:var(--text-dark); display:flex; justify-content:space-between; align-items:center; }
.dash-panel h5 a { font-size:.8rem; color: var(--dark-orange); text-decoration:none; }
.recent-row { display:flex; align-items:center; gap:.8rem; padding:.7rem 0; border-bottom:1px solid #f1f1f1; }
.recent-row:last-child { border-bottom:none; }
.recent-avatar { width:38px; height:38px; border-radius:50%; background: var(--primary-orange); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.85rem; }
.recent-row .r-name { font-weight:600; color:var(--text-dark); font-size:.92rem; }
.recent-row .r-sub { color:#999; font-size:.78rem; }
.recent-row .r-date { margin-left:auto; color:#aaa; font-size:.78rem; }
.status-pill { padding:.15rem .6rem; border-radius:12px; font-size:.72rem; font-weight:700; }
.status-pill.approved { background:#d9f5df; color:#1b7a3a; }
.status-pill.pending { background:#fff3cd; color:#8a6800; }
.status-pill.rejected { background:#fbdcdc; color:#a12525; }
@media (max-width: 900px) {
    .dash-sidebar { width:70px; }
    .dash-sidebar .brand small, .dash-sidebar .nav-link span, .dash-sidebar .nav-section-label { display:none; }
    .dash-main { margin-left:70px; }
    .kpi-row { grid-template-columns:repeat(2,1fr); }
    .dash-columns { grid-template-columns:1fr; }
}

/* ---- Hero carousel (5 slides) ---- */
.hero-carousel .carousel-item img.hero-slide-img { width:100%; height:auto; border-radius:14px; }

/* ---- Full-width marketing hero (Home) — supports image or video slides ---- */
.hero-marketing-section { width: 100%; }
.hero-carousel-full { width: 100%; }
.hero-slide-media { position: relative; width: 100%; height: 78vh; min-height: 460px; max-height: 820px; overflow: hidden; background: var(--text-dark); }
.hero-slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(180deg, rgba(44,24,16,.35), rgba(44,24,16,.65));
    color: #fff; padding: 2rem;
}
.hero-slide-overlay .section-title::after { margin: 0.75rem auto 0; }
@media (max-width: 767px) {
    .hero-slide-media { height: 58vh; min-height: 360px; }
}

/* ---- Profile avatar upload + crop ---- */
.avatar-upload-wrap { position: relative; width: 130px; height: 130px; margin: 0 auto 1.2rem; }
.avatar-upload-wrap .avatar-preview {
    width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--gold); background: var(--primary-orange);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.2rem; font-weight: 700;
}
.avatar-upload-wrap .avatar-camera-btn {
    position: absolute; bottom: 2px; right: 2px; width: 38px; height: 38px; border-radius: 50%;
    background: var(--dark-orange); color: #fff; border: 3px solid #fff;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.avatar-upload-wrap .avatar-camera-btn:hover { background: var(--primary-orange); }
.avatar-crop-container { max-height: 60vh; background: #222; }
.avatar-crop-container img { display: block; max-width: 100%; }
.topbar-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; margin-right: .4rem; vertical-align: middle; border: 2px solid var(--gold); }

/* ---- PWA install / offline banner ---- */
.pwa-install-banner {
    position: fixed; left:0; right:0; bottom:0; z-index:1060; background: var(--dark-orange); color:#fff;
    padding:.8rem 1.2rem; display:none; align-items:center; justify-content:space-between;
}
.pwa-install-banner.show { display:flex; }
.pwa-install-banner button { border:none; border-radius:20px; padding:.4rem 1rem; font-weight:700; }
/* =========================================================
   HERO D'ACCUEIL — PLEIN ÉCRAN
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* La barre de navigation doit toujours couvrir l'écran entier. */
.navbar.fixed-top {
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
}

.navbar .container-fluid,
.navbar .navbar-collapse {
    min-width: 0;
}

.live-concert-section {
    position: relative;
    left: 50%;
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 82px);
    height: calc(100svh - 82px);
    min-height: 560px;
    margin: 82px 0 0;
    padding: 0;
    overflow: hidden;
    background: #1a0a00;
    transform: translateX(-50%);
}

#heroCarousel,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel .hero-slide {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-carousel .poster-link {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
}

.hero-carousel .live-concert-poster {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
    object-position: center;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none;
}

.hero-carousel .live-concert-poster:hover {
    transform: none;
    box-shadow: none;
}

.hero-carousel .hero-cta {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 9%;
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
}

.hero-carousel .btn-reserver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    margin: 0;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-orange), var(--gold));
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 25;
    width: 8%;
}

.hero-carousel .carousel-indicators {
    z-index: 25;
    bottom: 0;
    margin-bottom: 1rem;
}

@media (max-width: 1300px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
        font-size: 0.82rem;
    }

    .nav-utility {
        margin-left: 0.5rem;
    }

    .nav-utility .btn-login-pill {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 991.98px) {
    .live-concert-section {
        height: calc(100vh - 72px);
        height: calc(100svh - 72px);
        min-height: 500px;
        margin-top: 72px;
    }

    .hero-carousel .hero-cta {
        bottom: 8%;
    }

    .hero-carousel .btn-reserver {
        min-width: 180px;
        padding: 12px 22px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 14%;
    }
}

@media (max-width: 575.98px) {
    .live-concert-section {
        min-height: 460px;
    }

    .hero-carousel .hero-cta {
        bottom: 7%;
    }
}

/* =========================================================
   PAGE LAYOUTS — contained media, About, Themes, Gallery
   ========================================================= */
.page-main { padding-top: 92px; background: #fffaf0; min-height: 100vh; }
.page-main img, .page-main video { display:block; max-width:100%; }

.about-page .about-section { padding: 2.5rem 0 5rem; }
.about-emulated { display:grid; grid-template-columns:minmax(260px, 360px) 1fr; align-items:stretch; max-width:1680px; margin:4rem auto 0; }
.about-profile-panel { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:2rem; border:3px solid var(--gold); border-radius:28px 0 0 28px; background:#fffdf8; }
.about-profile-photo { width:260px; height:260px; border-radius:50%; object-fit:cover; object-position:center top; border:5px solid var(--gold); background:#ffd0ae; }
.about-profile-panel h2 { margin:1.6rem 0 0; color:var(--primary-orange); font-weight:400; letter-spacing:.08em; }
.about-story-panel { position:relative; display:flex; flex-direction:column; justify-content:center; min-height:420px; padding:4.5rem 4rem 3rem; border:3px solid var(--gold); border-radius:28px; background:#fff; box-shadow:10px 7px 0 rgba(255,183,0,.45); font-size:1.08rem; line-height:1.8; }
.about-tagline { position:absolute; top:-58px; left:7%; max-width:620px; padding:1.1rem 2rem; background:#fffaf0; color:var(--primary-orange); text-align:center; font-size:1.15rem; line-height:1.5; }
.about-note { align-self:center; margin-top:1rem; color:var(--primary-orange); font-size:3rem; }

.themes-section { padding:2.5rem 0 5rem; }
.themes-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:2rem 1.5rem; max-width:1500px; margin:2rem auto 0; }
.themes-grid .theme-item { display:grid; grid-template-columns:150px minmax(0,1fr); align-items:center; min-width:0; min-height:150px; margin:0; padding:1rem; overflow:hidden; border-left:5px solid var(--primary-orange); border-radius:18px; background:#fff; box-shadow:0 8px 22px rgba(72,40,15,.12); }
.themes-grid .theme-item-media { width:130px; height:110px; overflow:hidden; border-radius:14px; }
.themes-grid .theme-item-media img { width:100%; height:100%; object-fit:cover; }
.themes-grid .theme-item-content { min-width:0; padding:.5rem 1rem; }
.themes-grid .theme-item-content h2 { margin:0 0 .45rem; font-size:1.45rem; }
.themes-grid .theme-item-content p { margin:0; line-height:1.55; }

.gallery-section { padding:2.5rem 0 5rem; }
.gallery-tabs .nav-link { margin:.25rem; border:2px solid var(--primary-orange); border-radius:999px; color:var(--dark-orange) !important; background:#fff; }
.gallery-tabs .nav-link.active { color:#fff !important; background:var(--primary-orange); }
.gallery-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:1.5rem; }
.gallery-grid .gallery-item { position:relative; width:100%; height:280px; min-width:0; margin:0; padding:0; overflow:hidden; border:3px solid var(--gold); border-radius:18px; background:#1a0a00; cursor:pointer; isolation:isolate; }
.gallery-grid .gallery-item > img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease, filter .45s ease; }
.gallery-grid .gallery-item:hover > img { transform:scale(1.09); filter:saturate(1.08); }
.gallery-grid .gallery-overlay { position:absolute; inset:auto 0 0; display:flex; align-items:center; justify-content:center; gap:.6rem; padding:1rem; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.82)); transform:translateY(100%); transition:transform .35s ease; }
.gallery-grid .gallery-item:hover .gallery-overlay { transform:translateY(0); }
.gallery-modal.active { display:flex; align-items:center; justify-content:center; }
.gallery-modal .modal-image-container { max-width:92vw; max-height:90vh; }
.gallery-modal .modal-image img { display:block; max-width:80vw; max-height:72vh; object-fit:contain; }

.press-more-wrap { margin:-1rem 0 2rem; }
.btn-press-more { padding:.85rem 2rem; border:0; border-radius:999px; color:#fff; background:linear-gradient(135deg,var(--primary-orange),var(--dark-orange)); font-weight:700; box-shadow:0 8px 20px rgba(204,112,0,.25); }
.press-more-content[hidden] { display:none !important; }
.press-more-content { animation:pressReveal .35s ease; }
@keyframes pressReveal { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }

.album-shop-card { max-width:1200px; margin:0 auto 2rem; overflow:hidden; }
.album-buy-bar { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem 1.25rem; color:#fff; background:linear-gradient(135deg,var(--dark-orange),var(--primary-orange)); }
.album-buy-bar h4 { color:#fff; }
.album-buy-bar .btn-buy-album { margin-left:auto; }
.album-shop-card .album-cover-col { min-height:320px; background-size:cover; background-position:center; }
.album-shop-card .album-tracklist { min-width:0; }
.track-row { gap:.55rem; min-width:0; }
.track-name { min-width:0; overflow-wrap:anywhere; }

@media (max-width: 991.98px) {
  .about-emulated { grid-template-columns:1fr; margin-top:1rem; }
  .about-profile-panel { border-radius:24px 24px 0 0; }
  .about-story-panel { border-radius:0 0 24px 24px; padding:2rem; }
  .about-tagline { position:static; max-width:none; margin:0 0 1.5rem; padding:0; }
  .themes-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 575.98px) {
  .page-main { padding-top:72px; }
  .about-profile-photo { width:210px; height:210px; }
  .themes-grid .theme-item { grid-template-columns:105px minmax(0,1fr); padding:.75rem; }
  .themes-grid .theme-item-media { width:90px; height:90px; }
  .themes-grid .theme-item-content { padding:.25rem .5rem; }
  .themes-grid .theme-item-content h2 { font-size:1.1rem; }
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-grid .gallery-item { height:300px; }
  .album-shop-card .album-cover-col { min-height:280px; }
  .album-buy-bar { flex-wrap:wrap; }
  .album-buy-bar .btn-buy-album { width:100%; margin-left:0; }
  .track-row { flex-wrap:wrap; }
}
