/* FONTS */

@font-face {
    font-family: 'Titillium';
    font-display: swap;
    src: url(fonts/Titillium.woff2) format('woff2');
}
@font-face {
    font-family: 'TitilliumBold';
    font-display: swap;
    src: url(fonts/Titillium-Bold.woff2) format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-display: swap;
    src: url(fonts/Merriweather.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-Black';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-Black.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-BlackItalic';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-BlackItalic.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-Bold';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-Bold.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-BoldItalic';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-BoldItalic.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-Italic';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-Italic.woff2) format('woff2');
}
@font-face {
    font-family: 'PlayfairDisplay-Regular';
    font-display: swap;
    src: url(fonts/PlayFairDisplay/PlayfairDisplay-Regular.woff2) format('woff2');
}

/* MAIN */

:root {
    --cta-color: #eedf66;
    --color-background: #030619;
    --color-foreground: #EEF2F7;
    --color-accent: #e94e77;
    --color-accent-secondary: #dabf13;
    --color-accent-foreground: #05101E;    
    --color-primary: #0E3A6B;
    --color-primary-foreground: #FFFFFF;
    --color-secondary: #0A2744;
    --color-secondary-foreground: #C8DCEF;
    --color-mv-background: #284566;
    --color-mv-border: #192c45;
    --color-vd-foreground: #8a6548;
    --color-vd-accent: #73a77d;
    --color-vd-border: #cfc5b0;
    --font-heading: "PlayfairDisplay-Black", Georgia, serif;
    --font-subheading: "TitilliumBold", sans-serif;
    --font-sans: "Titillium", sans-serif;
    --font-sans-heading: "Merriweather", Georgia, serif;
    --box-shadow-small-black: 0 0 20px 1px #0a1421;
    --box-shadow-accent: 0 0 20px 1px var(--color-accent);
}
body {
    font-family: var(--font-sans);
    font-size: 1.1em;
    line-height: 1.6;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--color-background);
    color: var(--color-foreground);
}
h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}
#aurora {
    position: fixed;
    right: 0;
    top: 0;
    min-width: 100%;
    width: auto;
    height: calc(100vh - 10%);
    z-index: -100;
    background-size: cover;
    margin: 0 auto;
    object-fit: cover;
    filter: opacity(.5);
}
#overlay {
    position: fixed;
    right: 0;
    top: 0;
    min-width: 100%;
    width: auto;
    height: calc(100vh - 10%);
    z-index: -99;
    background: linear-gradient(180deg, rgb(6 11 35) 0%, rgb(20 27 62 / 50%) 40%, rgb(10 13 32 / 30%) 50%, rgba(32, 37, 62, .3) 60%, rgb(23 29 58 / 50%) 70%, rgb(18 23 46 / 80%) 80%, rgb(9 11 21 / 75%) 90%, rgb(3 6 25) 100%);
    margin: 0 auto;
}
svg[data-ico] {
    height: .7em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}
/* Animations */
@keyframes gradient-pulse {
    0%  { opacity: .85; filter: hue-rotate(0deg)   brightness(1) }
    30% { opacity: 1;   filter: hue-rotate(18deg)  brightness(1.08) }
    60% { opacity: .9;  filter: hue-rotate(-14deg) brightness(.96) }
    to  { opacity: .85; filter: hue-rotate(0deg)   brightness(1) }
}
@keyframes aurora-drift-1 {
    0%  { transform: translate(0) scale(1);          opacity: .7 }
    33% { transform: translate(4%, -3%) scale(1.08); opacity: 1 }
    66% { transform: translate(-3%, 5%) scale(.96);  opacity: .8 }
    to  { transform: translate(0) scale(1);          opacity: .7 }
}
@keyframes aurora-drift-2 {
    0%  { transform: translate(0) scale(1);         opacity: .6 }
    40% { transform: translate(-5%, 4%) scale(1.1); opacity: .9 }
    70% { transform: translate(3%, -2%) scale(.95); opacity: .65 }
    to  { transform: translate(0) scale(1);         opacity: .6 }
}
@keyframes aurora-drift-3 {
    0%  { transform: translate(0) scale(1);         opacity: .5 }
    50% { transform: translate(6%, 3%) scale(1.12); opacity: .85 }
    to  { transform: translate(0) scale(1);         opacity: .5 }
}
@keyframes aurora-drift-4 {
    0%  { transform: scale(1);    opacity: .9 }
    40% { transform: scale(1.05); opacity: 1 }
    70% { transform: scale(.95);  opacity: .9 }
    to  { transform: scale(1);    opacity: .8 }
}
@keyframes aurora-hue-1 {
    0%  { filter: hue-rotate(0deg) }
    30% { filter: hue-rotate(28deg) }
    60% { filter: hue-rotate(-18deg) }
    to  { filter: hue-rotate(0deg) }
}
@keyframes aurora-hue-2 {
    0%  { filter: hue-rotate(0deg) }
    25% { filter: hue-rotate(-30deg) }
    55% { filter: hue-rotate(22deg) }
    80% { filter: hue-rotate(-10deg) }
    to  { filter: hue-rotate(0deg) }
}
@keyframes aurora-hue-3 {
    0%  { filter: hue-rotate(0deg) }
    40% { filter: hue-rotate(20deg) }
    70% { filter: hue-rotate(-24deg) }
    to  { filter: hue-rotate(0deg) }
}
@keyframes border-hue-cycle {
    0%  { filter: hue-rotate(0deg)   brightness(1) }
    25% { filter: hue-rotate(28deg)  brightness(1.12) }
    50% { filter: hue-rotate(-22deg) brightness(.95) }
    75% { filter: hue-rotate(18deg)  brightness(1.08) }
    to  { filter: hue-rotate(0deg)   brightness(1) }
}
.gradient-pulse   { animation: gradient-pulse 22s ease-in-out infinite }
.aurora-1         { animation: aurora-drift-1 18s ease-in-out infinite }
.aurora-2         { animation: aurora-drift-2 24s ease-in-out infinite }
.aurora-3         { animation: aurora-drift-3 20s ease-in-out infinite 4s }
.aurora-4         { animation: aurora-drift-4 20s ease-in-out infinite 4s }
.border-hue-cycle { animation: border-hue-cycle 20s ease-in-out infinite }
.aurora-hue-1     { animation: aurora-hue-1 34s ease-in-out infinite }
.aurora-hue-2     { animation: aurora-hue-2 40s ease-in-out infinite 5s }
.aurora-hue-3     { animation: aurora-hue-3 30s ease-in-out infinite 12s }
/* Scrollbar */
* {
    scrollbar-width: 10px;
    scrollbar-color: var(--color-primary) #05101E;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #05101E;
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c9a227d9;
}
dialog {
    scrollbar-width: thin;
    scrollbar-color: #c9a227d9 #05101E;
}
dialog::-webkit-scrollbar {
    width: 5px
}
dialog::-webkit-scrollbar-track {
    background: #0e3a6b2e;
    border-radius: 3px;
}
dialog::-webkit-scrollbar-thumb {
    background: #c9a2278c;
    border-radius: 3px;
}
dialog::-webkit-scrollbar-thumb:hover {
    background: #c9a227d9;
}

/* HEADER */

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 50px;
    background-image: url(../images/aurora.webm);
}
#logo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center; 
    gap: 15px;  
    font-size: 1.5em;
    font-weight: bold;                     
}
#logo img {
    width: 70px;
    height: 70px;
}
.site-name {
    vertical-align: middle;
    font-family: var(--font-sans-heading);
    font-size: 0.7em;            
}
#language-switcher {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row; 
    height: 35px;           
}
.lang-button {
    background: var(--color-primary-foreground);
    border: 1px solid #52759d;
    padding: 5px 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}     
.lang-button-hr {
    border-radius: 10px 0 0 10px;
} 
.lang-button-en {
    border-radius: 0 10px 10px 0;
}         
.lang-button.active {
    background-color: #52759d;
    color: var(--color-primary-foreground); 
    border-color: #52759d;
    cursor: unset;
}
.lang-button:not(.active):hover {
    background-color: var(--color-accent);
    color: var(--color-foreground);
}
/* Dropdown Menu */
button.pulse {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #52759d;
    border-radius: 10px;
    padding: 10px;
    border: none;
}
button.pulse:hover {
    color: var(--color-foreground);
    background-color: var(--color-accent);
}
button.pulse .fa-solid {
	--fa-style: 900;
	color: var(--color-foreground);
	font-size: 16px;
}
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 9;
}
.dropdown-content {
    position: absolute;
    top: 0;
    right: 15px;
	border-radius: 10px;
	background-color: #52759d;
    min-width: max-content;
    box-shadow: 0 0.125em 0.125em rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
    pointer-events: none;
    font-size: 0.9em;
    z-index: -1;
    display: flex;
    flex-direction: column;
    gap: 15px;  
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 25px;
    padding-left: 19px;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-content i {
    font-size: 20px;
    padding-right: 10px;
}
.dropdown-content a {
    color: var(--color-foreground);
    text-decoration: none;
}
.dropdown-content a:hover,
.dropdown-content a:hover i {
    color: var(--color-accent-secondary);
} 

/* CONTENT */

#content-area {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

/* HERO */

#hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.hero-left {
    width: calc(40% - 20px);
    min-width: 300px;
    img {
        width: 100%;
        height: auto;
    }
}
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(60% - 20px);
    flex: 1;
    align-items: flex-start;
    max-width: 500px;
    min-width: 300px;
}
.main-title {
    font-weight: 900;
    line-height: 0.8;
}
.main-title-1strow  {
    font-family: var(--font-heading);
    font-size: 3.5em;
    color: var(--color-foreground);
}
.main-title-2ndrow {
    font-family: var(--font-heading);
    font-weight: 100;
    color: var(--color-secondary-foreground);
    font-size: 2.5em;
}
.four {
    color: var(--color-accent-secondary);
}
#main-text {
    text-align: left;
    font-size: 1em;       
}
ul.stream {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
ul.stream li {
    list-style: none;
}
ul.stream li a {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    background: #52759d;
    border-radius: 50%;
    font-size: 25px;
    color: #eef2f7;
    transition: .3s;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
ul.stream li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #c9b31b;
    transition: .3s;
    transform: scale(.9);
    z-index: -1;
}
ul.stream li a:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px #c9b31b;
}
ul.stream li a:hover {
    color: #c9b31b;
    box-shadow: 0 0 15px #c9b31b;
    text-shadow: 0 0 5px #c9b31b;
}
.cta-button {
    padding: 15px 25px;
    font-size: 1em;
    font-weight: 900;
    border-radius: 40px;
    font-family: var(--font-sans-heading);
    color: var(--color-accent-foreground);
    background-color: var(--color-accent-secondary);
    cursor: pointer;
    transition: all 0.3s ease-out;
    margin-bottom: 40px;
    margin-top: -20px;
    box-shadow: var(--box-shadow-small-black);
    border: none;
    width: fit-content;
}
.cta-button:hover {
    color: var(--color-primary-foreground);
    background-color: var(--color-accent);
    box-shadow: var(--box-shadow-accent);
}
.cta-button:before {
    content: "\f025";
    font-family: FontAwesome;
    padding-right: 8px;
}
.notification {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
}
.notification-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#notification-soon, #notification-now {
    font-family: var(--font-sans);
    font-size: 0.8em;
    color: #c9b31b;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}
.notification-release {
    color: #c8dcef;
    font-family: var(--font-sans-heading);
    font-size: 1em;
    font-weight: lighter;
}
.notification-release a {
    text-decoration: none;
}
.notification-release a:hover {
    color: var(--color-primary-foreground);
}
.notification-release i {
    padding-left: 10px;
    font-size: 0.7em;
    color: #52759d;
}
.notification img {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    border: 1px solid #0e3a6b;
    box-shadow: 0 0 20px 5px #08213a;
    transform: scale(1) rotate(0);
    transition: all 0.3s ease-in-out 0s;  
}
.notification img:hover {
    transform: scale(1.2) rotate(360deg);
    transition: all 0.3s ease-in-out 0s;  
}

/* ALBUM */

.album-area {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%; 
    max-width: fit-content;     
}
.album {
    width: calc(50% - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 310px;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}
.album-cover-art {
    width: 300px;
    height: auto;
    border-radius: 10px;
    aspect-ratio: 1;
    border: 1px solid; 
}
.album-title-area {
    text-align: center;
}
.album-title {
    font-size: 1.6em;
    font-family: var(--font-sans-heading);       
}
.album-subtitle {
    font-size: 0.9em;
}
.album-description {
    text-align: center;
}
.album-tracklist {
    width: 100%;
}
.album-tracklist-header {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    user-select: none;
}        
.album-tracklist-content {
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;      
}

/* PLAYER */

.playlist {
    width: 100%;
}
.waveform-player {
    padding: 20px 0;
    padding-top: 0;
}
.waveform-player-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.waveform-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}
.waveform-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    align-items: flex-start;
}
.waveform-artwork {
    object-fit: cover;
    border-radius: 4px;
}
.waveform-artwork-details {
    line-height: 0;
}
.waveform-player-inner .waveform-artwork,
.wp-description-artwork {
    width: 130px !important;
    height: 130px !important;
}
.waveform-title {
    font-family: var(--font-sans-heading);
    font-weight: 500;
    font-size: 1.1em;
    overflow: hidden;
    text-align: left;
}
.waveform-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    min-height: 20px;
    justify-content: flex-end;
} 
.waveform-icon-play svg {
    margin-left: 0;
    width: 20px;
    height: 20px;    
}
.prev-button {
    margin-right: -5px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.1s ease-in-out;
}
.next-button {
    margin-left: -5px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.1s ease-in-out;
}
.prev-button:hover, .next-button:hover {
    transform: scale(1.3);
}
.wp-list-container {
    overflow: hidden;
    border: none;
    border-radius: unset;
}
.wp-item {
    position: relative;
    padding: 0;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid;
    cursor: default;
}
.wp-item.opened {
    border-left: 1px solid;
    border-right: 1px solid;
    border-top: 1px solid;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.wp-artwork-container {
    cursor: pointer;   
}
.wp-artwork-hover {
    display: flex !important;
    .wp-waveform-icon {
        display: none;
    }
}  
.wp-chevron {
    display: inline-block;
    transform: rotate(0deg);
    transition: all 300ms ease;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: stretch;
    cursor: pointer; 
}
.fa-rotate-180 {
    transition: all 300ms ease;
    transform: rotate(180deg);
}
.wp-info {
    padding: 15px 0;
    line-height: 1.2;
    cursor: pointer; 
}
.wp-title {
    font-family: var(--font-sans-heading);
    font-size: 1em;
    overflow: hidden;
    text-align: left;
    font-weight: 300;
}
.wp-active, .wp-duration {
    cursor: default;
}
.wp-active .wp-title {
    font-family: var(--font-sans-heading);
    font-weight: 500;
    font-size: 1.1em;
    overflow: hidden;
    text-align: left;    
}
.wp-track-number {
    min-width: 15px;
    font-size: 0.8em;
    text-align: right;
    padding: 15px 0;
    margin-left: 11px;
    cursor: default;
}
.wp-artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.wp-waveform-icon {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    margin-left: auto;
    margin-right: auto;
    filter: opacity(0.9);    
}
.wp-artwork-overlay i {
    color: var(--color-primary-foreground);
    font-size: 14px;
}
.wp-details {
    padding: 15px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-top: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.details-info {
    display: flex;
    column-gap: 20px;
    flex-direction: row;
    row-gap: 15px;
}
.wp-description {
    font-size: 0.9em;
    height: min-content;
}
.wp-play-album {
    line-height: 1;
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 35px;
    margin-top: 10px;
}
.wp-item-buttons {
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;  
    flex-wrap: wrap;  
}
.wp-download-button, .wp-lyrics-button, .wp-play-album-button-play, .wp-play-album-button-shuffle, .wp-play-button {
    border-radius: 5px;
    padding: 7px 15px;
    font-family: var(--font-sans-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
    border: 1px solid;
} 
.wp-download-button:hover, .wp-lyrics-button:hover, .wp-play-album-button-play:hover, .wp-play-album-button-shuffle:hover, .wp-play-button:hover {
    border: 1px solid;
} 
.wp-download-button {
    margin-left: auto;
}
.wp-download-button:before {
    content: "\f019";
    font-family: FontAwesome;
    padding-right: 5px;
} 
.wp-lyrics-button:before {
    content: "\f001";
    font-family: FontAwesome;
    padding-right: 5px;
}
.wp-play-album-button-play:before {
    content: "\f04b";
    font-family: FontAwesome;
    padding-right: 5px;
} 
.wp-play-album-button-shuffle:before {
    content: "\f074";
    font-family: FontAwesome;
    padding-right: 5px;
}
#album-mv-quote-text:before {
    content: "\f10d";
    font-family: FontAwesome;
    padding-right: 5px;
    color: #c8dcef;
}
#album-mv-quote-text:after {
    content: "\f10e";
    font-family: FontAwesome;
    padding-left: 5px;
    color: #c8dcef;
}
#album-vd-quote-text:before {
    content: "\f10d";
    font-family: FontAwesome;
    padding-right: 5px;
    color: #91c89b
}
#album-vd-quote-text:after {
    content: "\f10e";
    font-family: FontAwesome;
    padding-left: 5px;
    color: #91c89b
}
 
/* ALBUM SPECIFIC */

.album-mv {
    background-color: var(--color-mv-background);
    color: var(--color-foreground);
    background-image: url(../images/mv-bckg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    background-blend-mode: color-dodge;
    border: 1px solid #464f7d;
    box-shadow: 0 0 50px 1px #00000045;
    .album-cover-art {
        border-color: var(--color-mv-border);
        box-shadow: 0 0 50px 15px #48abe0;
    }  
    .album-tracklist-header {
        color: var(--color-foreground);
    }     
    svg[data-ico] {
        stroke: var(--color-foreground);
    }    
    .waveform-title {
        color: var(--color-accent-secondary) !important;
    }    
    .waveform-subtitle {
        color: #c8dcef !important;
    }      
    .prev-button, .next-button {
        color: var(--color-accent-secondary);
    }         
    .wp-item {
        border-color: #121f2d;
        background-color: #233a57;
    }
    .wp-item:hover {
        background: rgba(10, 20, 33, 0.43) !important;
    }
    .wp-item.wp-active {
        background-color: #162637;
    }
    .wp-title {
        color: var(--color-foreground);
    }
    .wp-active .wp-title {
        color: var(--color-accent-secondary); 
    }       
    .wp-track-number {
        color: var(--color-secondary-foreground); 
    }
    .wp-artwork-container {
        border: 1px solid #dec57b63;
        border-radius: 4px;
    }    
    .wp-details {
        background-color: #1d2e44;
        color: var(--color-secondary-foreground); 
        border-color: #121f2d;
    } 
    .wp-download-button, .wp-lyrics-button {
        background-color: transparent;
        border-color: #4f7497;
        color: #c8dcef;
    } 
    .wp-play-album-button-shuffle {
        background-color: transparent;
        color: #c9b31b;
        border-color: #c9b31b;
    }       
    .wp-play-button, .wp-play-album-button-play {
        background-color: #c9b31b;
        border-color: #c9b31b;
        color: #162637;
    }
    .wp-download-button:hover, .wp-lyrics-button:hover, .wp-play-album-button-shuffle:hover, .wp-play-button:hover, .wp-play-album-button-play:hover {
        background-color: #e94e77;
        color: #ffffff;
        box-shadow: 0 0 15px 1px #e94e778f;
        border-color: var(--color-accent);
    }      
    .album-mv-quote {
        border: 1px solid #375981;
        background-color: rgba(32, 37, 62, .5);
        border-radius: 8px;
        width: auto;
        padding: 20px 30px;
        line-height: 1.6;
        margin-top: 30px;
        text-align: center;
    }
    #album-mv-quote-title {
        font-family: var(--font-sans-heading);
        font-size: 1.3em;  
        color: var(--cta-color);
        padding-bottom: 3px;
    }
    #album-mv-quote-text {
        color: var(--color-foreground);
    }
    #album-mv-quote-subtitle {
        font-variant-caps: all-small-caps;
        color: var(--color-accent-secondary); 
        font-family: var(--font-sans-heading);
        font-weight: 600;
        font-size: 0.9em;    
        padding-top: 10px;    
    }
}
.album-vd {
    background-color: #fafbf5;
    color: var(--color-vd-foreground);
    background-image: url(../images/vd-bckg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    background-blend-mode: multiply;
    border: 1px solid #f8f8e7;
    box-shadow: 0 0 50px 1px #00000045;
    .album-cover-art {
        border: var(--color-vd-border);
        box-shadow: 0 0 50px 15px #bca594;
    }     
    .album-tracklist-header {
        color: var(--color-vd-foreground);
    } 
    svg[data-ico] {
        stroke: var(--color-vd-foreground);
    }        
    .waveform-title {
        color: var(--color-vd-accent) !important;
    }    
    .waveform-subtitle {
        color: #8a6548 !important;
    }        
    .prev-button, .next-button {
        color: var(--color-vd-accent);
    }          
    .wp-item {
        border-color: #e1ddd8; 
        background-color: #f2efeb;
    }
    .wp-item:hover {
        background: rgba(194, 186, 176, 0.43) !important;
    }
    .wp-item.wp-active {
        background: #c8c1b38c !important
    }    
    .wp-title {
        color: var(--color-vd-foreground);
    }
    .wp-active .wp-title {
        color: var(--color-vd-accent);
    }       
    .wp-track-number {
        color: var(--color-vd-foreground);
    }
    .wp-artwork-container {
        border: 1px solid #8a654838;
        border-radius: 4px;
    }        
    .wp-details {
        background-color: #fffdfa;;
        color: var(--color-vd-foreground);
        border-color: #e1ddd8;; 
    }
    .waveform-time {
        color: var(--color-vd-foreground) !important;
    }
    .wp-download-button, .wp-lyrics-button {
        background-color: transparent;
        border-color: #8a6548;
        color: #8a6548;
    }   
    .wp-play-album-button-shuffle {
        background-color: transparent;
        color: var(--color-vd-accent);
        border-color: var(--color-vd-accent);
    }       
    .wp-play-button, .wp-play-album-button-play {
        background-color: var(--color-vd-accent);
        color: var(--color-foreground);
        border-color: var(--color-vd-accent);
    }
    .wp-download-button:hover, .wp-lyrics-button:hover, .wp-play-album-button-play:hover, .wp-play-album-button-shuffle:hover, .wp-play-button:hover {
        background-color: #e94e77;
        color: #ffffff;
        box-shadow: 0 0 15px 1px #e94e778f;
        border-color: var(--color-accent);
    }
    .album-vd-quote {
        border: 1px solid var(--color-vd-border);
        background-color: #ffffff;
        border-radius: 8px;
        width: auto;
        padding: 20px 30px;
        line-height: 1.6;
        margin-top: 30px;
        text-align: center;
    }
    #album-vd-quote-title {
        font-family: var(--font-sans-heading);
        font-size: 1.3em;  
        color: var(--cta-color);
        padding-bottom: 3px;
    }
    #album-vd-quote-text {
        color: #2f2f2f;
    }
    #album-vd-quote-subtitle {
        font-variant-caps: all-small-caps;
        color: var(--color-vd-accent);
        font-family: var(--font-sans-heading);
        font-weight: 600;
        font-size: 0.9em;  
        padding-top: 10px;        
    }  
}

/* ABOUT */

.about-area {
    margin-bottom: 30px;
    border: 1px solid #21364f;
    background-color: #061629;
    border-radius: 8px;
    width: auto;
    padding: 20px 30px;
    margin: 40px;
    line-height: 1.6;
    box-shadow: 0 0 50px 1px #213b59;
    text-align: center;
}
.about-title {
    font-family: var(--font-heading);
    font-size: 1.2em;  
    color: var(--color-accent-secondary);
    padding-bottom: 3px;
}
.about-text {
    font-size: 1em; 
    font-style: italic;
    color: #b0cede;
}
.about-subtitle {
    font-size: 1.1em; 
    font-variant-caps: all-small-caps;
    color: var(--color-foreground);
    letter-spacing: 0.2rem;
    margin-top: 5px;
}

/* FOOTER */

#footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.footer-links a {
    color: var(--color-secondary-foreground);
}
.footer-links a:hover {
    text-decoration: underline;
    color: var(--color-foreground)
}
#footer .cross {
    color: #b5a122;
}
.attr-suno {
    color: #f36d13;
    background-color: #562504;
    padding: 2px 11px;
    border-radius: 20px;
    border: 1px solid #b54e09;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 0.8em;
}
.attr-suno img {
    height: 13px;
    padding-right: 9px;
    margin-top: -4px;
}
.link-suno {
    text-decoration: none;
    margin-top: 25px;
}

/* DIVIDERS */

.divider-cross {
    width: 150px;
    height: auto;
    filter: opacity(0.6);
    padding-bottom: 10px;
}
.divider-leaves {
    filter: opacity(0.8);
    padding-bottom: 5px;
    width: 240px;
    height: auto;
}
.divider-elegant {
    padding-bottom: 8px;
}

/* DIALOGS */

dialog {
    border: none;
    outline: none;
    padding: 0;
    border-radius: 10px;    
    box-shadow: 0 0 60px 3px #6388ac;
    color: var(--color-foreground);   
}
dialog button {
    padding: 5px;
    margin: 0;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 17px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-foreground); 
}
dialog button:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-foreground);
}
/* Lightbox Dialog */
.lightbox {
    cursor: pointer;
}
dialog#lightbox-dialog {
    background-color: transparent;
    line-height: 0.8;
}
dialog#lightbox-dialog img {
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
}
/* Lyrics Dialog */
dialog#lyrics-dialog {
    padding: 30px;
    background-color: #0A2744;
    width: 480px;
    max-height: 550px;
    overflow: auto;
    h2.lyrics-title {
        color: var(--color-accent-secondary);
        line-height: 1.2em;
        font-family: var(--font-sans-heading);
        margin-bottom: 5px;
        margin-top: -80px;
    }
    p.lyrics-subtitle {
        margin-bottom: 20px;
        font-weight: 900;
        color: var(--color-primary-foreground);
    }
    span.chorus {
        color: var(--color-accent-secondary);
        font-family: var(--font-sans-heading);
    }
    span.attribution {
        color: var(--color-secondary-foreground);
        font-style: italic;
        font-size: 0.9em;
    }    
    .lyrics-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: sticky;
        top: 0;
        left: 450px;
        width: min-content;
    }
    button {
        position: unset;
        top: unset;
        right: unset;
    }
    button.lyrics-copy {
        color: var(--color-primary);
        background-color: var(--color-secondary-foreground);
    }
    button.lyrics-copy:hover {
        background-color: var(--color-accent);
        color: var(--color-primary-foreground);
    }
    button.lyrics-copy.active {
        background-color: rgb(88, 200, 88);
        color: #EEF2F7;
    }    
    #lyrics-container {
        padding-right: 40px;
    }
}
/* About Dialog */
dialog#about-dialog {
    padding: 30px;
    background-color: #08213a;
    width: 480px;
    max-height: 550px;
    overflow: auto;
    button {
        position: sticky;
        top: 0;
        left: 450px;
    }
    .about-area {
        margin-top: 25px;
        margin-bottom: 35px;
        margin-left: 0;
        margin-right: 0;
        background-color: #05162d;
        box-shadow: none;
        border-color: #0d355c;
    }
    .about-title {
        font-size: 1.2em;
    }    
    .about-text {
        font-size: 0.9em;
    }
    .about-subtitle {
        font-size: 1em;
    } 
    .about-divider {
        width: 100%;
        text-align: center;
        margin-top: -20px;       
    }
    .about-divider-bottom {
        width: 100%;
        text-align: center;
        margin-top: 0;       
    }    
    .divider-cross {
        width: 150px;
        height: auto;
        filter: opacity(0.6);
        padding-bottom: 0;
    }    
    .about-privacy {
        padding-right: 35px;
    }
    .privacy-block {
        border-left: 3px solid #837418;
        padding-left: 20px;
        margin-bottom: 30px;
    }
    h2 {
        color: var(--color-accent-secondary);
        font-family: var(--font-sans-heading);
        margin-bottom: 20px;
        font-size: 1.1em;
    }
    h3.about-pl-title {
        color: var(--color-secondary-foreground);
        font-family: var(--font-sans);
        margin-bottom: 10px;
        font-size: 1em;
        line-height: 1;
    }    
    p.about-pl-text {
        font-size: 0.9em;
        line-height: 1.7;
    }
}
/* Contact Dialog */
dialog#kontakt-dialog {
    padding: 30px;
    background-color: #08213a;
    width: 300px;
    max-height: 550px;
    overflow: auto;
    button {
        position: sticky;
        top: 0;
        left: 298px;
    }
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .form-row {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    #form-name .form-row, #form-email .form-row {
        justify-content: space-between;
    }
    .form-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }   
    input[type="text"], textarea {
        border-radius: 5px;
        padding: 7px;
        font-size: 0.8em;
        background-color: var(--color-secondary-foreground);
        border: 1px solid #2f7cd2;
        flex: 2;
    }
    input[type="text"].error, textarea.error {
        border: 1px solid var(--color-accent);
        background-color: #eecbd4;
    } 
    input[type="text"]:hover, textarea:hover {
        border: 1px solid var(--color-accent-secondary);
    }       
    .valid {
        border: 1px solid #88fa68 !important;
        background-color:#fafaf2 !important;
    }
    input[type="text"] {
        padding: 8px 7px;
    }    
    input[type="submit"] {
        border-radius: 5px;
        padding: 10px;
        font-size: 0.8em;
        width: fit-content;
        cursor: pointer;
        background-color: var(--color-accent-secondary);
        border: 1px solid var(--color-accent-secondary);
    }
    input[type="submit"]:hover {    
        background-color: #e94e77;
        color: #ffffff;
        box-shadow: 0 0 15px 1px #e94e778f;
        border-color: var(--color-accent);
    }
    input[type="submit"].inactive:hover {    
        background-color: var(--color-accent-secondary) !important;
        border: 1px solid var(--color-accent-secondary) !important;
        box-shadow: none !important;
        color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3)) !important;
        cursor: not-allowed;
    }    
    textarea {
        height: 100px;
        font-size: 0.9em;
        flex: unset;
    }
    #form-consent {
        align-items: flex-start;
        flex-direction: row;
    }
    #contact-validation-message-required, #contact-validation-message-short {
        margin-left: auto;
    }
    h2 {
        color: var(--color-accent-secondary);
        font-family: var(--font-sans-heading);
        font-size: 1.8em;
        margin-top: -46px;
    }
    h3 {
        color: var(--color-secondary-foreground);
        font-family: var(--font-sans);
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    label {
        color: var(--color-foreground);
        font-size: 0.8em;
        font-weight: 700;
        flex: 1;
    }
    .info {
        color: var(--color-accent);
        border-radius: 3px;
        font-weight: 600;
        font-size: 0.8em;
        display: none;
    }   
    .success {
        color: var(--color-foreground);
        background-color: var(--color-vd-accent);
        border-radius: 3px;
        padding: 3px 10px;
        font-weight: 600;
        font-size: 0.8em;
        display: none;
        margin-top: 15px;
    }
}
/* Dialog Animation */
dialog[open]::backdrop {
    background: linear-gradient(-45deg, rgb(207 197 176 / 74%) 0%, #0e3a6b78 50%, rgb(14 58 107 / 16%) 100%);
    backdrop-filter: blur(5px);
}
body:has(dialog[open]) {
    overflow: hidden;
}
dialog:open {
    opacity: 1;
    transform: scaleY(1);
}
dialog {
    opacity: 0;
    transform: scaleY(0);
    transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    overlay 0.3s ease-out allow-discrete,
    display 0.3s ease-out allow-discrete;
}
@starting-style {
    dialog:open {
        opacity: 0;
        transform: scaleY(0);
    }
}
dialog::backdrop {
    background-color: transparent;
    transition:
    display 0.3s allow-discrete,
    overlay 0.3s allow-discrete,
    background-color 0.3s;
}
dialog:open::backdrop {
    background-color: rgb(0 0 0 / 25%);
}
@starting-style {
    dialog:open::backdrop {
        background-color: transparent;
    }
}
:focus:not(.focus-visible) {
    outline: 0;
}

/* MEDIA */

@media (max-width: 480px) {
    .album-area {
        gap: 40px;  
    }    
    .album {
        padding: 20px;
        width: unset;
    }
    .site-name, video, #overlay {
        display: none;
    }
    #hero {
        max-width: unset;
    }  
    .details-info {
        flex-wrap: wrap;
    }  
    .wp-details {
        align-items: flex-start;
    }
    #lyrics-dialog, #about-dialog, #kontakt-dialog {
        max-width: calc(100vw - 90px);
        max-height: calc(100vh - 90px);
    }
    .wp-download-button {
        margin-left: 0;
    }
    .waveform-player-inner .waveform-artwork {
        display: none;
    }
    .wp-artwork-container, .wp-waveform-icon, .wp-artwork-overlay {
        width: 32px;
        height: 32px;
    }
}

/* Low resolution Tablets and iPads */
@media (min-width: 481px) and (max-width: 767px) {
    .album {
        padding: 20px;
        width: unset;
    }
}

/* Tablets iPads (Portrait) */
@media (min-width: 768px) and (max-width: 1024px){
    .album {
        padding: 20px;
        width: unset;
    }
}

@media(prefers-reduced-motion:reduce) {
    .aurora-1, .aurora-2, .aurora-3, .border-hue-cycle, .aurora-hue-1, .aurora-hue-2, .aurora-hue-3 {
        animation: none;
    }
}