/*------------------------ START STYLE RESET ------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

input,
select,
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
}

ol,
ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

/*------------------------ END STYLE RESET ------------------------*/



/*------------------------ START GLOBALS ------------------------*/

:root {
    /* --bg: #F4F4F4; */
    --bg: #fffef8;
    --fg: #0b0b10;
    --muted: #6d6d76;
    --accent: #6a5cff;
    --border: rgba(0, 0, 0, 0.08);
    /* --radius: 6px; */
}

::selection {
    /* background-color: rgb(3, 10, 104); */
    background-color: var(--fg);
    /* your color */
    color: white;
    /* text color when selected */
}

body {
    margin: 0;
    color: var(--fg);
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-transform: uppercase;
    background-color: var(--bg);
    /* overflow: hidden; */
}

html {
    font-size: 62.5%;
}

section.container {
    width: 100%;
    max-width: none;
    /* padding: 7rem 0; */
    background-color: var(--bg);
}

h1,
h2,
h3,
h4 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ol,
ul,
li {
    list-style: none;
    color: var(--fg);
}

p,
a,
span,
input {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1.1rem;

    color: var(--fg);
}

@media (max-width: 1150px) {

    p,
    a {
        font-size: 0.9rem;
    }
}

/* 
.button-global {

    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    cursor: pointer;


    text-decoration: none;
    color: inherit;


    display: inline-flex;
    align-items: center;

} */

.button-global {
    font-family: "neue-haas-grotesk-display", sans-serif;
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    /* width: 100%; */
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #000;
    color: #000;
    /* margin-top: 9px; */

    margin: 0 0 4px 4px;

    /* font-size: 1rem; */
    transition: .3s;
    border-radius: 2px;

    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
}

.button-global:hover {
    color: #fff;
    background-color: #000;
}

/*------------------------ END GLOBALS ------------------------*/



/*------------------------ START MORE CONTENT BUTTON - GLOBAL ------------------------*/

.more-content-but {
    font-family: "neue-haas-grotesk-display", sans-serif;
    display: inline-block;
    /* overflow-wrap: break-word; */
    /* word-break: break-word; */
    /* text-decoration: none; */

    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;

    margin: 0;
    padding: 4px 8px;

    background-color: var(--fg);
    color: var(--bg);
    border: 1px solid var(--bg);


    /* font-size: 1rem; */
    border-radius: 3px;

    transition: .3s;

    z-index: 600;
}

.more-content-but:hover {
    color: var(--fg);
    border: 1px solid var(--fg);
    background-color: var(--bg);
    border-radius: 2px;
}

#more-content-button-container {
    text-align: center;
    overflow: hidden;
    padding: 10px 0 30px 0;
}

@media (max-width: 1150px) {
    #more-content-button-container {
        margin: 10px 0 0 0;
    }
}

#halftone-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 500;
}



/*------------------------ END MORE CONTENT BUTTON - GLOBAL ------------------------*/


/*------------------------ START LOADER ------------------------*/

#loader {
    position: fixed;
    inset: 0;
    background: var(--fg);
    /* background: #F4F4F4; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;

    /* clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1); */

    clip-path: inset(0 0 0 0);
    /* 👈 fully visible by default — no flash */
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}



#loader-anim {

    /* mix-blend-mode: screen; */

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;

    width: 60px;
    /* filter: saturate(0); */
}

@media (max-width: 900px) {
    #loader-anim {
        width: 50px;
    }
}

/*------------------------ END LOADER ------------------------*/

/* .all-content {
    opacity: 0;
} */

/*------------------------ START HEADER ------------------------*/

header {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 63px;
    /* width: 95%; */
    /*PREVIOUS*/
    width: 900px;
    z-index: 990;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    border-radius: 15px;
    /* border: solid 2px rgba(0, 0, 0, 0.2); */
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); */
    border: solid 1px rgba(70, 70, 70, 0);




    /* filter: invert(1); */

    z-index: 10010;
}

#site-header {

    /* opacity: 0; */
    /* filter: invert(1); */
    /* transition: background-color .3s ease, backdrop-filter .3s ease; */
    transition: .2s ease, width .6s cubic-bezier(0.40, 0.00, 0.20, 1.00);


}

#site-header.intro {
    top: -70px;
    transition: 1s;
}


#site-header.inverted {
    opacity: 1;

    background: rgba(0, 0, 0, 0.7);
    /* background: rgb(18, 31, 171, 0.7); */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    /* border: solid 1px rgba(255, 255, 255, 0.1); */
    border: solid 1px rgba(70, 70, 70, 0.4);

    width: 480px;

    transition: .6s ease;
}

#site-header.invertedMenu {
    opacity: 1;
    width: 600px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;

    border: solid 1px rgba(70, 70, 70, 0);

    opacity: 1 !important;

    transition: 0.6s ease;
}

#site-header.videoPlayer {
    width: 600px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: solid 1px rgba(70, 70, 70, 0);

    opacity: .5;

    transition: 0.6s ease;
}

@media (max-aspect-ratio: 6/8) {
    #site-header.videoPlayer {
        width: 95%;
    }


}

#header-music-page {
    /* filter: invert(1); */
    /* background-color: rgba(0, 0, 0, .8); */
    /* -webkit-backdrop-filter: blur(5%); */
    /* backdrop-filter: blur(3px); */
    /* border-bottom: solid 1px #fff; */
    top: 0;
    transition: 0.5s ease-in-out;
}

header ul {
    display: flex;
    position: absolute;
    /* right: 95px; */
    right: 70px;
    justify-content: center;
    align-items: center;
    /* filter: invert(1); */
}

header ul.header-mail {
    display: flex;
    position: absolute;
    right: 20px;
    justify-content: center;
    align-items: center;
}

@media (max-aspect-ratio: 6/8) {
    header ul.header-mail {
        right: 10px;
    }

    #site-header,
    #site-header.inverted,
    #site-header.invertedMenu {
        width: 95%;
    }
}

@media (max-width: 900px) {

    #site-header,
    #site-header.inverted,
    #site-header.invertedMenu {
        width: 95%;
    }
}


header ul li {
    display: inline-block;
    vertical-align: center;
    line-height: 1;
    padding: 4px 4px;
    opacity: .5;
    transition: opacity 0.3s;
    transform: translate(0);
}

header ul li.icon-header-mail-container {
    opacity: 1;
}

header ul li:hover {
    opacity: 0.7;
    transform: translate(0);
}


.header-soc-icons {
    opacity: 1;
    transition: opacity 0.8s ease;
}


/* .header-soc-icons.visible {
    opacity: 0;
} */


#site-header.invertedMenu .header-soc-icons li {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#site-header:not(.invertedMenu) .header-soc-icons li:nth-child(1) {
    transition-delay: 0.25s;
}

#site-header:not(.invertedMenu) .header-soc-icons li:nth-child(2) {
    transition-delay: 0.2s;
}

#site-header:not(.invertedMenu) .header-soc-icons li:nth-child(3) {
    transition-delay: 0.15s;
}

#site-header:not(.invertedMenu) .header-soc-icons li:nth-child(4) {
    transition-delay: 0.15s;
}

#site-header:not(.invertedMenu) .header-soc-icons li:nth-child(5) {
    transition-delay: 0.1s;
}

#site-header.invertedMenu .header-soc-icons li:nth-child(1) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}

#site-header.invertedMenu .header-soc-icons li:nth-child(2) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.05s;
}

#site-header.invertedMenu .header-soc-icons li:nth-child(3) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.1s;
}

#site-header.invertedMenu .header-soc-icons li:nth-child(4) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.15s;
}

#site-header.invertedMenu .header-soc-icons li:nth-child(5) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.2s;
}

/* -------------------- */

#site-header.inverted .header-soc-icons li:nth-child(1) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}

#site-header.inverted .header-soc-icons li:nth-child(2) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.05s;
}

#site-header.inverted .header-soc-icons li:nth-child(3) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.1s;
}

#site-header.inverted .header-soc-icons li:nth-child(4) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.15s;
}

#site-header.inverted .header-soc-icons li:nth-child(5) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.2s;
}

/* -------------------- */

#site-header.videoPlayer .header-soc-icons li:nth-child(1) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}

#site-header.videoPlayer .header-soc-icons li:nth-child(2) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.05s;
}

#site-header.videoPlayer .header-soc-icons li:nth-child(3) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.1s;
}

#site-header.videoPlayer .header-soc-icons li:nth-child(4) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.15s;
}

#site-header.videoPlayer .header-soc-icons li:nth-child(5) {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.2s;
}



@media (max-aspect-ratio: 9/8) {
    header ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
    }

    #header-music-page ul:not(.header-mail) {
        display: none;
    }
}

/* header .burger-container:first-of-type {
    position: absolute;
    left: 500px;
} */
/* 
header a:last-of-type {
    position: absolute;
    right: 50px;
} */

/* header .burger-container {
    position: fixed;
    top: 50px;
    z-index: 99999;
} */


header img {
    width: 270px;
    /* filter: invert(1); */
}

@media (max-aspect-ratio: 6/8) {
    header img {
        width: 210px;
    }
}

.burger-container {
    /* position: fixed; */
    /* display: flex;
    flex-direction: column; */
    /* top: 17px; */
    /* left: 870px; */



    display: flex;
    position: absolute;
    left: 20px;
    justify-content: center;
    align-items: center;
    top: 52%;
    transform: translateY(-50%);


    z-index: 9999;
    border-radius: 2px;
}

/* #burger-container {
    filter: invert(1);
}

#burger-container.inverted {
    filter: invert(0);
} */

@media (max-aspect-ratio: 6/8) {

    .burger-container {
        left: 15px;

    }

    /* header a:last-of-type {
        right: 10px; */
}

@media (max-aspect-ratio: 6/8) {
    .icon-header-yt {
        width: 500px;
    }
}

.button-music {
    cursor: pointer;
}

/* .music-section {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 999;
    background-color: rgba (rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.music-section.show {
    display: flex;
} */

.logo-div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 30px;
    /* background-color: #000; */
    /* -webkit-backdrop-filter: blur(5px); */
    /* backdrop-filter: blur(5px); */
    border-radius: 2px;
}

.logo {
    -webkit-user-drag: none;

}

/*------------------------ END HEADER ------------------------*/



/*------------------------ START FLOAT MENU ------------------------*/
.menu-float {
    top: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100dvh;
    width: 100%;
    z-index: 10005;
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(4px);
    /* -webkit-backdrop-filter: invert(1); */

}

.menu-float-list {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.float-menu-soc-icons {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.float-menu-soc-icons li {
    padding: 3px;
}

.float-menu-soc-icons li a {
    transition: opacity .3s ease, font-size .3s ease, filter .3s ease;
}

.menu-float.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0;
    padding: 0;
}

.menu-float-list li {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity .3s ease, transform .3s ease;
    /* transition: all 0.3s cubic-bezier(0.86,0.00,0.07,1.00); */
}

.menu-float.show .menu-float-list li {
    opacity: 1;
    transform: scale(1);
}

.menu-float.show .menu-float-list li:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-float.show .menu-float-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-float.show .menu-float-list li:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-float.show .menu-float-list li:nth-child(4) {
    transition-delay: 0.2s;
}

.float-menu-soc-icons li {
    opacity: 0;
    transform: scale(1.2);
    transition: opacity .3s ease-out, transform .3s ease-out;
}

.menu-float.show .float-menu-soc-icons li {
    opacity: 1;
    transform: scale(1);
}

.menu-float.show .float-menu-soc-icons li:nth-child(1) {
    transition-delay: 0.25s;
}

.menu-float.show .float-menu-soc-icons li:nth-child(2) {
    transition-delay: 0.3s;
}

.menu-float.show .float-menu-soc-icons li:nth-child(3) {
    transition-delay: 0.35s;
}

.menu-float.show .float-menu-soc-icons li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-float.show .float-menu-soc-icons li:nth-child(5) {
    transition-delay: 0.45s;
}

.menu-float.hiding .menu-float-list li,
.menu-float.hiding .float-menu-soc-icons li {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.15s ease-in, transform 0.15s ease-in;
}

.menu-float.hiding {
    opacity: 0;
    transition: 0.5s ease;
    transition-delay: 0.2s;

}

.menu-float.hiding .menu-float-list li:nth-child(1) {
    transition-delay: 0s;
}

.menu-float.hiding .menu-float-list li:nth-child(2) {
    transition-delay: 0.05s;
}

.menu-float.hiding .menu-float-list li:nth-child(3) {
    transition-delay: 0.1s;
}

.menu-float.hiding .menu-float-list li:nth-child(4) {
    transition-delay: 0.15s;
}

.menu-float.hiding .float-menu-soc-icons li:nth-child(1) {
    transition-delay: 0.2s;
}

.menu-float.hiding .float-menu-soc-icons li:nth-child(2) {
    transition-delay: 0.25s;
}

.menu-float.hiding .float-menu-soc-icons li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-float.hiding .float-menu-soc-icons li:nth-child(4) {
    transition-delay: 0.35s;
}

.menu-float.hiding .float-menu-soc-icons li:nth-child(5) {
    transition-delay: 0.4s;
}



/* .menu-float:not(.show) .menu-float-list li {
    transition: none;
    transform: scale(0);
    opacity: 0;
} */




.menu-float-list li a {
    color: #fff;
    text-decoration: none;
    /* font-size: 2.5rem; */
    font-size: 2.5rem;
    font-weight: 200;
    position: relative;
    transition: .2s ease;
    display: inline-block;
    padding: 5px;
    opacity: .3;
    transition: opacity .3s ease, font-size .3s ease, filter .3s ease;

    font-family: "Boldonse", system-ui;
}

/* .menu-float-list:hover li a {
    opacity: .4;
    filter: blur(3px);
}

.menu-float-list li a:hover {
    font-size: 45px;
    opacity: 1;
    filter: blur(0px);
} */


.float-menu-lists:hover li a {
    opacity: .1 !important;
    /* filter: blur(3px); */
    /* font-size: 2.7rem !important; */
}

.float-menu-lists li a:hover:not(.float-menu-soc-icons li a) {
    font-size: 3.25rem !important;
    opacity: 1 !important;
    filter: blur(0px);
}

.float-menu-lists .float-menu-soc-icons li a:hover {
    filter: blur(0px);
    opacity: 1 !important;
}

.float-menu-lists a.active {
    font-weight: 700;
    opacity: 1;
}

@media (max-aspect-ratio: 6/8) {
    .menu-float-list li a {
        font-size: 2rem;
        padding: 10px !important;
    }

    .float-menu-lists li a:hover:not(.float-menu-soc-icons li a) {
        font-size: 2.55rem !important;
        opacity: 1 !important;
        filter: blur(0px);
    }

    /* .menu-float-list li a {
        font-size: 9rem;
    
    }
    .menu-float-list {
        width: 100%;
        gap: 20px;
    } */

}



/*.menu-float-list li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform .25s ease-out
}

li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left
}
*/

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 8px 8px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 18px;
    height: 11px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 18px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}


/* Inverted*/
.hamburger-inner.inverted,
.hamburger-inner.inverted::before,
.hamburger-inner.inverted::after {
    background-color: rgb(255, 255, 255);
}



.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -5.5px;
}

.hamburger-inner::after {
    bottom: -5.5px;
}

/*Spin*/
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*------------------------ END FLOAT MENU ------------------------*/













/*------------------------ START HERO VIDEO ------------------------*/
.hero {
    position: fixed;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: visible;
    /* background-color: #000; */

    /* background: rgba(0, 42, 255, 0.075); */
}

#video-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    will-change: transform;
    /* transform: translate3d(0, 0, 0); */


    --parallax: 0px;
    transform: translateY(var(--parallax));

    background:
        linear-gradient(to bottom,
            #000 0%,
            rgba(0, 42, 255, 0.05) 50%,
            #000 100%),
        #000;

}

/* Video background */
.hero-video {
    position: fixed;
    top: 50%;
    left: 50%;
    /* width: 40vw; */
    width: 100vw;
    height: 100vh;
    min-width: 560px;

    object-fit: cover;
    z-index: 1;

    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}


.hero-video.scroll {
    top: 50%;
    left: 50%;

    filter: blur(10px);
    transform: translate(-50%, -100%) scale(0.9);
    opacity: 0;


    transition: transform 2s ease, opacity 1.5s ease, filter 2s ease;
}


@media (max-width: 900px) {
    .hero-video.scroll {

        top: 50%;
        left: 50%;

        filter: blur(10px);
        transform: translate(-50%, -10%) scale(0.9);
        opacity: .5;


        /* transition: transform 4s ease, opacity 4s ease, filter 4s ease; */
        transition: 2s ease;
    }


}

.hero-video-mob {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 560px;

    object-fit: cover;
    z-index: 1;

    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}


@media (max-width: 700px) {
    .hero-video {
        /* min-width: 0;
        height: 100vh;
        position: fixed; */
        display: none;
    }

    .hero-video-mob {
        display: block;
    }
}



.scroll-arrow {
    position: absolute;

    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    text-align: center;
    animation: bounce 3s infinite;
    z-index: 1000;
}

/* Arrow style */
.scroll-arrow svg {
    width: 20px;
    height: 20px;
    fill: #F4F4F4;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(5px);
    }
}



/* ================= DARK BLUE GRADIENT BACKGROUNDS ================= */
#home-page-hero {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0 5vw;
    background: linear-gradient(135deg, #01020a, #0b0b20);
    color: #f8f8fa;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-small,
.hero-title {
    color: #f8f8fa;
}

.hero-img img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    max-height: 450px;
}

.container {
    /* background:
         linear-gradient(to bottom,
             rgba(0, 0, 0, 0) 0%,
             rgba(0, 42, 255, 0.1) 40%,
             rgba(0, 42, 255, 0.075) 80%),
             rgba(0, 0, 0, 1); */
    background: black;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}



/*------------------------ START ALBUM BANNER ------------------------*/

#album-section {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100vw;

    margin-top: 100vh;
    /* padding: 17rem 0 10rem 0; */
    /*padding: 17rem 0 0 0;*/



    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 27%,
            var(--fg) 100%);


    /* BACKDROP MASK ELEMENT */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 27%,
            black 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 27%,
            black 100%); */
}

@media (max-width: 750px) {

    #album-section {
        display: flex;
    }
}

.album-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 13rem; */
    gap: min(13rem, 8vw);
    color: #F4F4F4;

    /* background: transparent; */

    /* background:
         linear-gradient(to bottom,
             rgba(0, 0, 0, 0) 0%,
             rgba(0, 42, 255, 0.1) 40%,
             rgba(0, 42, 255, 0.075) 80%); */

    /* background: linear-gradient(135deg, #01020a, #0b0b20); */
    /* background-color: red; */

    max-width: 1600px;

    z-index: 10;
}

/* @media (max-width: 1350px) {
    .album-banner {
        padding: 17rem 3vw 5rem 3vw;

    }

}

@media (max-width: 1100px) {
    .album-banner {
        padding: 17rem 3vw 5rem 3vw;


    }

} */

.album-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;

    z-index: 5;


}

.album-desc {
    max-height: 8rem;
    overflow: hidden;
    position: relative;
    transition: max-height 1s ease;
    width: 100%;
    max-width: 500px;

    z-index: 20;

    /* background-color: red;    */
}


.album-desc.expanded {
    max-height: 400px;

}

.album-desc p {
    margin: 0;
    line-height: 1.4;
    /* color: rgba(244, 244, 244, 0.3); */
    color: var(--bg);
    opacity: .5;
    /* font-size: 1rem; */

    transition: 1s ease;
}

.album-desc.expanded p {
    max-height: 300px;
    opacity: 1;

}

.read-more {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;

    /* font-size: 1rem; */
}

.read-more:hover {
    text-decoration: underline;
}



#image-wrapper {
    position: relative;
    display: inline-block;

    border-radius: 20px;

    width: 100%;

    z-index: 10;

}

#image-wrapper-2 {
    position: relative;

    background: rgb(6, 6, 74);

    margin-top: 50px;

    background-image: url(/assets/images/cover-arts/adonis-lerel-treat-you-right-COVER-ART.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid;
    border-radius: 10px;

    border-image: linear-gradient(-50deg, rgba(244, 244, 244, 0.15), rgba(244, 244, 244, 0.05), rgba(244, 244, 244, 0.15)) 1;

    /* aspect-ratio: 16 / 9; */
    width: 100%;
    height: 100%;
}




#image-wrapper img {
    display: block;
    width: 100%;
    border-radius: 12px;

    border: 1px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(-50deg, rgba(244, 244, 244, 0.15), rgba(244, 244, 244, 0.05), rgba(244, 244, 244, 0.15)) border-box;


    max-width: 500px;
    position: relative;
    z-index: 20;
}

.image-glow {
    position: absolute;
    /* bottom: -20%; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350vw;
    height: 350vw;

    background: radial-gradient(circle, rgba(4, 0, 255, 0.2) 0%, rgba(255, 0, 0, 0) 30%);

    pointer-events: none;

    z-index: inherit;
}



/* .album-left img {
     width: 100%;
     border-radius: var(--radius);
     max-width: 500px;
 } */



.album-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    z-index: 9999;

}

.album-left h2 {
    margin: 0;
    /* font-size: clamp(2.5rem, 6vw, 4rem); */
    font-size: 2.5rem;
    text-align: start;

    z-index: 20;
}



.album-meta {
    /* font-size: 1rem; */
    /* letter-spacing: 0.25em; */

    z-index: 20;
}

.album-tracklist-meta {
    /* font-size: 1rem; */
    /* letter-spacing: 0.25em; */
    color: #000;

    margin-bottom: 2rem;
}

.pre-track-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.track-row {
    display: grid;
    grid-template-columns: 40px 1fr 20px 60px;
    gap: 1rem;
    padding: 0.6rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* font-size: 1rem; */
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.track-row:hover {
    background: rgba(255, 255, 255, 0.15);
    border: solid 1px #F4F4F4;
    border-radius: 5px;
    transform: scale(1.04);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    /*z-index: 2;*/
}

.track-row span {
    color: #f8f8fa;
}

.play-button {
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 3px 10px;
    color: white;
    border-radius: 2px;
    text-align: center;
    transition: 0.3s ease;
    width: 50px;
}

.play-button:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

@media (max-width: 750px) {
    .album-banner {
        grid-template-columns: 1fr;
        text-align: start;

        padding: 9rem 3vw 5rem 3vw;


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



    }

    #image-wrapper img {
        max-width: none;
    }

    .album-right {
        margin-top: 2rem;

    }

    .album-left h2 {
        font-size: 2rem;
        text-align: start;

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

    }

    .image-glow {
        width: 600vw;
        height: 600vw;
        background: radial-gradient(circle, rgba(4, 0, 255, 0.3) 0%, rgba(255, 0, 0, 0) 30%);

        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #image-wrapper-2 {
        aspect-ratio: 9 / 12;

    }

    .album-desc {
        max-width: none;
    }
}

/*------------------------ END ALBUM BANNER ------------------------*/



/*------------------------ START ALBUM BANNER - DESKTOP ------------------------*/

/* #album-section-desk {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-bottom: 50px;
    margin-top: 100vh;
    background-image: url('/assets/images/alb-desk-2.jpg');
    background-size: cover;
    background-position: center top;
} */


#album-section-desk {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    /* height: auto; */
    min-height: 200px;
    height: auto;
    padding-bottom: 50px;
    margin-top: 100vh;
    overflow: hidden;
    background-color: #000;
}


#album-section-desk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/alb-desk-photo-2.jpg');
    background-size: cover;
    background-position: center top;

    max-width: 2050px;
    margin: 0 auto;
}



.album-banner-desk {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, auto);
    /* max-width: 1600px; */
    z-index: 10;
}


#hello {
    width: clamp(200px, 70%, 1000px);
    aspect-ratio: 1 / 1;
    /* background-color: red; */
    margin: 50px 0 0 150px;
    /* margin: clamp(10px, 5vw, 50px) 0 0 clamp(10px, 15vw, 150px); */
    grid-column: 1;
    grid-row: 1 / 2;
}


.album-left-desk {
    position: relative;
    text-align: left;

    /* padding: 50px 50px 0 150px; */

    margin-top: 50px;

    padding: 0 20px 0 20%;

    color: var(--bg);

    width: 100%;

    z-index: 9999;

    grid-column: 1;
    grid-row: 2 / 4;

}

.album-right-desk {
    position: relative;
    display: flex;
    flex-direction: column;

    /* padding-top: 50%; */

    /* grid-template-columns: 1fr 1fr; */
    gap: 2rem;
    text-align: left;
    color: var(--bg);
    z-index: 9999;

    padding: 50% 45px 0 20px;

    max-width: 800px;


    grid-column: 2;
    grid-row: 1 / 4;
}

@media (max-width: 1000px) {
    .album-left-desk {
        padding: 0 20px 0 10%;

        margin-top: 0;
    }

    #hello {
        margin: 0 0 0 100px;
    }

    .album-right-desk {
        padding: 20% 45px 0 20px;

    }
}

.title {
    grid-column: 1 / -1;

    font-size: 2.5rem;

    margin: 0;
    padding: 0;

    /* font-size: 3rem; */
    /* font-weight: 900; */

    text-align: left;
}

.title-tracklist {
    margin-bottom: 1.5rem;
}


.cols-wrapper {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.col {
    color: var(--bg);
    display: flex;
    flex-direction: column;
    gap: .3rem;

    /* line-height: 1; */
}

.col p {
    color: var(--bg);
    opacity: .6;
}



/* .image-side {
  flex: 1;
  background-image: url('/assets/images/alb-desk-photo.jpg');
  background-size: cover;
  background-position: center;
} */


.tracklist-desk {
    width: 100%;
}

.album-desc-mobile {
    display: none;
}

@media (max-width: 750px) {
    /* #album-section-desk {
        display: none;
    } */


    #album-section-desk {
        position: relative;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        /* width: 100vw; */
        height: 150vh;

        margin-top: 100vh;

        background-image: url('/assets/images/alb-mobile-photo.jpg');
        background-size: cover;
        background-position: center -65px;
    }

    .album-right-desk {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 2rem;

        max-width: 100vw;

        text-align: left;

        color: var(--bg);

        /* margin: 0 15px ; */
        padding: 0 15px;



        z-index: 9999;
    }


    .cols-wrapper {
        display: none;
    }


    .title {

        font-size: 1.8rem;
        left: 0;
    }

    .love {
        width: 100%;
        aspect-ratio: 1 / 1;
        /* background-color: rebeccapurple; */
    }

    .album-desc-mobile {
        display: block;
    }


    .album-right-desk {
        position: relative;

        /* gap: 2rem; */
        gap: 2rem;

        /* padding: 2rem; */

        text-align: left;

        color: var(--bg);

        max-width: 100vw;
        padding: 0 30px;

        margin: 0;


        z-index: 9999;
    }
}



/*------------------------ START MUSIC CARDS ------------------------*/

#sec-music-cards {
    position: relative;

    background-color: var(--bg);

    z-index: 20;
}

.music-cards-container {
    position: relative;
    /* max-width: 1550px; */
    max-width: 2050px;
    margin: 0 auto;

    text-align: center;

    background: transparent;

    z-index: 800;
}

#music-card-grid {
    position: relative;
    /* max-width: 1550px; */
    margin: 0 auto;

    /* background: #F4F4F4; */
    background: transparent;

    /* padding: 50px 30px 0 30px; */
    padding: 50px clamp(5px, 3vw, 30px) 50px clamp(5px, 3vw, 30px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 30px; */
    gap: clamp(10px, 2vw, 30px)
}

#show-more-media-cards-but {
    display: block;

    font-family: "neue-haas-grotesk-display", sans-serif;
    overflow-wrap: break-word;
    word-break: break-word;
    text-decoration: none;

    margin: auto;
    padding: 4px 8px;
    border: 1px solid #000;
    color: #000;
    /* font-size: 1rem; */
    transition: .3s;
    border-radius: 2px;

    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
}

#show-more-media-cards-but:hover {
    color: #fff;
    background-color: #000;
}

.music-cards-container .music-card-video-span {
    grid-column: span 2;
    /* aspect-ratio: 16 / 7.6; */
    /* Span across 2 columns */
    /* height: 50%; */
}

.music-cards-container .music-card-video-span .music-card-image {
    aspect-ratio: 16 / 7.67;
    /* Span across 2 columns */
    /* height: 50%; */
}





/* ----- START SINGLE CARD ----- */
.music-card {
    position: relative;
    text-align: start;
    align-items: start;
    padding: 0;
    margin: 0;
    /* min-width: 1px; */

    z-index: 602;
}


.music-card-lat {
    width: 200px;
}

.music-card-image {
    position: relative;
    overflow: hidden;
    background-position: center center;
    /* border-radius: 20px; */
    -webkit-user-drag: none;
    border-radius: 12px;

    cursor: pointer;


    z-index: 205;

}

.music-card-img {
    width: 100%;
    border-radius: 12px;
    /* filter: brightness(2); */
    /* border-radius: 8px; */
    -webkit-user-drag: none;


    /* transition: filter 0.6s, scale 0.6s, rotate 30s ease; */
    transition: 0.6s ease;

}

.music-card-image:hover .music-card-img {
    filter: brightness(0.8);
    /* scale: 102%; */


    /* scale: 1.3;
    rotate: 1000deg; */
    /* transition: filter 0.6s, scale 1s, rotate 180s; */
}

.music-card-video {
    aspect-ratio: 263 / 125.2;
    /* height: 67.5%; */
    background-color: #000;
    overflow: hidden;

    width: 100%;
    /* ADD */
    height: 100%;
    /* ADD */
    object-fit: cover;
    /* ADD */
}



.music-page-music-card-meta-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-top: 12px;
}

.music-page-music-card-meta-subcontainer-left {
    position: relative;
    width: 100%;

}

.music-page-music-card-meta-subcontainer-right {
    position: relative;
    text-align: end;
    width: 50%;
}

.music-card h4 {
    font-size: 2.5rem;
    font-weight: 700;
    padding-right: 4px;
    line-height: 1.4;
    margin-top: 8px;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;

    text-align: start;
}

.music-card-meta-left-level-2 {
    margin-top: 9px;
}

.music-card-meta-right-level-2 {
    margin-top: 9px;
}

@media (max-width: 700px) {
    .music-card-meta-right-level-2 {
        margin-top: 0;
    }
}

.music-card p {
    /* font-size: 1rem; */
    padding: 0;
    margin-bottom: 4px;
    opacity: .5;
    font-family: "neue-haas-grotesk-display", sans-serif;
}

/* #music-type-player-card {
    display: none;
} */

/* .music-card .explicit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #a9a9a9;
    border-radius: 3px;

} */

.music-card .music-page-music-card-meta-subcontainer-right .explicit-container {
    position: relative;
    display: flex;
    justify-content: end;
}

.music-card h4.explicit {
    padding: 0;
    /* font-size: 1rem; */
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 700;
    background-color: #cbcbcb;
    /* border: 1px solid #000; */
    border-radius: 2px;
    text-align: center;
    width: 15px;
    opacity: .8;
}


.music-card .button-global {
    font-family: "neue-haas-grotesk-display", sans-serif;
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    /* width: 100%; */
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #000;
    color: #000;
    /* margin-top: 9px; */

    margin: 0 0 4px 4px;

    /* font-size: 1rem; */
    transition: .3s;
    border-radius: 2px;

    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
}

.music-card .button-global:hover {
    color: #fff;
    background-color: #000;
}

.music-card-image:hover .play-overlay {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .6s;
    z-index: 210;
    cursor: pointer;
    pointer-events: none;

    display: none;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;

    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.play-btn svg {
    width: 50px;
    /* height: 28px; */
    fill: #fff;
}

/* .play-btn p {
    color: var(--bg);
    font-size: 2rem;
    font-weight: 700;
    opacity: 1;
} */


/* ----- END SINGLE CARD ----- */





@media (max-width: 700px) {
    #music-card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* padding: 0px 5px; */
        /* transform: translate(); */
        gap: 30px 10px;
        padding: 0;
    }
}

/* @media (max-aspect-ratio: 6/8) {
    #music-card-grid {
        grid-template-columns: repeat(2, 1fr);

        padding: 0;
    }
} */

@media (max-width: 1247px) {
    .watch-video-btn {
        /* max-width: 53px; */
    }
}

@media (max-width: 1150px) {
    .music-cards-container {
        display: grid;
        /* grid-template-columns: repeat(4, 1fr); */
        /* padding: 20px 15px; */
        /* transform: translate(); */
        gap: 30px 10px;
    }

    .music-page-music-card-meta-container {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        margin-top: 0;
    }

    .music-page-music-card-meta-subcontainer-left {
        position: relative;
        width: inherit;
    }

    .music-page-music-card-meta-subcontainer-right {
        position: relative;
        text-align: end;
    }

    .music-card h4 {
        font-size: 1.8rem;
        font-weight: 700;
        padding-right: 4px;
    }

    .music-card p {
        /* font-size: .9rem; */
        margin-top: 6px;
        opacity: .5;
    }
}


@media (max-width: 700px) {
    body {
        line-height: 1.5;
    }

    .home-page-latest-release-card {
        display: block;
        width: 100%;
        padding: 0 15px;
        margin-top: 20px;
    }

    .music-cards-container {
        padding: 20px 15px;
    }

    .music-cards-container> :nth-child(1) {
        display: none;
    }


    .music-cards-container> :nth-child(4) {
        grid-row: 1;
        grid-column: 2;
    }

    .music-card h4 {
        font-size: 1.8rem;
        font-weight: 700;
        /* padding-right: 4px; */
        /* padding-top: -1px; */
        transform: translateY(-1px);
    }

    .music-card p {
        /* font-size: 1rem; */
        margin-top: 6px;
        opacity: .5;
    }

    .music-card-image {
        position: relative;
        overflow: hidden;
        background-position: center center;
        /* border-radius: 4%; */
    }

    .music-card-img {
        /* border-radius: 4%; */
        width: 100%;
        transition: .5s;
        /* filter: brightness(2); */
    }

    .music-card .button-global {
        margin: 0 0 0 5px;
        padding: 4px 8px;
        /* padding-bottom: 3px; */
        margin-top: 6px;
        /* font-size: .9rem; */
        border-radius: 2px;
    }

}

/*------------------------ END MUSIC CARDS ------------------------*/



/*------------------------ START AUDIO PLAYER ------------------------*/

#audio-player {
    z-index: 999;
    position: fixed;
    display: flex;
    align-items: center;
    background: rgba(0, 4, 72, 0.5);
    backdrop-filter: blur(12px);
    border: solid 1px rgb(132, 132, 132, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-family: "neue-haas-grotesk-display", sans-serif;
    cursor: pointer;
    overflow: hidden;
    bottom: 50px;
    left: 100px;
    /* left: 50%; */
    /* transform: translate(-50%, 0); */
    width: 260px;
    height: 50px;
    border-radius: 12px;

    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#audio-player.player-hidden {
    opacity: 1;
    pointer-events: none;
    bottom: -55px;
    /* left: -130px; */
}

#audio-player.collapsed {

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

    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translate(0, 0);
    backdrop-filter: blur(12px);

    /* background: rgba(15, 10, 60, 0.6); */

    background: rgba(3, 0, 50, 0.5);

    ;
}

/* Pulse animation for the speaker when playing */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.collapsed .mini-speaker {
    opacity: 1;
    animation: pulse 2s infinite ease-in-out;
    margin: 0;
    padding: 0;
}

.player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px 0 5px;
    transition: opacity 0.3s;
}

.collapsed .player-content {
    opacity: 0;
    pointer-events: none;
}

.mini-speaker {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    /* Let the click go to the main player div */
}

.mini-speaker svg {
    fill: white;
}

.song-name {
    color: #F4F4F4;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timer {
    color: #F4F4F4;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn svg {
    fill: white;
}

.hidden {
    display: none !important;
}


/* @media (max-aspect-ratio: 6 / 8) {
    #audio-player {
        left: 50%;
        transform: translate(-50%, 0);

        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #audio-player.player-hidden {
        transform: translate(-50%, 0);

    }

} */

/*------------------------ END AUDIO PLAYER ------------------------*/






/*------------------------ START FOOTER ------------------------*/

footer {
    position: relative;
    background-color: var(--fg);
}

#footer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: auto;
    background-color: var(--fg);

    /* padding: 15px 30px; */
    padding: 15px clamp(5px, 3vw, 30px);

    margin: 0 auto;
    max-width: 2050px;

    /* margin-top: 20px;
    bottom: 0;
    z-index: 999999999; */
}

#footer-navigation a {
    /* font-size: 1rem; */
}

#footer-left {
    display: flex;
    gap: 20px;
}

#footer-soc-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#footer-links {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

#footer-navigation a,
#footer-navigation p {
    color: var(--bg);
    opacity: 0.5;
    transition: 0.3s ease;
}

#footer-navigation a:hover,
#footer-navigation p:hover {
    opacity: 1;
}

#footer-copyright {
    cursor: default;
    opacity: 0.5 !important;
}

#footer-separator {
    color: var(--bg);
    opacity: 0.5;
}

#sign {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#sign img {
    width: 40px;
    opacity: 0.5;

    transition: 0.3s;
}

#sign img:hover {
    opacity: 1;
}


@media (max-width: 650px) {
    #footer-navigation {
        padding: 15px 15px;
    }

    #footer-navigation a,
    #footer-navigation p {
        font-size: 1rem;
    }


    #footer-left {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    #footer-links {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 3px;
    }

    #footer-soc-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 5px;
    }

    #footer-separator {
        display: none;
    }

}

/*------------------------ END FOOTER ------------------------*/




/*------------------------ START VIDEO PLAYER ------------------------*/

#video-overlay {
    position: fixed;

    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;

    width: min(900px, 100vw - 60px);
    /* width: max(700px, 65vw) */

    /* max-width: 100%; */
    height: auto;
    max-height: 100%;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;

    opacity: 0;
    pointer-events: none;
}

/* Shrunk version */
#video-overlay.shrink {
    width: 400px;
    aspect-ratio: 16 / 9;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    border-radius: 8px;
    cursor: move;
    transform: scale(1);
}

@media (max-width: 700px) {
    #video-overlay {
        width: 90%;
        top: 50%;
    }
}

@media (max-aspect-ratio: 6/8) {
    #video-overlay {
        width: 90%;
        top: 50%;
    }

    #video-overlay.shrink {
        width: 200px;
        aspect-ratio: 16 / 9;
    }
}

#video-container {
    width: 100%;
    height: 100%;
    flex: 1;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

#video-overlay iframe {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    display: block;
    background-color: black;
}

/* BOTTOM video bar */
#video-bar {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: 50px; */
    margin-top: 15px;
    color: white;
    display: flex;
    align-items: start;
    justify-content: space-between;
    text-align: start;
    padding: 0 0;
    box-sizing: border-box;
}

#video-bar-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

}

#video-bar-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

#video-title {
    text-align: start;
    font-size: 2.5rem;
}

#music-type-player-open {
    /* font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1rem; */
    color: var(--bg);
    margin-top: 3px;
    opacity: 0.5;
}

#video-bar button {
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 4px 8px;
    border: 1px solid #fff;
    /* font-size: 1.1rem; */
    transition: .3s;
    border-radius: 2px;
    color: #fff;
    background-color: transparent;
}

#video-bar button:hover {
    background: #F4F4F4;
    color: black;
}

@media (max-width: 1150px) {
    #video-title {
        font-size: 1.8rem;
    }
}

@media (max-aspect-ratio: 6/8) {
    #video-title {
        font-size: 1.8rem;
    }

    #music-type-player-open {
        margin-top: 3px;
    }
}

/* Background dim overlay */
#video-bg-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

#video-bg-overlay.show {
    opacity: 1;
    pointer-events: all;
}

#video-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/*------------------------ END VIDEO PLAYER ------------------------*/



/*------------------------ START EMAIL FORM - FOOTER ------------------------*/


.email-form-fields-footer {
    margin-top: 15px;
}


/* ── Section wrapper ── */

#signup-section {
    position: relative;
    display: flex;
    justify-content: start;
    width: 100vw;

    background-color: var(--fg);

}

.signup-section-container {
    display: flex;
    justify-content: start;
    height: 500px;
    width: 100%;
    margin: 0 auto;
    max-width: 2050px;
    /* padding: 72px 80px; */
    /* gap: 100px; */
    padding: 50px clamp(5px, 3vw, 30px);
}

/* ── Left: form ── */
.form-side {
    /* flex: 1; */
    min-width: 0;
    margin: 4vh 0 0 4vw;
}

.form-headline-cont {
    display: flex;
    align-items: center;
}

.headline {
    color: var(--bg);
    font-size: 3.1rem;
}

.news-ex-nmore {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 1.1rem;
    margin-left: 10px;
    gap: 2px;
}

.news-ex-nmore p {
    color: var(--bg);
}


/* Field row: bottom-border only, input + optional button side by side */
.field-row {
    display: flex;
    align-items: flex-end;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    border-bottom: 1px solid #F4F4F4;

    padding-bottom: 10px;
    margin-bottom: 32px;
}

.field-row input,
.field-row select {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 0;
    text-transform: uppercase;
}

.field-row input::placeholder {
    color: rgba(255, 255, 255, 0.38);
    /* font-style: italic; */
}

/* Select: custom styling */
.field-row select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    text-transform: uppercase;
}

.field-row select.placeholder-state {
    color: rgba(255, 255, 255, 0.38);
    /* font-style: italic; */
}

.field-row select option {
    background: #080808;
    color: #fff;
    font-style: normal;
}

.submit-btn {
    background: var(--bg);
    border: none;
    color: var(--fg);
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    /* font-size: 0.85rem; */
    /* font-weight: 500; */
    /* letter-spacing: 0.28em; */
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 2px;
    /* margin-left: 24px; */
    /* margin-bottom: -10px; */
    /* margin-top: -25px; */

    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.submit-btn:hover {
    opacity: 0.55;
}

/* Legal / disclaimer */
.email-form-legal {
    /* line-height: 1.8; */
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 460px;
    margin-top: 20px;
}

.email-form-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;

    text-decoration: underline;
    /* text-underline-offset: 2px; */
}

.email-form-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Right: photo ── */
.photo-side {
    /* width: 400px; */
    width: 50vw;
    flex-shrink: 0;
}

.photo-frame {
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.photo-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Placeholder shown when image path is not yet set */
.photo-placeholder {
    width: 100%;
    height: 420px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}



/* ── Responsive ── */
@media (max-width: 1150px) {
    .signup-section-container {
        flex-direction: column;
        align-items: center;
        padding: 64px 20px;
        gap: 64px;
    }

    .form-side {
        margin: 0;
    }

    .photo-side {
        width: 100%;
        max-width: 480px;
    }

    .photo-frame img,
    .photo-placeholder {
        height: 320px;
    }

    .field-row input,
    .field-row select {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.9rem;
    }


}

/* @media (max-width: 560px) {
    .signup-section {
        padding: 48px 28px;
        gap: 52px;
    }

    .headline {
        font-size: 1.35rem;
    }
} */

/*------------------------ END EMAIL FORM - FOOTER ------------------------*/

/*------------------------ START EMAIL FORM - FLOAT ------------------------*/

.email-form-float {
    top: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100dvh;
    width: 100vw;
    z-index: 10010;
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(4px);

    transition: opacity .3s ease, visibility .3s ease;
}

.form-side-float {
    padding: 0;
    margin: 0;
}

@media (max-width: 1150px) {
    .form-side-float {
        padding: 0 25px 0 25px;
    }
}

.email-form-float.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.email-form-float .form-side {
    opacity: 0;
    /* transform: scale(0.9); */
    transition: opacity .3s ease, transform .3s ease;
}

.email-form-float.show .form-side {
    opacity: 1;
    transform: scale(1);
    /* transition-delay: 0.1s; */
}

.email-form-float.hiding {
    opacity: 0;
    /* transition: 0.5s ease; */
}

.email-form-float.hiding .form-side {
    opacity: 0;
    /* transform: scale(0.9); */
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}


.email-form-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--bg);
    cursor: pointer;
    z-index: 1;
    opacity: 0.6;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.email-form-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.signup-section-container .email-form-close {
    display: none;
}

@media (max-width: 700px) {
    .email-form-close {
        top: 0;
        right: 20px;
    }
}

/*------------------------ END EMAIL FORM - FLOAT ------------------------*/



/*------------------------ START MUSIC PAGE ------------------------*/

#music-page-album-promo-mob {
    display: none;
    justify-content: center;
    align-items: center;
    /* margin: 150px 0 50px 0; */

    width: 100vw;
    height: auto;
}

@media (max-width: 700px) {
    #music-page-album-promo-mob {
        display: flex;
        padding: 15px;
        margin-top: 90px;
    }

    #music-page-album-promo-desk {
        display: none;
    }
}

#music-page-album-promo-desk {
    position: relative;
    width: 100vw;
    margin-top: 100px;
}

#music-page-album-promo-desk a img {
    width: 100%;
}

/*------------------------ END MUSIC PAGE ------------------------*/



#marginer-video-page {
    /* display: none; */
    position: relative;
    height: 90px;
}





/*------------------------ START COOKIE CONSENT ------------------------*/

.cky-consent-bar {
    font-family: "neue-haas-grotesk-display", sans-serif !important;
    font-size: 1.2rem !important;
    background-color: rgba(255, 254, 248, 0.7);
    backdrop-filter: blur(3px);
    border-radius: 10px !important;
}

/*.cky-consent-container.cky-consent-bar {*/
/*    border-radius: 10px;*/
/*}*/

.cky-preference-center,
.cky-preference-center * {
    background-color: transparent !important;
    
    font-family: "neue-haas-grotesk-display", sans-serif !important;
    font-size: 1.2rem !important;
    /*color: #fffef8 !important;*/
    
}


.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-accept{
    background-color: #0b0b10 !important;
    border-color: #0000 !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
}

.cky-btn.cky-btn-customize {
    color: #0b0b10 !important;
    border-color: #0b0b10 !important;
    border-radius: 3px !important;
    background-color: transparent;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
    
}

.cky-btn.cky-btn-preferences {
    color: #0b0b10 !important;
    border-color: #0b0b10 !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
}

.cky-btn-close {
    transition: 0.3s ease;
}

.cky-btn-close:hover {
    transform: rotate(90deg);
}

.cky-modal {
    /*background-color: transparent !important;*/
    box-shadow: none !important;
}

.cky-notice-des p {
    font-size: 1.1rem !important;
    line-height: 1.8;
}

.cky-consent-bar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

/*.cky-modal.cky-modal-open {*/
/*    text-transform: capitalize !important;*/
/*}*/

.cky-accordion-btn {
    text-transform: uppercase !important;
}

/*.cky-overlay {*/
/*    background-color: rgba(0, 0, 0, 0.9)  !important;*/
/*    backdrop-filter: blur(4px) !important;*/
/*    -webkit-backdrop-filter: blur(4px) !important;*/
/*}*/

[data-cky-tag="powered-by"],
[data-cky-tag="detail-powered-by"] {
    display: none !important;
}

@media (max-width: 700px) {
    .cky-btn.cky-btn-reject,
    .cky-btn.cky-btn-accept,
    .cky-btn.cky-btn-customize,
    .cky-btn.cky-btn-preferences,
    .cky-notice-des p {
        font-size: 0.9rem !important;
    }
    
    .cky-title {
        font-size: 1.1rem !important;
    }
}


/*------------------------ END COOKIE CONSENT ------------------------*/