/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #121212;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
}

.nav-links a {
    text-decoration: none;
    color: #B3B3B3;
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1DB954;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.5);
    z-index: 1;
    animation: fadeIn 0.5s ease-in;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: transparent;
    backdrop-filter: none;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-size: 1.1rem;
    margin: 2rem auto;
    max-width: 80%;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: #1DB954;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
}

/* Portfolio/Discography Section */
.portfolio {
    padding: 6rem 2rem 18rem 2rem;
    background: #121212;
    margin-bottom: 3rem;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: #FFFFFF;
}

.gallery {
    position: relative;
    overflow: hidden;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    width: max-content;
}

.album-item {
    flex: 0 0 250px;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.album-cover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    aspect-ratio: 1;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-overlay iframe {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.play-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: #1DB954;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button:hover {
    background: #1ed760;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.album-info {
    text-align: center;
    margin-top: 1.5rem;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.album-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.album-year {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .carousel-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        overflow-x: unset;
        scroll-snap-type: none;
        width: 100%;
        padding-bottom: 0;
    }
    .album-item {
        flex: unset;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        scroll-snap-align: unset;
    }
    .carousel-button {
        display: none;
    }
    .portfolio {
        padding-bottom: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .album-item {
        min-width: 160px;
        max-width: 90vw;
    }
    .album-image {
        min-height: 120px;
        max-height: 50vw;
    }
    .album-info h3 {
        font-size: 1rem;
    }
    .play-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* About Section */
.about {
    padding: 4rem 2rem;
    padding-top: 6rem; /* Espace supplémentaire pour voir l'accent lors du scroll */
    background: #121212;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: #FFFFFF;
    scroll-margin-top: 3rem; /* Espace pour voir l'accent lors du scroll (environ 7mm) */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-content {
    flex: 1;
    padding: 3rem;
    background: transparent;
    border-radius: 15px;
}

.about-text-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
}

.about-text-main p {
    margin-bottom: 2rem;
}

.about-video {
    flex: 0 0 300px;
    width: 300px;
    height: 533px; /* 9:16 ratio (300 * 16/9) */
    margin-top: 2rem; /* Aligner avec le début du texte */
}

.about-video .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Footer */
footer {
    background-color: #121212;
    padding: 2rem;
    text-align: center;
}

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

.social-links .separator {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links .fa-instagram {
    background: transparent;
    transition: all 0.3s ease;
}

.social-links .fa-instagram:hover {
    background: transparent;
    color: transparent;
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
}

.social-links .fa-youtube:hover {
    color: #FF0000;
}

.social-links .fa-tiktok:hover {
    color: #00f2ea;
}

.social-links .fa-apple:hover {
    color: #A2AAAD;
}

.social-links .fa-spotify:hover {
    color: #1DB954;
}

.social-links .fa-deezer:hover {
    color: #FF0092;
}

footer p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        max-width: 95%;
    }
    .about-video .video-wrapper,
    .about-video iframe {
        border-radius: 0 !important;
    }
    .social-links {
        justify-content: center !important;
        gap: 1.2rem !important;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }
    footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .lang-selector {
        right: 1.2rem !important;
        left: auto !important;
        margin-left: 0 !important;
        position: absolute !important;
        top: 1rem !important;
    }
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #404040;
    color: #B3B3B3;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #1DB954;
    color: #FFFFFF;
}

.lang-btn.active {
    background: #1DB954;
    border-color: #1DB954;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .lang-selector {
        position: absolute;
        top: 1rem;
        right: 5rem;
    }
}

.carousel-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 40px;
    height: 100%;
    background: rgba(18, 18, 18, 0.04);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0.7;
    padding: 0;
    transform: translateY(-10%);
}

.carousel-button.next {
    left: auto;
    right: 0;
}

.carousel-button:hover, .carousel-button:focus {
    background: rgba(18, 18, 18, 0.10);
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-button {
        width: 28px;
    }
}

/* Spotify Section */
.spotify-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
}

.spotify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), var(--lyrics-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 0.7s cubic-bezier(.4,2,.6,1), opacity 0.5s;
}

.spotify-section h2 {
    position: sticky;
    top: 0;
    z-index: 3;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #FFFFFF;
}

.spotify-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.spotify-container iframe {
    display: block;
    margin: 0 auto 3rem auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
    backdrop-filter: blur(5px);
}

.spotify-container iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    opacity: 1;
}

/* Press Section */
.press-section {
    height: 100vh;
    padding: 6rem 2rem;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../images/karaoke-shine-your-light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.press-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.press-content {
    flex: 1;
    color: #FFFFFF;
}

.press-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.press-text-main {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: none;
}

.press-text-secondary {
    margin-bottom: 1.5rem;
}

.press-text-main p,
.press-text-secondary p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.press-motto {
    font-size: 1.1rem !important;
    font-style: italic;
    color: #1DB954;
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.4 !important;
}

.press-about {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.press-about h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.press-video {
    flex: 0 0 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.77%; /* Pour le format 9:16 des shorts */
    height: 0;
    overflow: hidden;
}

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

/* Tablettes */
@media (max-width: 992px) {
    .press-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .press-video {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .press-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .press-about {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-video {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .about, .press-section {
        position: static !important;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        float: none !important;
        clear: both !important;
    }
    .about-video {
        margin-left: auto;
        margin-right: auto;
        display: block;
        float: none !important;
        position: static !important;
        max-width: 100vw;
        height: auto;
    }
    .press-section {
        position: relative !important;
        background: #121212 !important;
        min-height: unset !important;
        height: auto !important;
        overflow: visible !important;
        margin-top: 2rem !important;
        z-index: 1;
    }
    .press-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../images/karaoke-shine-your-light.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
    }
    .press-section > * {
        position: relative;
        z-index: 2;
    }
    .press-section h2 {
        margin-bottom: 2rem;
        font-size: 1.75rem;
    }
    .press-container {
        gap: 2rem;
    }
    .press-content h3 {
        font-size: 1.4rem;
    }
    .press-text-main p,
    .press-text-secondary p,
    .press-about p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .press-motto {
        font-size: 1.2rem !important;
    }
    .press-video {
        max-width: 280px;
    }
    .press-about {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .about {
        padding: 3rem 1rem;
    }
    .about h2 {
        margin-bottom: 2rem;
        font-size: 1.75rem;
    }
    .about-container {
        gap: 2rem;
    }
    .about-content {
        padding: 2rem;
    }
    .about-text-main p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .about-video {
        max-width: 180px;
        height: 320px; /* 9:16 ratio (180 * 16/9) */
        margin-top: 1rem; /* Aligner avec le début du texte sur petits mobiles */
    }
    .press-content {
        padding: 2rem 1rem !important;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .press-video {
        max-width: 240px;
    }
    .press-content h3 {
        font-size: 1.3rem;
    }
    .about-video {
        max-width: 240px;
    }
}

/* Paroles du karaoké */
.lyrics-line {
    color: #f3f3f3;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.6;
    transition: color 0.3s, opacity 0.3s, text-shadow 0.3s;
    text-align: center;
    margin: 0.2em 0;
}
.lyrics-line.active {
    color: #fff;
    opacity: 1;
    font-weight: bold;
    text-shadow: 0 0 8px #fff, 0 0 16px #fff2;
    animation: fadeInKaraoke 0.5s;
}
.lyrics-line.completed {
    color: #e0e0e0;
    opacity: 0.4;
}

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

/* Les boutons principaux restent verts */
.karaoke-toggle, .cta-button, .play-button {
    background: #1DB954;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.7em 2em;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.karaoke-toggle.playing {
    background: #fff;
    color: #1DB954;
}

/* Lyrics Section - now integrated in Spotify section */
.lyrics-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lyrics-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    height: calc(1.7em * 5.5);
    max-height: calc(1.7em * 5.5);
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    background: none;
    padding: 0;
    overscroll-behavior: contain;
    padding-top: 0;
}

.lyrics-container h3 {
    font-size: 1.5rem;
    color: #1DB954;
    margin-bottom: 2rem;
    font-weight: 600;
}

.karaoke-toggle {
    margin-top: 2cm;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.karaoke-toggle:hover {
    background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.karaoke-toggle.playing {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.karaoke-toggle.playing:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .spotify-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .spotify-section h2 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
    
    .spotify-container {
        max-width: 100%;
    }
    
    .spotify-container iframe {
        max-width: 100%;
    }
    
    .lyrics-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .lyrics-content {
        max-height: 300px;
    }
    
    .lyrics-line {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lyrics-line.active {
        font-size: 1.2rem;
    }
    
    .karaoke-toggle {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-video {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .about-video .video-wrapper {
        border-radius: 10px;
    }
}

@media (max-width: 600px) {
    .lyrics-content {
        max-width: 98vw;
        height: 8.5em;
    }
}

/* Empêche le scroll du body lors du scroll dans les paroles sur mobile */
.lyrics-content {
    touch-action: pan-y;
}

.lyrics-line.top-visible {
    color: #fff;
    opacity: 1;
    font-weight: bold;
    text-shadow: 0 0 16px #fff, 0 0 32px #fff6, 0 0 8px #fff;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.album-item:hover .album-image {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 8px 32px 0 #fff6, 0 0 0 4px #1DB95433;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}

@media (max-width: 768px) {
  .about, .press-section {
    position: static !important;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    float: none !important;
    clear: both !important;
  }
  .about-video {
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none !important;
    position: static !important;
    max-width: 100vw;
    height: auto;
  }
  .press-section {
    position: relative !important;
    background: #121212 !important;
    min-height: unset !important;
    height: auto !important;
    overflow: visible !important;
    margin-top: 2rem !important;
    z-index: 1;
  }
  .press-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../images/karaoke-shine-your-light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
  }
  .press-section > * {
    position: relative;
    z-index: 2;
  }
} 