/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
   * colors
   */

    --raw-seinna: hsl(24, 74%, 58%);
    --sizzling-sunrise: hsl(51, 95%, 54%);
    --scarlet: hsl(13, 96%, 47%);
    --black: hsl(0, 0%, 0%);
    --white: hsl(0, 0%, 100%);

    /**
   * typography
   */

    --ff-saira-stencil-one: "Saira Stencil One", sans-serif;
    --ff-poppins: 'Poppins', sans-serif;
    --ff-roboto: 'Roboto', sans-serif;

    --fs-1: 2rem;
    --fs-2: calc(1.813rem + 1vw);
    --fs-3: calc(1.313rem + 1vw);
    --fs-4: 1.4rem;
    --fs-5: 1rem;
    --fs-6: 0.813rem;
    --fs-7: 0.75rem;
    --fs-8: 1rem;

    --fw-400: 400;
    --fw-700: 700;

    /**
   * transition
   */

    --transition-1: 0.25s ease-in-out;

    /**
   * spacing
   */

    --section-padding: 80px;

    /**
   * radius
   */

    --radius-4: 4px;
    --radius-12: 12px;

}





/*-----------------------------------*\
 * #THEME COLORS
\*-----------------------------------*/

body.dark_theme {

    --bg-primary: hsl(0, 0%, 12%);
    --bg-secondary: hsl(0, 0%, 19%);
    --color-primary: hsl(0, 0%, 100%);
    --color-secondary: hsl(0, 0%, 62%);
    --card-shadow: hsla(0, 0%, 0%, 0.4);
    --input-bg: hsl(0, 0%, 16%);

    --shadow-1: 10px 10px 40px var(--card-shadow);
    --black: #282b2b;
    --light: #404242;
    --dark: #070808;
    --blue: hsl(24, 74%, 58%);

}

body.light_theme {

    --bg-primary: hsl(0, 0%, 90%);
    --bg-secondary: hsl(0, 0%, 100%);
    --color-primary: hsl(0, 0%, 12%);
    --color-secondary: hsl(0, 0%, 37%);
    --card-shadow: hsla(0, 0%, 0%, 0.1);
    --input-bg: hsl(0, 0%, 93%);

    --shadow-1: 10px 10px 40px var(--card-shadow);
    --black: #a0a1a1;
    --light: #b7c1c1;
    --dark: #786868;
    --blue: hsl(24, 74%, 58%);

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
img,
time,
span,
input,
label,
select,
button,
textarea,
ion-icon {
    display: block;
}

input,
button,
select,
textarea {
    background: none;
    border: none;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

ion-icon {
    pointer-events: none;
}

:is(a, button, select) {
    outline-color: var(--scarlet);
    outline-offset: 3px;
}

::selection {
    background: var(--color-primary);
    color: var(--bg-primary);
}

html {
    font-family: var(--ff-roboto);
    overflow: hidden;
}

body {
    background: var(--bg-primary);
    transition: var(--transition-1);
}

body.active {
    overflow: hidden;
}





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 10px;
}

.h1 {
    font-size: var(--fs-1);
    line-height: 1.2;
    font-weight: 400;
}

.h2,
.h3,
.h4 {
    color: var(--color-primary);
    font-family: var(--ff-poppins);
    line-height: 1.2;
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
}

.h4 {
    font-size: var(--fs-5);
}

.w-100 {
    width: 100%;
}

.btn {
    max-width: max-content;
    color: var(--color-primary);
    font-weight: var(--fw-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 25px;
    border: 1px solid transparent;
    border-radius: var(--radius-4);
    transition: var(--transition-1);
}

.btn-primary {
    border-color: var(--color-primary);
}

.btn-primary:is(:hover, :focus) {
    background: var(--color-primary);
    color: var(--bg-primary);
}

.btn-secondary {
    background: var(--raw-seinna);
    border-color: var(--raw-seinna);
    color: var(--black);
}

.btn-secondary:is(:hover, :focus) {
    --raw-seinna: hsl(24, 74%, 64%);
}

.section-subtitle {
    position: relative;
    color: var(--color-secondary);
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.section-subtitle::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

.section-title {
    max-width: 350px;
    margin-bottom: 30px;
}

.section-text {
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.tooltip {
    position: absolute;
    top: -40px;
    background: var(--raw-seinna);
    min-width: max-content;
    color: var(--white);
    font-size: 15px;
    font-weight: var(--fw-700);
    padding: 5px 10px;
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
    z-index: 1;
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
    padding-block: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition-1);
    z-index: 4;
}

.header.active {
    padding-block: 12px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo {
    position: relative;
    min-width: 77px;
    z-index: 2;
}

.logo a {
    color: var(--color-primary);
    font-family: var(--ff-saira-stencil-one);
}

.logo span {
    display: inline-block;
    color: var(--raw-seinna);
    margin-left: 2px;
    font-size: 15px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.navbar-actions select {
    color: var(--color-primary);
    width: 45px;
}

.navbar-actions option {
    background: var(--bg-primary);
    color: var(--color-primary);
}

.navbar-list-a {
    margin-top: 50px;
}

.theme-btn {
    padding: 4px;
    width: 48px;
    background: var(--bg-secondary);
    border-radius: 100px;
    transition: var(--transition-1);
}

.header.active .theme-btn {
    background: var(--bg-primary);
}

.theme-btn .icon {
    position: relative;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    box-shadow: inset 9px -6px var(--color-primary);
    transition: var(--transition-1);
}

.theme-btn.active .icon {
    left: 20px;
    box-shadow: inset 20px -20px var(--sizzling-sunrise);
}

.nav-toggle-btn {
    position: relative;
    transform: rotate(-55deg);
    transition: var(--transition-1);
    z-index: 2;
}

.nav-toggle-btn.active {
    transform: rotate(-45deg);
}

.nav-toggle-btn span {
    width: 20px;
    height: 5px;
    background: var(--color-primary);
    margin: 5px;
    transition: var(--transition-1);
}

.nav-toggle-btn :is(.one, .three) {
    width: 10px;
}

.nav-toggle-btn .one {
    margin-left: auto;
    transform-origin: left;
}

.nav-toggle-btn .three {
    transform-origin: right;
}

.nav-toggle-btn.active .one {
    transform: rotate(90deg) translateX(-3px);
}

.nav-toggle-btn.active .three {
    transform: rotate(90deg) translateX(3px);
}

.navbar {
    position: fixed;
    background: var(--bg-secondary);
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    visibility: hidden;
    transition: 0.75s cubic-bezier(0.71, 0.01, 0.24, 0.99);
    transition-delay: 0.5s;
    z-index: 1;
}

.navbar.active {
    top: 0;
    visibility: visible;
    transition-delay: 0s;
    overflow: scroll;
}

.navbar-list>li {
    margin-block: 20px;
    padding-inline: 50px;
    overflow: hidden;
}

.navbar-link {
    position: relative;
    width: max-content;
    margin-inline: auto;
    color: var(--color-primary);
    font-family: var(--ff-poppins);
    font-size: var(--fs-4);
    padding: 15px;
    transform: translateY(50px);
    transition: 0.75s cubic-bezier(0.68, -0.55, 0.27, 2);
}

.navbar.active .navbar-link {
    transform: translateY(0);
    transition-delay: 0.5s;
}

.navbar-link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 5px;
    width: 0;
    background: var(--raw-seinna);
    transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus)::before {
    width: 100%;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

main {
    overflow-x: hidden;
}



/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition-1);
    z-index: 2;
}

.go-top.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}





/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {

    .container {
        max-width: 550px;
        margin-inline: auto;
    }


}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

    .container {
        max-width: 720px;
    }

    .section-title {
        max-width: 430px;
    }
    
    .paket-content {
        margin-bottom: 0;
    }

    toggle-btn.active {
        width: 70px;
    }
   

}


/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

    /**
   * CUSTOM PROPERTY
   */

    :root {

        /**
     * typography
     */

        --fs-2: 3rem;

        /**
     * spacing
     */

        --section-padding: 100px;

    }



    /**
   * REUSED STYLE
   */

    .container {
        max-width: 980px;
    }

    .section-content {
        position: relative;
        padding-left: 40px;
    }

    .section-subtitle {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(0.75turn) translateX(-100%);
        transform-origin: left top;
        margin-bottom: 0;
    }

    .section-subtitle::after {
        top: 8px;
        left: auto;
        right: calc(100% + 20px);
    }



    /**
   * HEADER
   */

    .header {
        padding-block: 15px;
    }

    .header.active {
        padding-block: 15px;
    }

    .navbar-actions {
        order: 1;
        margin-left: 0;
    }

    .nav-toggle-btn {
        display: none;
    }

    .navbar {
        all: unset;
    }

    .navbar-link {
        transform: translateY(0);
        font-size: unset;
        padding-inline: 5px;
    }

    .navbar-list>li {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .navbar-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navbar-link::before {
        height: 2px;
    }




    /**
 * responsive for larger than 1200px screen
 */

    @media (min-width: 1200px) {

        /**
   * REUSED STYLE
   */

        .container {
            max-width: 1150px;
        }

        .section-title {
            max-width: 460px;
        }




        /**
   * HERO
   */

        .hero-social-list {
            left: -80px;
        }

        .scroll-down {
            right: -80px;
        }




        /**
   * ABOUT
   */

        .about-banner {
            max-width: 450px;
        }

    }
}

.audio-container {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    height: 100vh;
    padding-top: 1rem;
}

.player {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrappers {
    position: relative;
    z-index: 2;
    padding: 0.8rem;
}

.details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.song {
    width: 200px;
    height: 200px;
    box-shadow: -9px -9px 8px var(--light) inset, 7px 7px 8px var(--dark) inset;
    border-radius: 50%;
    margin: 40px auto 20px auto;
    position: relative;
}

.track-art {
    width: 164px;
    height: 164px;
    border-radius: 50%;
    margin: 20px 20px;
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.circle {
    width: 175px;
    height: 175px;
    border: 3px solid var(--blue);
    box-shadow: -1px -1px 5px #fe835a, 1px 1px 5px #fe835a;
    border-radius: 50%;
    margin: 40px auto 0 auto;
    position: absolute;
    top: -25px;
    left: 14px;
}


.now-playing {
    font-size: 1rem;
    color: #fff;
}

.track-name {
    font-size: 1.6rem;
    margin-top: 2rem;
    color: #fff;
}

.track-artist {
    margin-top: 5px;
    font-size: 1rem;
    color: #fff;
}


.buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    justify-content: space-between;
    padding: 0.3rem 2rem;
}

.active {
    color: var(--color-primary);
}

.repeat-track,
.lyric-track,
.prev-track,
.next-track {
    padding: 10px 15px;
    opacity: 0.8;
    transition: opacity .2s;
    box-shadow: -3px -3px 8px var(--light), 2px 2px 8px var(--dark);
}

.playpause-track {
    padding: 15px;
    opacity: 0.8;
    transition: opacity .2s;
    box-shadow: -3px -3px 8px var(--light), 2px 2px 8px var(--dark);
    border-radius: 50%;
}

.repeat-track:hover,
.lyric-track:hover,
.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
    opacity: 1.0;
}

.slides {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.slider_container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.seek_slider,
.volume_slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: var(--color-primary);
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: rgb(190, 214, 4);
    border: 5px solid #4286f4;
    cursor: grab;
    border-radius: 100%;
}

.seek_slider:hover,
.volume_slider:hover {
    opacity: 1.0;
}

.seek_slider {
    width: 60%;
}

.volume_slider {
    width: 30%;
}

.current-time,
.total-duration {
    padding: 10px;
}

input[type="range"] {
    width: 100%;
    height: 0.4rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--black);
    cursor: grab;
    transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

i.fa-volume-down,
i.fa-volume-up {
    padding: 10px;
    color: #fff;
}

i,
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
    cursor: pointer;
    color: #fff;
}
p {
    cursor: pointer;
    color: var(--color-primary);
}

i.fa-list {
    color: var(--color-primary);
}

.randomActive {
    color: #f46f2d;
    font-weight: 500;
    animation: pulse 900ms ease-in-out infinite alternate;
}

.repeatActive {
    box-shadow: -2px -2px 3px var(--light) inset, 2px 2px 5px var(--dark) inset;
}

.rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes pulse {
    from {
      transform: scale(0.75);
      opacity: 0.6;
    }
    to {
      transform: scale(1.4);
      opacity: 1;
    }
  }


.loader {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .stroke {
    background: #f1f1f1;
    height: 150%;
    width: 10px;
    border-radius: 50px;
    margin: 0 5px;
    animation: animate 1.4s linear infinite;
}

@keyframes animate {
    50% {
        height: 20%;
        background: #4286f4;
    }

    100% {
        background: #4286f4;
        height: 100%;
    }
}

 
.stroke:nth-child(1) {
    animation-delay: 0s;
}

.stroke:nth-child(2) {
    animation-delay: 0.3s;
}

.stroke:nth-child(3) {
    animation-delay: 0.6s;
}

.stroke:nth-child(4) {
    animation-delay: 0.9s;
}

.stroke:nth-child(5) {
    animation-delay: 0.6s;
}

.stroke:nth-child(6) {
    animation-delay: 0.3s;
}

.stroke:nth-child(7) {
    animation-delay: 0s;
}

.playlist-popup {
    display: none;
    position: fixed;
    background: var(--bg-primary);
    width: 400px;
    height: 74vh;
    max-height: 74vh;
    padding-top: 1rem;
    padding: 0.5rem;
    display: grid;
    visibility: hidden;
    transition: 0.75s cubic-bezier(0.71, 0.01, 0.24, 0.99);
    transition-delay: 0s;
    z-index: 999;
}

.playlist-content {
    margin-block: 20px;
    padding-inline: 30px;
    overflow: hidden;
    max-height: 66vh;
    overflow: scroll;
}

.playlist-content::-webkit-scrollbar {
    display: none;
}

.playlist-popup::-webkit-scrollbar {
    display: none;
}

#playlistList {
    list-style: none;
    padding: 0;
}

#playlistListnav {
    list-style: none;
    padding: 0;
}

#playlistList li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-primary);
}

#playlistListnav li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-primary);
}

#playlistList li:hover {
    background: #3f067ca1;
}

#playlistListnav li:hover {
    background: #3f067ca1;
}

.artist-head {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0.5rem;
    margin-bottom: 2rem;
}

.artist-head img {
    cursor: pointer;
    width: 80px;
    height: 80px;
    border-radius: 10%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.artist-headnav {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0.5rem;
    margin-bottom: 2rem;
}

.artist-headnav img {
    cursor: pointer;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.artist-list {
    max-height: 70vh;
    overflow: scroll;
}

.artist-list::-webkit-scrollbar {
    display: none;
}

.advance {
    overflow: scroll;
}

.advance::-webkit-scrollbar {
    display: none;
}

.form-popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.buttons-atas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 10rem;
    margin: 0.5rem;
}

.artist-card img {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.artist-card div {
    cursor: pointer;
    margin-left: 8px;
    font-size: 13px;
    color: var(--color-primary);
}

.artist-cardnav {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 18rem;
    margin: 0.5rem;
}

.artist-cardnav img {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.artist-cardnav div {
    cursor: pointer;
    margin-left: 8px;
    font-size: 20px;
    color: var(--color-primary);
}


.container-form {
    background-color: rgba(0, 0, 0, 0.4);
    margin: 8% 42%;
    padding: 20px;
    border-radius: 5px;
    width: 430px;
}

.container-form h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.form-control {
    position: relative;
    margin: 20px 0 40px;
    width: 300px;
}

.form-control input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px #fff solid;
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
}

.form-control input:focus,
.form-control input:valid {
    outline: 0;
    border-bottom-color: lightblue;
}

.text {
    margin-top: 30px;
}

.form-control label {
    color: #fff;
    position: absolute;
    top: 5px;
    left: 0;
    pointer-events: none;
}

.form-control label span {
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control input:focus+label span,
.form-control input:valid+label span {
    color: lightblue;
    transform: translateY(-30px);
}

input[type="file"]::file-selector-button {
    background-color: transparent;
    color: transparent;
    padding: 5px 10px;
    cursor: pointer;
    margin-right: 10px;
    /* Memberi jarak antara tombol dan teks */
}

/* Memastikan teks berada di sebelah kanan */
input[type="file"] {
    display: flex;
    align-items: center;
}

.btn {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    background: lightblue;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    border: 0;
    border-radius: 5px;
}

.btn:focus {
    outline: 0;
}

.btn:active {
    transform: scale(0.98);
}

.close-btn {
    float: right;
    cursor: pointer;
    font-size: 40px;
    margin-right: 17px;
}

.close-btnnav {
    float: right;
    cursor: pointer;
    font-size: 40px;
    margin-right: 17px;
}

#message {
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    position: fixed;
    top: 60px;
    border-radius: 5px;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.wave-mini {
    display: inline-block;
    width: 15px;
    height: 10px;
    margin-left: 8px;
    background: linear-gradient(90deg,
            #00ffcc 0%,
            #00ffcc 20%,
            transparent 20%,
            transparent 40%,
            #00ffcc 40%,
            #00ffcc 60%,
            transparent 60%,
            transparent 80%,
            #00ffcc 80%);
    background-size: 200% 100%;
    animation: waveMove 1s linear infinite;
}

@keyframes waveMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

@media only screen and (max-width: 500px) {
    .audio-container {
        padding-top: 2rem;
    }

    .player {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-section {
        height: 85vh;
    }

    .wrappers {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    #background-video {
        position: absolute;
        inset: 0;
    
        width: 100%;
        height: 100%;
    
        object-fit: cover;
    
        z-index: 0;
    }
    
    .overlay {
        position: absolute;
        inset: 0;
    
        width: 100%;
        height: 100%;
    
        background-color: black;
        opacity: 0.5;
    
        z-index: 1;
    }
    

    .buttons {
        font-size: var(--fs-7);
    }

    .buttons-atas {
        font-size: 13px;
    }

    .container-form {
        width: 100%;
        margin: 0;
    }

    .playlist-popup {
        top: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        background: var(--bg-secondary);
    }

    .playlist-content {
        margin: 0;
        max-height: 85vh;
    }
}

.badge {
    padding: 4px 51px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    /* Square edges */
}

.badge-pill {
    border-radius: 50px;
    /* Rounded pill shape */
}

.off-screen-menu {
    display: none
}

.main {
    display: flex
}

aside {
    margin-left: 3rem;
    padding-top: 6rem
}

aside ul {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #15161c6e;
    border: 1px solid #21232b;
    border-radius: 10px;
    list-style: none;
    overflow: hidden;
    width: 280px
}

aside ul li {
    align-items: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    padding: .8rem
}

aside ul li:hover {
    background: #21232b
}

aside ul li ion-icon {
    font-size: 1.2rem;
    margin-right: .5rem
}

aside footer img {
    margin-top: 30px;
    width: 280px
}

.navigation-container {
    box-sizing: border-box;
    height: 96vh;
    justify-content: space-between;
    margin-right: 2rem;
    padding: 1rem;
    margin-top: 6rem;
    z-index: 99999
}

@media (max-width:930px) {
    aside {
        margin-left: 1rem
    }

    .navigation-container {
        margin-right: 1rem
    }
}

@media (max-width:870px) {
    aside {
        display: none
    }
}

@media (max-width:600px) {

    .navigation-container {
        display: none
    }

}

@media (max-width:600px) {
    ul {
        list-style: none
    }

    li {
        margin: 0px
    }

    .off-screen-menu {
        height: auto;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 3rem;
        right: -450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 1rem;
        transition: .3s ease;
        padding-bottom: 1rem
    }

    .off-screen-menu.active {
        right: 0
    }


}

.paket-toggle {
    background: var(--bg-secondary);
    position: relative;
    width: max-content;
    margin-inline: auto;
    margin-top: 65px;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 100px;
    box-shadow: var(--shadow-1);
    z-index: 1;
}



.paket-toggle.active::before {
    left: 98px;
    width: 94px;
}

.toggle-btn {
    color: var(--color-primary);
    font-family: var(--ff-poppins);
    padding: 5px 25px;
    transition: var(--transition-1);
}

.toggle-btn.active {
    color: var(--white);
    background: var(--raw-seinna);
    border-radius: 100px;
    transition: var(--transition-1);
    z-index: -1;
}

.paket-box ul {
    display: none;
    list-style: none;
    padding: 0;
}

.paket-box ul.active {
    display: block;
}

.mini-player{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: none;
    justify-content: space-between;
    align-items: center;

    padding: 10px 15px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    color: white;
    z-index: 999;
}

.mini-info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-info img{
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.mini-text #miniTitle{
    font-size: 14px;
    font-weight: bold;
}

.mini-text #miniArtist{
    font-size: 12px;
    opacity: 0.7;
}

.mini-controls i{
    font-size: 22px;
    cursor: pointer;
}

/* hanya tampil di mobile */
@media(max-width:768px){
    .mini-player{
        display: flex;
    }
}

.clicked {
    background: var(--blue);
    box-shadow: -7px -7px 8px #eb5c1e inset, 7px 7px 8px #ff8404 inset,
        -3px -3px 8px var(--light), 2px 2px 8px #f55302 !important;
}

.banner-section {
    position: relative;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    color: var(--color-primary);
}

#background-video {
    position: absolute;
    object-fit: cover;
    z-index: 0;
    height: 100%;
    width: 100%;
}


/* Banner Section */

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

