<style>

/* =========================
RESET
========================= */

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

html,
body{

    width:100%;

    overflow-x:hidden;

}

/* =========================
BODY
========================= */

body{

    font-family: Helvetica, Arial, sans-serif;

    background:#111111;

    color:#f2f2f2;

    line-height:1.6;

    overflow-x:hidden;

}

/* =========================
HEADER
========================= */

header{

    border-bottom:1px solid #2a2a2a;

    padding:10px 20px;

    position:fixed;

    top:0;

    left:0;

    right:0;

    background:#111111;

    z-index:1000;

}

/* HEADER CONTENT */

.header-content{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    min-height:48px;

    min-width:0;

}

/* LOGO */

.logo{

    font-size:38px;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing:1px;

    color:#d62828;

    flex:1;

    min-width:0;

    overflow:hidden;

    white-space:nowrap;

    text-overflow:ellipsis;

}

/* MENU DESKTOP */

.desktop-menu{

    display:flex;

    gap:42px;

    align-items:center;

}

/* MENU LINKS */

.desktop-menu a{

    text-decoration:none;

    color:#f2f2f2;

    font-size:18px;

    font-weight:bold;

    transition:0.2s;

}

.desktop-menu a:hover{

    color:#ff3b30;

}

/* MOBILE MENU */

.mobile-menu{

    display:none;

    font-size:28px;

    cursor:pointer;

    width:36px;

    height:36px;

    flex-shrink:0;

    align-items:center;

    justify-content:center;

    color:#ffffff;

}

/* MOBILE DROPDOWN */

.mobile-dropdown{

    display:none;

    flex-direction:column;

    border-top:1px solid #2a2a2a;

    background:#111111;

}

.mobile-dropdown a{

    padding:18px 20px;

    text-decoration:none;

    color:#f2f2f2;

    border-bottom:1px solid #2a2a2a;

    font-weight:bold;

}

.mobile-dropdown.show{

    display:flex;

}

/* =========================
MAIN
========================= */

main{

    width:100%;

    padding-top:72px;

}

/* =========================
SECTION BASE
========================= */

.section-inner{

    max-width:1200px;

    margin:auto;

    padding:50px 20px;

}


/* =========================
HERO
========================= */

.hero-section{

    background:#f2f2f2;

    border-bottom:1px solid #dddddd;

}

.hero{

    display:grid;

    grid-template-columns:minmax(0,1fr) minmax(0,1fr);

    gap:80px;

    align-items:center;

    min-height:580px;

}

.hero > *{

    min-width:0;

}

/* COVER */

.cover{

    width:100%;

    display:block;

    border-radius:18px;

    align-self:center;

}

/* HERO TITLE */

.hero-text h1{

    font-size:58px;    

    line-height:1.05;

    margin-bottom:30px;

    margin-top:-10px;
    
    color:#d62828;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing:1px;

    text-transform:uppercase;

}

/* HERO TEXT */

.hero-text p{

    color:#111111;

    font-size:18px;

}

/* TEXT BLOCK */

.text-block{

    margin-bottom:50px;

}

/* TRACKLIST */

.tracklist{

    list-style:none;

    padding-left:0;

}

.tracklist li{

    margin-bottom:10px;

    color:#111111;

    font-size:12px;

    letter-spacing:0.3px;

}



    
    
/* =========================
STREAMING SECTION
========================= */

.streaming-section{

    background:#d8d8d8;

    border-bottom:1px solid #c8c8c8;

    color:#111111;

}

/* TITLES */

.section-title{

    font-size:42px;

    margin-bottom:40px;

    text-align:center;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing:1px;

    color:#d62828;

    text-transform:uppercase;

}

/* PLATFORMS */

.platforms{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:20px;

}

    .hero-platforms{

    margin-top:40px;

}

/* BUTTONS */

.platform-button{

   background:#1b1b1b;

    border:1px solid #1b1b1b;

    padding:18px;

    border-radius:16px;

    text-align:center;

    text-decoration:none;

    color:#f2f2f2;

    font-weight:bold;

    letter-spacing:1px;

    transition:0.25s;

}

/* HOVER */

.platform-button:hover{

    background:#ff3b30;

    border-color:#ff3b30;

    transform:translateY(-2px);

}

/* =========================
TRACKLIST
========================= */

.tracklist-section{
    background:#f2f2f2;
    border-bottom:1px solid #dddddd;
    overflow:hidden;
    width:100%;
}

.tracklist-section .section-inner{
    max-width:680px;
    padding:50px 20px;
    box-sizing:border-box;
}

.tracklist-panel{
    width:100%;
    background:#1a1a1a;
    border:1px solid #2e2e2e;
    padding:24px 36px 36px 36px;
    box-sizing:border-box;
}

.tracklist-panel-title{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:54px;
    color:#d62828;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:16px;
    box-sizing:border-box;
    width:100%;
}

.tracklist-line{
    width:100%;
    height:1px;
    background:#3a3a3a;
    margin-bottom:24px;
    display:block;
    box-sizing:border-box;
}

.track-item{
    display:flex;
    flex-direction:row;
    align-items:baseline;
    gap:20px;
    padding:11px 0;
    border-bottom:1px solid #2a2a2a;
    width:100%;
    box-sizing:border-box;
}

.track-item:last-of-type{
    border-bottom:none;
}

.track-number{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:16px;
    color:#666666;
    min-width:22px;
    flex-shrink:0;
    letter-spacing:0.5px;
}

.track-name{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:18px;
    color:#ffffff;
    text-transform:uppercase;
    letter-spacing:1px;
    flex:1;
    min-width:0;
    word-break:break-word;
    overflow-wrap:anywhere;
    line-height:1.4;
}

@media(max-width:600px){

    .tracklist-section .section-inner{
        padding:30px 16px;
    }

    .tracklist-panel{
        padding:28px 20px;
    }

    .tracklist-panel-title{
        font-size:36px;
    }

    .track-name{
        font-size:13px;
    }

    .track-number{
        font-size:12px;
    }

}




/* =========================
GALLERY SECTION
========================= */

.gallery-section{

    background:#111111;

    border-bottom:1px solid #2a2a2a;

}

/* GALLERY TITLE */

.gallery-title{

    font-size:56px;

    text-align:center;

    margin-bottom:50px;

    color:white;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing:1px;

}

/* COLLAGE */

.collage{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:12px;

}

/* IMAGES */

.collage img{

    width:100%;

    height:100%;

    object-fit:cover;

    cursor:pointer;

    transition:0.25s;

    border-radius:10px;

}

.collage img:hover{

    opacity:0.8;

    transform:scale(1.01);

}

/* BIG IMAGE */

.big{

    grid-column:span 2;

}

/* =========================
LIGHTBOX
========================= */

.lightbox{


    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.95);

    display:none;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    z-index:9999;

    padding:20px;

}

/* ACTIVE */

.lightbox.active{

    display:flex;

}

/* IMAGE */

.lightbox img{

    max-width:90%;

    max-height:85vh;

    object-fit:contain;

}

/* CLOSE */

.close-lightbox{

    position:absolute;

    top:20px;

    right:25px;

    font-size:36px;

    color:#ff3b30;

    cursor:pointer;

    font-weight:bold;

}

/* ARROWS */

.arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    font-size:50px;

    color:white;

    cursor:pointer;

    user-select:none;

    padding:20px;

}

.arrow-left{

    left:10px;

}

.arrow-right{

    right:10px;

}

/* =========================
CREDITS SECTION
========================= */

.credits-section{

    background:#f2f2f2;

    color:#111111;

    border-bottom:1px solid #d9d9d9;

}

/* CREDITS */

.credits p{

    margin-bottom:18px;

}

/* SONG CREDITS */

.song-credits{

    line-height:1.45;

    margin-bottom:50px;

}

/* LINKS */

p a{

    color:#111111;

    text-decoration:none;

    border-bottom:1px solid #111111;

    font-weight:bold;

}

/* =========================
CONTACT SECTION
========================= */

.contact-section{

    background:#1a1a1a;

    color:#f2f2f2;

}

/* =========================
FOOTER
========================= */

footer{

    width:100%;

    background:#111111;

    border-top:1px solid #2a2a2a;

}

.footer-inner{

    max-width:1200px;

    margin:auto;

    padding:14px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    font-size:12px;

    letter-spacing:1px;

    color:#999999;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

}

.footer-inner a{

    color:#f2f2f2;

    text-decoration:none;

}

/* FOOTER SOCIALS */

.footer-socials{

    display:flex;

    align-items:center;

    gap:22px;

}

/* ICONS */

.footer-socials img{

    width:28px;

    height:28px;

    object-fit:contain;

    transition:0.2s;

}

/* HOVER */

.footer-socials img:hover{

    opacity:0.7;

    transform:translateY(-2px);

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero-text h1{
        font-size:42px;
    }

    .gallery-title{
        font-size:40px;
    }

}


@media(max-width:600px){

    header{
        padding:10px 14px;
    }

    .header-content{
        gap:10px;
        overflow:hidden;
    }

    .logo{
        font-size:30px;
        line-height:1;
        flex:1;
        min-width:0;
    }

    .desktop-menu{
        display:none;
    }

    .mobile-menu{
        display:flex;
        align-items:center;
        justify-content:center;
        width:32px;
        height:32px;
        font-size:28px;
        flex-shrink:0;
        color:#ffffff;
    }

    .section-inner{
        padding:40px 12px;
    }

    
    .hero{
        grid-template-columns:1fr;
        gap:40px;
        width:100%;
    }

    .hero-text h1{
        font-size:34px;
    }

    .platforms{
        grid-template-columns:1fr;
    }

    .collage{
        grid-template-columns:1fr 1fr;
    }

    .big{
        grid-column:span 2;
    }

    .footer-inner{
        flex-direction:column;
        text-align:center;
    }

}

/* =========================
QUIZ
========================= */

.quiz-app{
    max-width:600px;
    margin:0 auto;
    text-align:center;
    padding:40px 0;
}

.quiz-question{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:32px;
    color:#111111;
    line-height:1.3;
    margin-bottom:30px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.quiz-subtitle{
    color:#444444;
    font-size:16px;
    margin-bottom:40px;
}

.quiz-btn{
    display:block;
    max-width:320px;
    margin:12px auto;
    cursor:pointer;
    background:#1b1b1b;
    color:#f2f2f2;
    border-radius:16px;
    padding:18px;
    text-align:center;
    font-weight:bold;
    letter-spacing:1px;
    border:1px solid #1b1b1b;
    transition:0.25s;
    text-decoration:none;
}

.quiz-btn:hover{
    background:#ff3b30;
    border-color:#ff3b30;
    transform:translateY(-2px);
}

.quiz-result{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:42px;
    color:#d62828;
    text-transform:uppercase;
    letter-spacing:1px;
    margin:20px 0 40px 0;
    line-height:1.2;
}

.history{
    margin-top:30px;
    text-align:left;
}

.history p{
    font-size:14px;
    margin:8px 0;
    border-top:1px solid #dddddd;
    padding-top:10px;
    color:#333333;
}

/* =========================
QUIZ RESULT ACTIONS
========================= */

.quiz-actions{
    max-width:320px;
    margin:20px auto 0 auto;

    display:flex;
    gap:12px;

    align-items:stretch;
}

.quiz-share-btn{
    width:58px;
    min-width:58px;
    aspect-ratio:1 / 1;

    border-radius:16px;
    border:1px solid #111111;

    background:#ffffff;
    color:#111111;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    transition:0.25s;

    font-size:24px;

    padding:0;

    line-height:1;
}

.quiz-share-btn:hover{
    background:#ff3b30;
    border-color:#ff3b30;
    color:#ffffff;
    transform:translateY(-2px);
}

.quiz-restart-btn{
    flex:1;
    margin:0;
}

/* =========================
LYRICS POPUP
========================= */

.lyrics-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    z-index:9000;
}

.lyrics-overlay.active{
    display:block;
}

.lyrics-popup{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    max-width:600px;
    max-height:80vh;
    background:#111111;
    border:1px solid #2a2a2a;
    border-radius:14px;
    padding:40px 36px 36px 36px;
    overflow-y:auto;
    z-index:9001;
    box-sizing:border-box;
}

.lyrics-popup.active{
    display:block;
}

.lyrics-close{
    position:absolute;
    top:16px;
    right:20px;
    font-size:24px;
    color:#ff3b30;
    cursor:pointer;
    font-weight:bold;
    line-height:1;
}

.lyrics-close:hover{
    color:#ffffff;
}

.lyrics-title{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:22px;
    color:#d62828;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:24px;
    padding-right:30px;
    line-height:1.2;
}

.lyrics-body{
    font-family:Helvetica, Arial, sans-serif;
    font-size:16px;
    color:#f2f2f2;
    line-height:2;
    white-space:pre-wrap;
}

/* TRACK ITEM CLICKEABLE */

.track-item{
    cursor:pointer;
}

.track-item:hover .track-name{
    color:#d62828;
}

.track-item:hover .track-number{
    color:#aaaaaa;
}

/* =========================
COPY POPUP
========================= */

.copy-popup{

    position:fixed;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    background:#ff1a1a;

    color:white;

    padding:16px 26px;

    border-radius:14px;

    font-weight:bold;

    font-size:15px;

    opacity:0;

    pointer-events:none;

    transition:0.25s;

    z-index:99999;

    box-shadow:0 10px 30px rgba(0,0,0,0.35);

}

/* SHOW */

.show-popup{

    opacity:1;

    bottom:45px;

}


</style>
