@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mozilla+Text:wght@200..700&family=Nata+Sans:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Nata Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* html {
    font-size: 16px;
} */

body {
    background-color: black;
}

:root {
    --color: #bebbbb;
    --bgcolor: #1f1f1f;
    --bg2color: #101010;
}

nav {
    height: 9.5vh;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: black;
}

.left-nav {
    margin-left: 1rem;
}

.Slogo {
    margin-right: 0.8125rem;
}

.Slogo img {
    width: 1.6875rem;
}

.home>button {
    border-radius: 3.125rem;
    border: none;
    margin-right: 0.4375rem;
    background-color: var(--bgcolor);
    cursor: pointer;
}

.home img {
    width: 0.9375rem;
    padding: 0.375rem 0.46875rem;
    filter: invert(1);
}

.input {
    position: relative;
    width: 32vw;
    background-color: var(--bgcolor);
    border-radius: 50rem;
    box-sizing: border-box;
    height: 6vh;
    cursor: pointer;
}

.input:hover {
    background-color: #2d2c2c;
}

.search img {
    width: 1.0625rem;
    filter: invert(0.7);
    margin: 0 0.5rem;
}

.input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    border-right: 0.0625rem solid var(--color);
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    outline: none;
}

.browse img {
    width: 1.0625rem;
    filter: invert(1);
    margin-left: 0.5rem;
    margin-right: 0.625rem;
}

.right-nav {
    justify-content: space-evenly;
}

.right-left button {
    border: none;
    font-size: 0.625rem;
    color: var(--color);
    background-color: black;
    font-weight: bold;
    margin: 0.25rem;
    cursor: pointer;
}

.right-left button:hover {
    color: white;
    font-size: 0.65625rem;
}

.right-center {
    margin-left: 0.5rem;
    margin-right: 0.4375rem;
}

.line img {
    width: 1.0625rem;
    filter: invert(1);
}

.right-right {
    gap: 1.0625rem;
}

.right-right * {
    cursor: pointer;
}

.install-app button {
    border: none;
    background-color: black;
    margin-left: 0.3125rem;
    font-size: 0.625rem;
    color: var(--color);
    font-weight: bold;
}

.install-img {
    width: 0.6875rem;
    position: relative;
    top: 0.0625rem;
    filter: invert(0.7);
}

.install-app *:hover {
    font-size: 0.65625rem;
    color: #ffff;
}

.Signin>button {
    border: none;
    color: var(--color);
    background-color: black;
    font-weight: bold;
    font-size: 0.625rem;
}

.Signin>button:hover {
    color: #ffff;
    font-size: 0.65625rem;
}

.Login>button {
    padding: 0.5625rem 1.25rem;
    border-radius: 3.125rem;
    font-size: 0.6875rem;
    font-weight: bold;
    margin-right: 0.3125rem;
    border: none;
}

.Login>button:hover {
    padding: 0.60625rem 1.275rem;
    font-size: 0.7rem;
}

/* -------------------------------------------------MAIN------------------------------------------------------------------------- */

main {
    justify-content: space-around;
    width: 100vw;
    height: 90vh;
}

.left-main {
    min-height: 87vh;
    max-width: 28vw;
    border-radius: 0.4375rem;
    background-color: var(--bg2color);
    color: #fff;
}

.right-main {
    min-height: 87vh;
    min-width: 71vw;
    border-radius: 0.4375rem;
    color: var(--color);
    background-color: var(--bgmain);
    overflow: hidden;
    position: relative;
}

/* ---------------------------------------------------------LEFT-MAIN------------------------------------------------------------------- */

.main-top {
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
}

.main-top img {
    width: 0.75rem;
    filter: invert(0.7);
    cursor: pointer;
}

.main-top h4 {
    font-size: 0.6875rem;
    font-weight: bold;
}

/* ---------------------------------------------------------SCROLLER------------------------------------------------------------------- */

.main-scroller {
    height: 44vh;
    overflow-y: scroll;
    width: 27.5vw;
    margin-top: 0.9375rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-evenly;
    scrollbar-gutter: stable;
}

.main-scroller::-webkit-scrollbar {
    width: 0.625rem;
}

.main-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.main-scroller::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.1875rem;
}

.main-scroller::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.main-scroller::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.35);
}

.main-scroller .box {
    width: 90%;
    height: 2.5rem;
    border-radius: 0.25rem;
    background-color: var(--bgcolor);
    margin: 0.875rem auto;
    position: relative;
}

.main-scroller .box .num-1 {
    margin: 0rem 0.875rem;
}

.main-scroller .box .img img {
    width: 2rem;
    object-fit: cover;
    object-position: center;
    border-radius: 0.125rem;
}

.main-scroller .box .text {
    margin-left: 0.5rem;
}

.main-scroller .box .icon {
    position: absolute;
    right: 1.25rem;
}

.main-scroller .box .icon img {
    cursor: pointer;
    width: 0.625rem;
    filter: invert(1);
}


/* -------------------------------------------------------FOOTER---------------------------------------------------------------------- */
.main-footer {
    flex-direction: column;
    justify-content: space-between;
    margin-top: 1.875rem;
    height: 20vh;
    width: 25.5vw;
    margin-left: auto;
    margin-right: auto;
}

.footer-upper {
    flex-direction: column;
}

.footer-upper>ul {
    width: 23vw;
    height: 2.1875rem;
    flex-wrap: wrap;
    line-height: 1.1875rem;
}

.footer-upper>ul a {
    text-decoration: none;
}

.footer-upper>ul li {
    list-style: none;
    font-size: 0.5rem;
    color: var(--color);
    padding: 0 0.3125rem;
    cursor: pointer;
}

.footer-upper .cookies a {
    text-decoration: none;
    font-size: 0.5625rem;
    color: #fff;
    cursor: pointer;
    margin-left: 0.3125rem;
}

.footer-upper .cookies a:hover {
    text-decoration: underline;
    text-decoration-color: #ffff;
    text-decoration-thickness: 0.0625rem;
}

.footer-lower button {
    padding: 0.28125rem 0.625rem;
    border-radius: 50rem;
    background: transparent;
    border: 0.063125rem solid rgb(93, 90, 90);
    margin-left: 0.3125rem;
    cursor: pointer;
}

.footer-lower img {
    width: 0.625rem;
    filter: invert(1);
}

.footer-lower span {
    font-size: 0.5625rem;
    margin-left: 0.25rem;
    color: #fff;
    font-weight: 600;
}


/* ---------------------------------------------------------RIGHT-MAIN------------------------------------------------------------------ */

.right-upper-main {
    overflow-y: scroll;
    height: 85%;
    width: 100%;
    background-color: var(--bgcolor);
    border-radius: 0.4375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    scrollbar-gutter: stable;
    gap: 1.3125rem;
}

.right-upper-main::-webkit-scrollbar {
    width: 0.75rem;
}

.right-upper-main::-webkit-scrollbar-track {
    background: transparent;
}

.right-upper-main::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.125rem;
}

.right-upper-main::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.right-upper-main::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.35);
}

/* ------------------------------------------------------------UPPER-1------------------------------------------------------------------- */
.right-upper1-main {
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
}

.right-upper1-main .h4-11 {
    margin-top: 0.625rem;
}

.right-upper1-main .card-1 {
    height: 8.75rem;
    width: 7.5rem;
    /* background-color: var(--bgmain); */
    overflow: hidden;
    border-radius: 0.3125rem;
}

.right-upper1-main .songs {
    gap: 0.9375rem;
}

.right-upper1-main .card-1 img {
    border-radius: 0.3125rem;
    width: 95%;
    height: 6.875rem;
    object-fit: cover;
    object-position: center;
}


/* ------------------------------------------------------------UPPER-2------------------------------------------------------------------- */
.right-upper2-main {
    flex-direction: column;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
}

.right-upper2-main .card-2 {
    height: 8.75rem;
    width: 7.5rem;
    /* background-color: red; */
    overflow: hidden;
    border-radius: 0.3125rem;
}

.right-upper2-main .card-2 img {
    border-radius: 50rem;
    width: 5.9375rem;
    height: 5.9375rem;
    object-fit: cover;
    object-position: center;
}

.right-upper2-main .card-2 img:first-child {
    border-radius: 50rem;
    width: 6.25rem;
    height: 6.25rem;
    object-fit: cover;
    object-position: top;
}

.right-upper2-main .artists {
    gap: 1.125rem;
}


/* ------------------------------------------------------------UPPER-3------------------------------------------------------------------- */

.right-upper3-main {
    margin-left: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.right-upper3-main span {
    position: relative;
    top: 0.1875rem;
    font-size: 0.9375rem;
}

/* ----------------------------------------------------------PLAYBAR------------------------------------------------------------ */
.playbar {
    min-width: 71vw;
    height: 3.875rem;
    background-color: var(--bg2color);
    position: absolute;
    bottom: 0;
    border-radius: 0.4375rem;
    flex-direction: column;
    gap: 0.25rem;
    box-sizing: border-box;
}

.seekbar {
    width: 90%;
    border: 1.1px solid var(--color);
    height: 0px;
}

.playbar-2 {
    gap: 8px;
    width: 61%;
}

.circle {
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 21.9%;
    left: 23%;
}