@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Chewy&family=Open+Sans:wght@400;500;600;700&display=swap');

.archive-grid,
.archive-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.archive-item,
.archive-video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: rgba(196, 152, 0, 0.05);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-item img,
.archive-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .archive-grid,
    .archive-video-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 18px;
    }

    .archive-item,
    .archive-video-item {
        min-height: 200px;
    }
}

/* Desktop adjustments - only for screens larger than 1920px where hamburger is not shown */
@media (min-width: 1921px) {
    .nav-container {
        padding: 0;
        padding-right: 2rem;
        gap: 1.5rem;
    }

    .nav-logo {
        margin-left: 60px;
    }

    .brand-name {
        font-size: 2.1rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 0 0.25rem;
    }
}
.video-section h2 {
    text-align: center;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
}
/* Brand variables */
:root {
    --brand-gold: #c49800;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #000000;
    color: var(--brand-gold);
    line-height: 1.6;
    padding-bottom: 50px;
}

/* Global typography color */
h1, h2, h3, h4, h5, h6,
p, a, li, span, label, .nav-link {
    color: var(--brand-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar::after {
    display: none;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    padding-right: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
    height: 100%;
    gap: 2vw;
}

.nav-logo {
    justify-self: start;
    margin-left: 20px;
    white-space: nowrap;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    color: var(--brand-gold);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    font-family: 'Chewy', cursive !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Site logo image in navbar */
.site-logo {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(196, 152, 0, 0.35));
    background-color: transparent;
}

.nav-logo:hover {
    transform: translateY(-1px);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.social-spheres-container-navbar {
    position: fixed;
    top: 145px;
    left: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    background: transparent;
    border-radius: 16px;
    backdrop-filter: none;
    z-index: 1000;
}

.social-sphere {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(196, 152, 0, 0.35);
}

.social-sphere:hover {
    background: var(--brand-gold);
    color: #000;
    transform: translateY(-2px);
}

.social-sphere.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d5ebd);
    border-color: #1877f2;
    color: #fff;
}

.social-sphere.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
    color: #fff;
}

.social-sphere.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #fd5949, #fcaf45);
    border-color: #e4405f;
    color: #fff;
}

.social-sphere.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    color: #fff;
}

.social-sphere.spotify:hover {
    background: linear-gradient(135deg, #1db954, #169c46);
    border-color: #1db954;
    color: #000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1100;
    position: relative;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #bf9e31;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Medium screens - tablets and small laptops (Surface Pro 2, etc.) - Use horizontal menu */
@media (min-width: 769px) and (max-width: 1920px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .navbar {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .nav-container {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-logo {
        margin-left: 10px;
        gap: 8px;
    }

    .site-logo {
        height: 60px;
    }

    .brand-name {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    /* Hide hamburger and show horizontal menu on medium screens */
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        gap: 0.5rem !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }

    .nav-menu li {
        list-style: none !important;
    }

    .nav-menu .nav-link {
        color: #bf9e31 !important;
        font-size: 1.1rem !important;
        padding: 0.5rem 0.8rem !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        display: inline-block !important;
        width: auto !important;
        background: transparent !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #fff !important;
        background: transparent !important;
    }

    /* Section titles for tablets */
    .video-section h2,
    .music-section h2,
    .tour-section h2,
    .store-section h2,
    .gaming-section h2,
    section h2 {
        font-size: 2.5rem !important;
    }

    /* Music thumbnail titles for tablets */
    .music-info h4 {
        font-size: 1.5rem !important;
    }

    /* Video thumbnail titles for tablets */
    .video-thumbnail-item h4 {
        font-size: 1.5rem !important;
    }

    /* Tour section responsive for medium screens */
    .tour-section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding: 20px 0 15px 0 !important;
        margin-left: 0 !important;
    }

    .tour-list {
        max-width: 100% !important;
        padding: 0 20px 0 150px !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .tour-list-item {
        display: grid !important;
        grid-template-columns: 280px 1fr !important;
        gap: 20px;
        padding: 15px 10px;
        max-width: 100%;
    }

    .tour-list-item:has(.tour-ticket-btn) {
        grid-template-columns: 280px 1fr auto !important;
    }

    .tour-name {
        font-size: 0.95rem !important;
        display: grid !important;
        grid-template-columns: 90px 20px 1fr !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .tour-name span:nth-child(1) {
        text-align: left !important;
        white-space: nowrap !important;
        width: 90px !important;
    }

    .tour-name span:nth-child(2) {
        text-align: center !important;
        white-space: nowrap !important;
    }

    .tour-name span:nth-child(3) {
        text-align: left !important;
        white-space: nowrap !important;
    }

    .tour-date-code {
        font-size: 0.95rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: left;
    }

    .tour-ticket-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        flex: 0 0 auto;
    }

    /* Reposition social spheres for medium screens */
    .social-spheres-container-navbar {
        left: 20px !important;
        top: 120px !important;
    }

    .social-sphere {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 40px 0;
    background: #000000;
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
}

/* Hero Social Links - Vertical Stack on Left */
.hero-social-links {
    position: fixed;
    left: 120px;
    top: 230px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 100;
}

.hero-social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(196, 152, 0, 0.3);
}

.hero-social-icon:hover {
    background-color: #a78000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 152, 0, 0.5);
}

.hero-social-icon.fa-x-twitter span {
    font-weight: 900;
    font-size: 1.5rem;
    color: #000000;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
}

.hero-image::before {
    display: none;
}

.hero-image:hover img {
    transform: scale(1.01);
}

.hero-text {
    text-align: right;
    position: absolute;
    top: 130px;
    right: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 10;
    gap: 0;
}

.golden-line {
    width: 100%;
    height: 12px;
    background-color: var(--brand-gold);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 25px rgba(196, 152, 0, 0.6);
}

.release-info {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.release-date {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(196, 152, 0, 0.5);
    white-space: nowrap;
}

.release-type-box {
    background-color: transparent;
    border: 5px solid var(--brand-gold);
    padding: 25px 40px;
    margin-bottom: 2.5rem;
    margin-right: 85px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: none;
    text-align: center;
}

.release-type-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.3) 25%, 
        transparent 50%, 
        rgba(0, 0, 255, 0.3) 75%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 2px;
}

.release-type-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.release-type-box:hover::before {
    opacity: 1;
}

.release-type {
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 3.2rem;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    margin: 0;
}

.out-now {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 5px;
    margin: 0 0 2.5rem 0;
    text-shadow: none;
    font-family: 'Playfair Display', serif;
    text-align: right;
    margin-right: 120px;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    width: 100%;
    justify-self: center;
}

.social-links a {
    color: var(--brand-gold);
    background-color: transparent;
    border-radius: 12px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(196, 152, 0, 0.4));
}

.social-links a.fa-apple-music {
    color: var(--brand-gold);
    background-color: transparent;
    border-radius: 12px;
}

/* Apple Music icon styling */
.social-links a.fa-apple-music i {
    color: var(--brand-gold);
    font-size: 1.5rem;
}

.social-links a.fa-x-twitter {
    color: var(--brand-gold);
    background-color: transparent;
    border-radius: 12px;
}

/* X icon styling */
.social-links a.fa-x-twitter span {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brand-gold);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 75%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
    border-radius: 12px;
}

.social-links a:hover {
    color: #FFFFFF;
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover::before {
    opacity: 0.3;
}

/* Hover styles for specific icons */
.social-links a.fa-apple-music:hover i {
    color: #FFFFFF;
}

.social-links a.fa-x-twitter:hover span {
    color: #FFFFFF;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.2rem;
    margin-bottom: 2.5rem;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.1;
    text-shadow: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-text h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.2) 25%, 
        transparent 50%, 
        rgba(0, 0, 255, 0.2) 75%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 5px;
}

.hero-text h1:hover {
    transform: scale(1.02);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.hero-text h1:hover::before {
    opacity: 1;
}

.btn-listen {
    font-family: 'Playfair Display', serif;
    background-color: var(--brand-gold);
    color: #000000;
    padding: 14px 40px;
    border: 3px solid var(--brand-gold);
    border-radius: 0;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: none;
    position: relative;
    text-align: center;
    width: fit-content;
    display: inline-block;
    margin-right: 155px;
}

.btn-listen:hover {
    background-color: transparent;
    color: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: none;
}


/* Hero Image Section */
.hero-image-section {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Akan Banner */
.akan-banner {
    width: 100vw;
    height: 50px;
    overflow: hidden;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akan-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Music Section */
.music-section {
    padding: 20px 0 10px 0;
    background-color: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
}

.music-section .container {
    margin-top: 10px;
}

.music-section .container .btn-secondary {
    margin-top: 20px;
}

.store-section + .music-section .container .btn-secondary {
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #000000;
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
    border: 1px solid #404040;
    overflow: hidden;
}

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

.modal-header {
    padding: 0;
    position: relative;
}

.album-art-section {
    position: relative;
    padding: 30px 30px 20px 30px;
    text-align: center;
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

.album-art {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    margin: 0 auto 15px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.artist-name {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0 0 5px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.album-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.choose-service {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ccc;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #fff;
}

.modal-body {
    padding: 0;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

.provider-list {
    max-height: 400px;
    overflow-y: auto;
}

.provider-item {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    cursor: pointer;
    background: #fff;
}

.provider-item:hover {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.provider-item:last-child {
    border-bottom: none;
}

.provider-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    border-radius: 6px;
}

.provider-name {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.provider-action {
    margin-left: 15px;
}

.provider-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    background: #f0f0f0;
    min-width: 60px;
    text-align: center;
}

.provider-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #333;
    text-decoration: none;
    background: #e8e8e8;
}

/* TIDAL Logo Image Styling */
.provider-img-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cookie notice at bottom */
.modal-body::after {
    content: "You have accepted the use of cookies for this service. Click here to manage your permissions.";
    display: block;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* Responsive modal */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.5rem;
    }

    .nav-logo {
        margin-left: 0;
        justify-content: center;
        font-family: 'Chewy', cursive;
    }

    .social-spheres-container-navbar {
        position: fixed;
        top: 120px;
        left: 16px;
        flex-direction: column;
        align-items: flex-start;
        width: auto;
        gap: 10px;
        padding: 0;
        margin: 0;
        background: transparent;
        border-radius: 0;
        backdrop-filter: none;
        z-index: 10;
    }

    .social-sphere {
        width: 36px;
        height: 36px;
        border-width: 1.5px;
        font-size: 15px;
    }
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-width: 380px;
    }
    
    .album-art-section {
        padding: 25px 20px 15px 20px;
    }
    
    .album-art {
        width: 100px;
        height: 100px;
    }
    
    .provider-item {
        padding: 14px 20px;
    }
    
    .provider-logo {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .provider-name {
        font-size: 0.9rem;
    }
    
    .provider-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 50px;
    }
}

/* Featured Video Section */
.featured-video-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #000000;
    padding: 0 0 80px 0;
}

.featured-video-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.video-container-overlay {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.featured-video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: #000;
    box-shadow: none;
    display: block;
    pointer-events: none;
}

.featured-video::-webkit-media-controls {
    display: none !important;
}

.featured-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.featured-video::-webkit-media-controls-panel {
    display: none !important;
}

.featured-video::-webkit-media-controls-play-button {
    display: none !important;
}

.featured-video::-webkit-media-controls-timeline {
    display: none !important;
}

.featured-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.featured-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.featured-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.featured-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.featured-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Video Overlay Content */
.video-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: auto;
}

.video-overlay-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 300;
    color: #ffffff !important;
    margin: 0 0 15px 0;
    text-shadow: 0 0 30px rgba(191, 158, 49, 0.8);
    filter: drop-shadow(0 0 15px rgba(191, 158, 49, 0.8));
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-title-overlay h2 {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 300;
    color: #ffffff !important;
    margin: 0 0 15px 0;
    text-shadow: 0 0 30px rgba(191, 158, 49, 0.8);
    filter: drop-shadow(0 0 15px rgba(191, 158, 49, 0.8));
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.video-title-overlay .video-subtitle {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(191, 158, 49, 0.8);
    filter: drop-shadow(0 0 15px rgba(191, 158, 49, 0.8));
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
    display: block;
    margin-top: 1rem;
}

.watch-now-btn {
    display: inline-block;
    background: linear-gradient(45deg, #bf9e31, #d4b23a);
    color: #000000;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(191, 158, 49, 0.4);
}

.watch-now-btn:hover {
    background: linear-gradient(45deg, #d4b23a, #bf9e31);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(191, 158, 49, 0.6);
}

.featured-video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.featured-video::-webkit-media-controls-play-button {
    background-color: rgba(191, 158, 49, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.featured-video::-webkit-media-controls-current-time-display,
.featured-video::-webkit-media-controls-time-remaining-display {
    color: #bf9e31;
    font-weight: bold;
}

.video-info {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    padding: 0 40px;
}

.video-info h3 {
    color: #bf9e31;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(191, 158, 49, 0.6);
    font-family: 'Inter', sans-serif;
}

.video-info p {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}


/* Latest Videos Grid */
.latest-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 10px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 40px;
}

/* Latest Music Grid */
.latest-music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 10px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 30px;
}

.video-thumbnail-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(191, 158, 49, 0.5);
    box-shadow: 0 15px 40px rgba(191, 158, 49, 0.2);
}

.video-thumbnail-item:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 158, 49, 0.8);
    box-shadow: 0 20px 50px rgba(191, 158, 49, 0.4);
}

.music-thumbnail-item {
    background: transparent;
    overflow: visible;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

.music-thumbnail-item:hover {
    transform: translateY(-8px);
}

/* Video thumbnails (Jusqu'au Paradis / Under The Sun) */
.video-thumbnail-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-top: 0;
}

/* Music thumbnails */
.music-thumbnail-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    margin-top: 0;
    background: #000;
    border-radius: 15px;
    border: 2px solid rgba(191, 158, 49, 0.5);
    box-shadow: 0 15px 40px rgba(191, 158, 49, 0.2);
    padding: 15px;
    box-sizing: border-box;
}

.music-thumbnail-item:hover img {
    border-color: rgba(191, 158, 49, 0.8);
    box-shadow: 0 20px 50px rgba(191, 158, 49, 0.4);
}

.video-thumbnail-item:hover img,
.music-thumbnail-item:hover img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-thumbnail-item:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(191, 158, 49, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(191, 158, 49, 0.8);
    transition: all 0.3s ease;
}

.thumbnail-play-btn:hover {
    transform: scale(1.1);
    background: rgba(191, 158, 49, 1);
}

.video-thumbnail-item h4 {
    color: #bf9e31;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 20px 25px;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 20px rgba(191, 158, 49, 0.6);
    border-top: 2px solid rgba(191, 158, 49, 0.3);
}

.music-info {
    padding: 10px 15px 15px 15px;
    text-align: center;
}

.music-info h4 {
    color: #bf9e31;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 10px 10px 5px 10px;
    margin: 0 0 8px 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 20px rgba(191, 158, 49, 0.6);
}

.listen-btn {
    background-color: #bf9e31;
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(191, 158, 49, 0.4);
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.music-info .listen-btn {
    margin-top: 0;
}

.listen-btn:hover {
    background-color: #d4b23a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 158, 49, 0.6);
}

.video-thumbnail-item,
.music-thumbnail-item {
    position: relative;
}

/* Responsive adjustments */
/* No responsive overrides for video thumbnails to keep consistent size */

.music-section h2 {
    text-align: center;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.music-section h2::after,
.music-section h2::before,
.tour-section h2::after,
.store-section h2::after,
.gaming-section h2::after {
    display: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-item {
    text-align: center;
    position: relative;
}

.video-item a {
    display: block;
    position: relative;
    text-decoration: none;
}

.video-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.video-embed {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 158, 49, 0.3);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.video-embed video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.video-embed video::-webkit-media-controls-play-button {
    background-color: rgba(191, 158, 49, 0.9);
    border-radius: 50%;
}

.video-embed video::-webkit-media-controls-current-time-display,
.video-embed video::-webkit-media-controls-time-remaining-display {
    color: #bf9e31;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay-large {
    opacity: 1;
}

.play-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(191, 158, 49, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    box-shadow: 0 0 30px rgba(191, 158, 49, 0.6);
}

.watch-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.video-item h3 {
    color: #FFD700;
    font-size: 1.2rem;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    padding: 15px 30px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 100px auto 0 auto;
}

.video-button-container .btn-secondary {
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

/* Cube Maggi Showcase Section */
.cube-maggi-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.cube-maggi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(191, 158, 49, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cube-maggi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cube-maggi-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #bf9e31;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(191, 158, 49, 0.8);
    letter-spacing: 3px;
}

.cube-maggi-info .subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cube-maggi-info .description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cube-maggi-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-watch, .btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-watch {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff3333, #ff0000);
}

.btn-stream {
    background: linear-gradient(45deg, #bf9e31, #a08628);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(191, 158, 49, 0.3);
}

.btn-stream:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 158, 49, 0.6);
    background: linear-gradient(45deg, #d4b23a, #bf9e31);
}

.cube-maggi-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.cube-maggi-visual:hover {
    transform: scale(1.02);
}

.cube-maggi-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.cube-maggi-visual:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(191, 158, 49, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(191, 158, 49, 0.6);
}

.play-icon:hover {
    transform: scale(1.1);
    background: rgba(191, 158, 49, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cube-maggi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cube-maggi-info h2 {
        font-size: 3rem;
    }
    
    .cube-maggi-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cube-maggi-visual {
        order: -1;
    }
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: #000000;
}

.projects-section h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 4rem;
    color: #bf9e31;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 30px rgba(191, 158, 49, 0.6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.project-item {
    text-align: center;
    background-color: #000000;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.project-info h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-info p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Store Section */
/* Tour Section */
.tour-section {
    padding: 20px 0 15px 0;
    background-color: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tour-section h2 {
    text-align: center;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
    padding: 40px 20px;
}

.tour-section h2::after {
    display: none;
}

.tour-hero-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 40px;
    overflow: hidden;
}

.tour-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tour-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.tour-filter-btn {
    background-color: transparent;
    color: var(--brand-gold);
    border: 3px solid var(--brand-gold);
    padding: 18px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
}

.tour-filter-btn:hover {
    background-color: var(--brand-gold);
    color: #000000;
}

.tour-filter-btn.active {
    background-color: var(--brand-gold);
    color: #000000;
}

/* Archive Year Filter Buttons - Same style as tour filters */
.archive-year-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.archive-year-btn {
    background-color: transparent;
    color: var(--brand-gold);
    border: 3px solid var(--brand-gold);
    padding: 18px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
}

.archive-year-btn:hover {
    background-color: var(--brand-gold);
    color: #000000;
}

.archive-year-btn.active {
    background-color: var(--brand-gold);
    color: #000000;
}

/* Pagination styles - Matching site design */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 50px auto;
    width: 100%;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: transparent;
    color: var(--brand-gold);
    border: 3px solid var(--brand-gold);
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 50px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: var(--brand-gold);
    color: #000000;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background-color: var(--brand-gold);
    color: #000000;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: transparent;
    color: var(--brand-gold);
}

.pagination-btn:disabled:hover {
    transform: none;
    background-color: transparent;
    color: var(--brand-gold);
}

.tour-year-header {
    text-align: center;
    font-size: 3.5rem;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 50px 0 30px 0;
    padding: 20px 0;
    border-top: 2px dotted rgba(191, 158, 49, 0.3);
    border-bottom: 2px dotted rgba(191, 158, 49, 0.3);
    text-shadow: 0 0 20px rgba(191, 158, 49, 0.8),
                 0 0 40px rgba(191, 158, 49, 0.6),
                 0 0 60px rgba(191, 158, 49, 0.4);
}

.tour-year-header.hidden {
    display: none;
}

.tour-announcement-image {
    text-align: center;
    margin: 30px auto 40px auto;
    max-width: 1000px;
    width: 100%;
}

.tour-announcement-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tour-list {
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.tour-list.hidden {
    display: none;
}

.tour-list-item {
    display: grid;
    grid-template-columns: 450px 1fr auto;
    align-items: center;
    gap: 250px;
    padding: 22px 30px;
    border-bottom: 1px dotted rgba(191, 158, 49, 0.3);
    transition: all 0.3s ease;
}

.tour-list-item:has(.tour-ticket-btn) {
    grid-template-columns: 450px 1fr auto;
}

.tour-list-item:not(:has(.tour-ticket-btn)) {
    grid-template-columns: 450px 1fr;
}

.tour-list-item:hover {
    background-color: rgba(191, 158, 49, 0.05);
}

.tour-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.5px;
    text-align: left;
    display: grid;
    grid-template-columns: 120px 20px 1fr;
    gap: 30px;
    align-items: center;
}

.tour-name span:nth-child(1) {
    text-align: left;
    white-space: nowrap;
    width: 120px;
}

.tour-name span:nth-child(2) {
    text-align: center;
    white-space: nowrap;
}

.tour-name span:nth-child(3) {
    text-align: left;
    white-space: nowrap;
}

.tour-name span {
    color: #ffffff;
}

.coming-soon-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-gold);
    grid-column: 1 / -1;
}

.coming-soon-item p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-section {
    text-align: center;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-section .coming-soon-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background-color: #b8972f;
    padding: 25px 70px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(184, 151, 47, 0.5),
                0 0 60px rgba(184, 151, 47, 0.3);
}

.tour-date-code {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-align: left;
    white-space: nowrap;
}

.tour-ticket-btn {
    background-color: var(--brand-gold);
    color: #000000;
    border: none;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.tour-ticket-btn:hover {
    background-color: #d4b13f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(191, 158, 49, 0.3);
}

@media (max-width: 768px) {
    .coming-soon-section .coming-soon-text {
        font-size: 1rem;
        padding: 12px 24px;
        letter-spacing: 1px;
        box-shadow: 0 0 15px rgba(184, 151, 47, 0.4);
    }

    .coming-soon-section {
        padding: 30px 0;
    }

    .video-button-container {
        margin-top: 25px !important;
    }

    .tour-filter-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tour-filter-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .archive-year-filter-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .archive-year-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .pagination {
        gap: 10px;
        margin: 40px auto;
    }
    
    .pagination-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        min-width: 44px;
        letter-spacing: 1px;
    }
    
    .tour-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .tour-name {
        font-size: 0.95rem;
    }
    
    .tour-date-code {
        font-size: 0.95rem;
    }
    
    .tour-ticket-btn {
        width: 100%;
    }

    .tour-tickets-btn-container {
        text-align: center;
        margin: 1.5rem 0;
        padding: 0 15px;
    }

    .tour-tickets-btn {
        display: inline-block;
        padding: 15px 40px;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: #bf9e31;
        border: none;
        color: white;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 0 20px rgba(191, 158, 49, 0.4), 0 0 40px rgba(191, 158, 49, 0.2);
    }
}

.store-section {
    padding: 20px 0 10px 0;
    background-color: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.store-section h2 {
    text-align: center;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: #bf9e31;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.store-section h2::after {
    display: none;
}

.store-section .container {
    margin-top: 40px;
}

/* Merchandise Grid */
.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0 10px 0;
    padding: 0 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .merchandise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .merchandise-grid {
        grid-template-columns: 1fr;
    }
}

.merch-item {
    text-align: center;
    background-color: #000000;
    padding: 1.75rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(191, 158, 49, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 158, 49, 0.3);
    border-color: rgba(191, 158, 49, 0.8);
}

.merch-item > img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: 14px;
    background-color: #ffffff;
    padding: 1rem;
    box-sizing: border-box;
}

.merch-item h3 {
    color: #bf9e31;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Jersey Hover Effect */
.jersey-item {
    position: relative;
}

.jersey-container {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1rem;
    background-color: #ffffff;
    padding: 1rem;
    box-sizing: border-box;
}

.jersey-front,
.jersey-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.jersey-front {
    opacity: 1;
    z-index: 2;
}

.jersey-back {
    opacity: 0;
    z-index: 1;
}

.jersey-item:hover .jersey-front {
    opacity: 0;
}

.jersey-item:hover .jersey-back {
    opacity: 1;
}

/* Debug: Make sure hover is working */
.jersey-item:hover {
    border: 2px solid #bf9e31;
}

.jersey-container:hover .jersey-front {
    opacity: 0;
}

.jersey-container:hover .jersey-back {
    opacity: 1;
}

/* Shop Now Section */
.shop-now-section {
    text-align: center;
    margin: 3rem 0;
}

.shop-now-section .btn-primary {
    padding: 35px 80px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: #bf9e31;
    border: none;
    color: white;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(191, 158, 49, 0.6), 0 0 80px rgba(191, 158, 49, 0.3);
    cursor: pointer;
}

.shop-now-section .btn-primary:hover {
    background: #d4b03a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(191, 158, 49, 0.8), 0 0 100px rgba(191, 158, 49, 0.4);
}

@media (max-width: 768px) {
    .shop-now-section .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
        letter-spacing: 2px;
        border-radius: 5px;
    }
}

.store-hero-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.store-hero-full img {
    width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    transition: transform 0.3s ease;
}

.store-hero-full:hover img {
    transform: scale(1.02);
}

.store-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.store-hero-overlay .btn-primary {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #bf9e31;
    border: 2px solid #bf9e31;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(191, 158, 49, 0.3);
}

.store-hero-overlay .btn-primary:hover {
    background: transparent;
    color: #bf9e31;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(191, 158, 49, 0.4);
}

/* Responsive design for boutique hero */
@media (max-width: 768px) {
    .store-hero-full {
        height: 35vh;
        min-height: 250px;
    }
    
    .store-hero-overlay .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .store-hero-full {
        height: 30vh;
        min-height: 200px;
    }
    
    .store-hero-overlay .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.product-item {
    text-align: center;
    background-color: #000000;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-item h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.price {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0 70px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    background-image: url('Photos_Website_JL/banniere akan jaune.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 998;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-social a {
    color: #FFD700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FFFFFF;
}

.footer-content p {
    color: #bf9e31;
    font-size: 0.9rem;
    position: relative;
    z-index: 999;
/* ============================================
   PROFESSIONAL SPLASH SCREEN - JEUNE LION
   ============================================ */

.splash-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #000000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--brand-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(196, 152, 0, 0.6);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: rgba(196, 152, 0, 0.4);
    animation-duration: 2s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Splash Container */
.splash-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.splash-container.loaded {
    opacity: 1;
}

/* Album Cover Section */
.album-cover-section {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-bottom: 60px;
    z-index: 3;
}

.cover-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.cover-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(196, 152, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(196, 152, 0, 0.3),
        inset 0 0 40px rgba(196, 152, 0, 0.1);
    transition: transform 0.3s ease-out;
    animation: coverReveal 1.5s ease-out forwards;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(196, 152, 0, 0.1) 0%,
        transparent 50%,
        rgba(196, 152, 0, 0.1) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

@keyframes coverReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes coverPulse {
    0%, 100% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(196, 152, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.8),
            0 0 80px rgba(196, 152, 0, 0.5);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Content Section */
.splash-content {
    text-align: center;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
}

/* Artist Name */
.artist-name-wrapper {
    margin-bottom: 30px;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 8px;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    text-shadow: 
        0 0 20px rgba(196, 152, 0, 0.5),
        0 0 40px rgba(196, 152, 0, 0.3),
        0 0 60px rgba(196, 152, 0, 0.2);
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    filter: blur(10px);
}

.letter-space {
    width: 20px;
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

/* Album Title */
.album-title-wrapper {
    margin-bottom: 40px;
}

.album-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(196, 152, 0, 0.8);
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.album-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 6px;
    margin: 0 0 20px 0;
    opacity: 0;
    text-shadow: 0 0 30px rgba(196, 152, 0, 0.4);
}

.title-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(196, 152, 0, 0.6);
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineDraw {
    0% {
        width: 0;
    }
    100% {
        width: 300px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Release Info */
.release-info-wrapper {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.release-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.platform-icon {
    font-size: 1.5rem;
    color: var(--brand-gold);
    opacity: 0.6;
    animation: iconFloat 2s ease-in-out infinite;
}

.platform-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.platform-icon:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* Enter Button */
.button-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.5s forwards;
}

.enter-button {
    position: relative;
    background: linear-gradient(135deg, var(--brand-gold), #d4b23a);
    color: #000000;
    border: none;
    padding: 18px 60px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(196, 152, 0, 0.4),
        0 0 20px rgba(196, 152, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.enter-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(196, 152, 0, 0.6),
        0 0 30px rgba(196, 152, 0, 0.4);
}

.enter-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.enter-button:hover .button-arrow {
    transform: translateX(5px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    z-index: 1;
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gold-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    height: 1px;
    opacity: 0.3;
    box-shadow: 0 0 10px rgba(196, 152, 0, 0.5);
}

.line-1 {
    top: 20%;
    left: 10%;
    width: 0;
    animation: lineDraw 1.5s ease-out 2s forwards;
}

.line-2 {
    top: 50%;
    right: 10%;
    width: 0;
    animation: lineDraw 1.5s ease-out 2.2s forwards;
}

.line-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    animation: lineDraw 1.5s ease-out 2.4s forwards;
}

@keyframes lineDraw {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 0.3;
    }
}

/* Fade Out Animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .album-cover-section {
        margin-bottom: 40px;
    }

    .cover-wrapper {
        max-width: 350px;
    }

    .artist-name {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 4px;
        gap: 4px;
    }

    .album-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        letter-spacing: 3px;
    }

    .title-underline {
        max-width: 200px;
    }

    .enter-button {
        padding: 15px 40px;
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .splash-content {
        padding: 0 20px;
    }

    .line-1, .line-2, .line-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .cover-wrapper {
        max-width: 280px;
    }

    .artist-name {
        font-size: clamp(1.8rem, 12vw, 3rem);
        letter-spacing: 2px;
    }

    .album-title {
        font-size: clamp(1.2rem, 10vw, 2rem);
    }

    .enter-button {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* Old splash styles - keeping for backward compatibility */
.pigalle-splash-page {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(191,158,49,0.2), rgba(0,0,0,0.95));
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #f3e6c0;
    background-image: linear-gradient(120deg, rgba(4,4,4,0.98), rgba(13,13,13,0.95)), url('Photos_Website_JL/Photos_Website_JL/JEUNE_LION_ON_STAGE_GOLDEN.jpg');
    background-size: cover;
    background-position: center;
}

.pigalle-modal {
    width: min(1100px, 100%);
}

.pigalle-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 35px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(191, 158, 49, 0.5);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
}

.pigalle-left {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.pigalle-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pigalle-tag {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(191, 158, 49, 0.7);
    padding: 8px 18px;
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.pigalle-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pigalle-kicker {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(191, 158, 49, 0.9);
    margin: 0;
}

.pigalle-right h1 {
    font-family: 'Edo', 'Playfair Display', serif;
    font-size: 4.2rem;
    letter-spacing: 10px;
    margin: 0;
    color: #fddc7a;
}

.pigalle-subtitle {
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.pigalle-track-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 10px 0 20px;
}

.pigalle-track-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.pigalle-track-columns li::before {
    content: '✦';
    color: rgba(191, 158, 49, 0.85);
    margin-right: 8px;
}

.pigalle-track-columns li {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.pigalle-modal .btn-primary {
    width: fit-content;
    padding: 14px 38px;
    font-size: 1rem;
    letter-spacing: 3px;
}

@media (max-width: 900px) {
    .pigalle-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .pigalle-right h1 {
        font-size: 3rem;
        letter-spacing: 6px;
        text-align: center;
    }

    .pigalle-track-columns {
        grid-template-columns: 1fr;
    }

    .pigalle-modal .btn-primary {
        width: 100%;
        text-align: center;
    }
}
    margin-top: 0;
    margin-bottom: 0;
}

/* Page Headers */
.page-header {
    padding: 120px 0 30px;
    background: #000000;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #FFD700;
    font-weight: bold;
}

/* Tour Tickets Button */
.tour-tickets-btn-container {
    text-align: center;
    margin: 2rem 0 3rem;
}

.tour-tickets-btn {
    display: inline-block;
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #bf9e31;
    border: none;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(191, 158, 49, 0.5), 0 0 60px rgba(191, 158, 49, 0.25);
}

.tour-tickets-btn:hover {
    background: #d4b03a;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(191, 158, 49, 0.7), 0 0 80px rgba(191, 158, 49, 0.35);
}

/* Landing Page Styles */
.landing-hero {
    padding: 180px 0 80px;
    background-image: url('Photos_Website_JL/Photos_Website_JL/TOURNEE_JEUNE_LION_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.landing-hero > * {
    position: relative;
    z-index: 1;
}

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

.landing-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.landing-text {
    text-align: left;
}

/* Music Grid Styles */
.music-grid-section {
    padding: 80px 0;
    background-color: #000000;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.music-item {
    text-align: center;
    background-color: #000000;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.music-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.music-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

/* Videos Grid Styles */
.videos-grid-section {
    padding: 80px 0;
    background-color: #000000;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    text-align: center;
    background-color: #000000;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

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

.video-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 215, 0, 0.9);
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #FFFFFF;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

/* Tour Dates Styles */
.tour-dates-section {
    padding: 20px 0 40px 0;
    background-color: #000000;
}

.tour-year {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-year h2 {
    font-size: 3rem;
    color: #FFD700;
    font-weight: bold;
}

.dates-grid {
    display: grid;
    gap: 2rem;
}

.date-item {
    background-color: #000000;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #FFD700;
    transition: transform 0.3s ease;
}

.date-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.date-info h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.date-location,
.date-time,
.date-venue {
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.date-actions {
    text-align: right;
}

.date-price {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Newsletter Styles */
.newsletter-section {
    padding: 80px 0;
    background-color: #000000;
}

.newsletter-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFD700;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #000000;
    padding: 3rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
}

/* Shop Styles */
.shop-hero {
    padding: 80px 0;
    background-color: #000000;
}

.shop-hero-content {
    text-align: center;
}

.shop-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.shop-products-section {
    padding: 80px 0;
    background-color: #000000;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content,
    .landing-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Header adjustments */
    .navbar { padding: 0.4rem 0; }
    .site-logo { height: 50px; }
    .brand-name { 
        font-size: 1.2rem; 
        font-family: 'Chewy', cursive !important;
    }

    .nav-logo {
        margin-left: 1rem;
    }

    /* Hero adjustments */
    .hero { padding: 120px 0 40px; height: auto; min-height: 0; }
    .hero-image { margin-top: 0; margin-left: 0; height: auto; }
    .hero-image img { height: auto; max-height: 55vh; object-fit: contain; }
    .golden-line { height: 8px; margin-bottom: 1.5rem; }
    .release-date { font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 1rem; }
    .release-type-box { min-width: 0; padding: 14px 18px 14px 12px; margin-bottom: 1.5rem; }
    .release-type { font-size: 2.4rem; letter-spacing: 2px; margin-bottom: 10px; }
    .hero-text h1 { font-size: 2rem; letter-spacing: 0.5px; }
    .btn-listen { font-size: 1.5rem; padding: 14px 20px; }

    .hero-text h1,
    .landing-text h1 {
        font-size: 2rem;
    }

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

    .hero-image-section {
        height: 60vh;
        max-height: 420px;
        margin-bottom: 1.5rem;
    }

    .hero-image-section img {
        height: 100%;
        object-fit: cover;
    }

    .video-section,
    .music-section,
    .tour-section,
    .store-section,
    .featured-video-section,
    .cube-maggi-section,
    .gaming-section,
    .latest-videos-grid,
    .latest-music-grid,
    .merchandise-grid,
    .store-hero-full,
    .tour-hero-image,
    .video-button-container {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .video-grid,
    .projects-grid,
    .products-grid,
    .music-grid,
    .videos-grid,
    .latest-videos-grid,
    .latest-music-grid,
    .merchandise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .nav-logo {
        justify-content: center;
        margin-left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .date-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .date-actions {
        text-align: center;
    }

    .newsletter-form {
        padding: 2rem;
    }

    /* Additional mobile polish */
    .hero-image-section,
    .video-section,
    .music-section,
    .tour-section,
    .store-section,
    .featured-video-section,
    .cube-maggi-section,
    .gaming-section,
    .store-hero-full,
    .tour-hero-image,
    .video-button-container {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    .hero-image-section img,
    .tour-hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .latest-videos-grid {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .latest-music-grid {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .merchandise-grid {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-thumbnail-item {
        width: 85% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

    .video-thumbnail-item img {
        height: 320px !important;
        object-fit: cover !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .video-thumbnail-item h4 {
        font-size: 1.1rem !important;
        padding: 12px 15px !important;
    }
    
    .music-thumbnail-item {
        width: 85% !important;
        max-width: none !important;
        margin: 10px auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .music-thumbnail-item img {
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #000 !important;
        border-radius: 15px !important;
        border: 2px solid rgba(191, 158, 49, 0.5) !important;
        box-shadow: 0 15px 40px rgba(191, 158, 49, 0.2) !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .music-info {
        padding: 5px 10px 10px 10px !important;
    }

    .music-info h4 {
        font-size: 1.1rem !important;
        padding: 5px 10px !important;
        margin-bottom: 5px !important;
    }
    
    .merch-item img {
        height: auto;
        object-fit: contain;
    }

    .jersey-container {
        height: auto;
        margin-bottom: 0.75rem;
    }

    .jersey-container {
        height: 360px;
    }

    .jersey-container {
        height: 360px;
        overflow: hidden;
        position: relative;
    }

    .jersey-front,
    .jersey-back {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }

    .jersey-back {
        opacity: 0;
    }

    .jersey-item:hover .jersey-back,
    .jersey-container:hover .jersey-back {
        opacity: 1;
    }

    .jersey-item:hover .jersey-front,
    .jersey-container:hover .jersey-front {
        opacity: 0;
    }

    .tour-section h2,
    .video-section h2,
    .music-section h2,
    .store-section h2,
    .gaming-section h2 {
        font-size: 2.6rem;
        letter-spacing: 1px;
        padding: 18px 0;
        text-align: center;
        width: 100%;
        margin-left: 0;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }

    .tour-filter-buttons {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 0;
    }

    .tour-filter-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        width: calc(50% - 12px);
        max-width: 180px;
    }

    .tour-section,
    .tour-section .container,
    .tour-hero-image,
    .tour-list {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .tour-list {
        padding: 0 20px !important;
        margin: 0 auto !important;
    }

    .tour-list-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.15rem !important;
        padding: 20px 0 !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px dotted rgba(191, 158, 49, 0.3) !important;
    }

    .tour-ticket-btn {
        width: 100%;
        max-width: none;
        margin-top: 0.5rem;
        align-self: stretch;
    }

    .tour-name {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        font-size: 1rem !important;
        letter-spacing: 0.6px;
        text-align: center !important;
        width: 100% !important;
    }

    .tour-name span {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        color: #fff !important;
        font-weight: 600 !important;
    }

    .tour-name span:nth-child(1) {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .tour-name span:nth-child(2) {
        display: none !important;
    }

    .tour-name span:nth-child(3) {
        font-size: 0.95rem !important;
        font-weight: 400 !important;
    }

    .tour-date-code {
        font-size: 0.85rem !important;
        letter-spacing: 0.8px !important;
        white-space: normal !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--brand-gold) !important;
        margin-top: 5px !important;
        font-weight: 400 !important;
    }

    .tour-tickets-btn-container {
        margin: 1rem 0 !important;
    }

    .tour-tickets-btn {
        padding: 10px 30px !important;
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
    }

    .merch-item {
        padding: 1.25rem;
        gap: 0.5rem;
    }

    .merch-item > img {
        height: auto;
        max-height: 260px;
    }
}

@media (max-width: 768px) {
    .featured-video-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0;
    }

    .featured-video-container {
        padding: 0;
    }

    .video-container-overlay {
        height: 48vh;
        min-height: 260px;
    }

    .featured-video {
        object-fit: cover;
    }

    .video-title-overlay h2 {
        font-size: 3.2rem;
        display: inline-flex;
        align-items: baseline;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .video-title-overlay .video-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        display: inline-flex;
        margin-top: 0;
    }

    .watch-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .listen-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    /* Videos page responsive adjustments */
    .videos-grid-section {
        padding-top: 10px;
    }

    .page-header {
        padding-bottom: 15px;
    }

    .video-thumbnail-item h4 {
        font-size: 1.4rem;
        padding: 15px 20px;
    }

    .music-info h4 {
        font-size: 1.4rem;
        padding: 15px 20px;
    }

    /* Music page responsive adjustments */
    .page-header {
        padding-bottom: 15px;
    }

    .music-section {
        padding-top: 10px;
    }

    .music-section .container {
        margin-top: 0;
    }

    .music-section h2 {
        margin-bottom: 0;
        padding-bottom: 5px;
    }

    .cube-maggi-section {
        padding-top: 0;
        margin-top: -10px;
    }

    /* Shop/Merch page responsive adjustments */
    .page-header {
        padding-bottom: 15px;
    }

    .shop-hero {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    /* Tour/Dates page responsive adjustments */
    .page-header {
        padding-bottom: 15px;
    }

    .tour-dates-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    /* Smaller phones */
    .site-logo { height: 40px; }
    .brand-name { 
        font-size: 1rem; 
        font-family: 'Chewy', cursive !important;
    }
    .hero-image img { max-height: 50vh; }

    .hero-image-section {
        height: 50vh;
        max-height: 360px;
        margin-bottom: 1rem;
    }

    .hero-image-section img {
        height: 100%;
        object-fit: cover;
    }
    .release-date { font-size: 1.4rem; }
    .release-type { font-size: 2.1rem; }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .tour-section h2,
    .video-section h2,
    .music-section h2,
    .store-section h2,
    .gaming-section h2 {
        font-size: 2.3rem;
        letter-spacing: 0.8px;
    }

    .tour-filter-buttons {
        gap: 8px;
    }

    .tour-filter-btn {
        width: 100%;
        max-width: none;
    }

    .tour-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .tour-name {
        font-size: 0.95rem;
    }

    .tour-date-code {
        font-size: 0.95rem;
    }

    .merch-item {
        padding: 1rem;
        gap: 0.4rem;
    }

    .merch-item > img {
        height: auto;
        max-height: 220px;
    }

    .jersey-container {
        height: 320px;
        margin-bottom: 0.5rem;
        overflow: hidden;
        position: relative;
    }

    .jersey-front,
    .jersey-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }

    .jersey-back {
        opacity: 0;
    }

    .jersey-item:hover .jersey-back,
    .jersey-container:hover .jersey-back {
        opacity: 1;
    }

    .jersey-item:hover .jersey-front,
    .jersey-container:hover .jersey-front {
        opacity: 0;
    }

    .listen-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
        min-width: 150px;
    }
}

/* ============================================
   TOUR 2026 ANNOUNCEMENT MODAL
   ============================================ */

.tour-announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.tour-announcement-content {
    position: relative;
    max-width: 640px;
    width: 90%;
    margin: 40px auto;
    background: #000000;
    border: 3px solid var(--brand-gold);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 152, 0, 0.5);
    animation: tourModalSlideIn 0.5s ease-out;
    padding: 25px 30px 5px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@keyframes tourModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tour-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
}

.tour-modal-close:hover {
    background: var(--brand-gold);
    color: #000;
    transform: rotate(90deg);
}

.tour-announcement-content .tour-announcement-image {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 0;
}

.tour-announcement-content .tour-announcement-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Action Button */
.tour-modal-actions {
    padding: 10px 0 20px 0;
    text-align: center;
    background: #000000;
    border-top: 2px solid rgba(196, 152, 0, 0.3);
    margin-top: 0;
}

.tour-modal-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-gold), #d4b23a);
    color: #000000;
    padding: 18px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 152, 0, 0.4);
}

.tour-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 152, 0, 0.6);
    background: linear-gradient(135deg, #d4b23a, var(--brand-gold));
}

/* MacBook Air / Small laptop screens */
@media (max-height: 850px) {
    .tour-announcement-content {
        max-height: 92vh;
        padding: 10px 15px 5px 15px;
    }

    .tour-announcement-content .tour-announcement-image {
        max-width: 380px;
    }

    .tour-modal-btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .tour-modal-actions {
        padding: 5px 0 10px 0;
    }

    .tour-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .booking-modal-content {
        max-height: 92vh;
        padding: 10px 20px;
    }

    .booking-modal-media {
        max-width: 180px;
        padding: 4px;
    }

    .booking-modal-info h2 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .booking-intro,
    .booking-note {
        font-size: 0.7rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .booking-email-btn {
        padding: 6px 18px;
        font-size: 0.75rem;
    }

    .booking-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ==================== */
/* BOOKING PAGE STYLES  */
/* ==================== */

.booking-page-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.booking-page-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.booking-page-media {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold, #bf9e31);
    box-shadow: 0 10px 40px rgba(191, 158, 49, 0.3);
}

.booking-page-media img {
    width: 100%;
    height: auto;
    display: block;
}

.booking-page-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.booking-page-info h1 {
    font-family: 'Edo', sans-serif;
    font-size: 3rem;
    color: var(--gold, #bf9e31);
    letter-spacing: 3px;
    margin: 0;
}

.booking-page-intro {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.booking-page-email-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--gold, #bf9e31);
    color: var(--gold, #bf9e31);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.booking-page-email-btn:hover {
    background: var(--gold, #bf9e31);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(191, 158, 49, 0.4);
}

.booking-page-note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    max-width: 500px;
    line-height: 1.5;
    margin: 0;
}

/* Booking Page Responsive */
@media (max-width: 768px) {
    .booking-page-section {
        padding: 100px 15px 40px 15px;
    }

    .booking-page-container {
        gap: 30px;
    }

    .booking-page-media {
        max-width: 350px;
    }

    .booking-page-info h1 {
        font-size: 2rem;
    }

    .booking-page-intro {
        font-size: 1rem;
    }

    .booking-page-email-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .booking-page-note {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-announcement-content {
        width: 94%;
        margin: 20px auto;
        border-radius: 15px;
        padding: 20px 20px 5px 20px;
    }

    .tour-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .tour-modal-actions {
        padding: 20px;
    }

    .tour-modal-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    /* Tour hero image full-width */
    .tour-section,
    .store-section {
        padding: 0;
        background-color: #000;
    }

    .tour-section .container,
    .store-section .container {
        padding: 0;
        max-width: none;
        width: 100%;
    }

    .tour-hero-image,
    .store-hero-full {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .tour-hero-image img,
    .store-hero-full img {
        width: 100vw;
        max-width: none;
        height: auto;
        display: block;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

/* ============================================
   BOOKING MODAL
   ============================================ */
body.modal-open {
    overflow: hidden;
}

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 11000;
}

.booking-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-content {
    background: #050505;
    border: 3px solid var(--brand-gold);
    border-radius: 22px;
    max-width: 620px;
    width: 92%;
    padding: 25px 35px 25px 35px;
    box-shadow: 0 0 60px rgba(196, 152, 0, 0.35);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.booking-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    background: rgba(0, 0, 0, 0.6);
    color: var(--brand-gold);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.booking-modal-close:hover {
    transform: rotate(90deg);
    background: var(--brand-gold);
    color: #050505;
}

.booking-modal-media {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(196, 152, 0, 0.35);
    box-shadow: inset 0 0 20px rgba(196, 152, 0, 0.15);
}

.booking-modal-media img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.booking-modal-info {
    text-align: center;
    color: #fff;
}

.booking-modal-info h2 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--brand-gold);
    text-transform: uppercase;
}

.booking-intro,
.booking-note {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.booking-email-link {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--brand-gold), #f0d46a);
    color: #050505;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.booking-email-link:hover {
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .booking-modal {
        padding: 20px 10px;
        align-items: flex-start;
    }

    .booking-modal-content {
        padding: 18px;
        width: 94%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .booking-modal-info h2 {
        font-size: 1.4rem;
    }

    .booking-modal-media {
        max-width: 260px;
        padding: 8px;
    }
}
