:root {
    --font-primary: 'Inter', sans-serif;
    --color-primary: #fff;
}

body {
    background-color: #000;
}

.background {
    height: 100vh;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 5%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.2) 80%,
            rgba(0, 0, 0, 0.8) 100%),
        url("../img/banner.png");
    background-size: cover;
    padding: 0.26rem 0.75rem 0 0.75rem;
}

/* Header */
.header__navigation-desktop {
    display: flex;
}

.header__navigation-logo {
    width: 5rem;
    padding: 1rem 2.5rem;
}

.header__navigation-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 50rem 1rem 0;
}

.header__navigation-menu a {
    text-decoration: none;
    color: var(--color-primary);
    opacity: 0.8;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: bold;
}

.header__navigation-menu-right {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    gap: 1rem;
    padding: 1rem 2.5rem;
}

.header__navigation-menu-right li i {
    cursor: pointer;
}

.header__navigation-menu-right-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__navigation-mobile {
    display: none;
}

/* Banner */
.banner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 80%;
    justify-content: center;
    padding: 8rem 60rem 5rem 2.5rem;
}

.banner__title {
    display: none;
}

.banner img {
    width: 450px;
}

.banner__description {
    display: flex;
    flex-wrap: wrap;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 1vw;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 1.2rem;
}

.banner__button {
    display: flex;
    gap: 2rem;
}

.button__addlist {
    display: none;
}

.button__watch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-primary);
    font-size: 100%;
    font-weight: bold;
    background-color: var(--color-primary);
    border-radius: 0.125rem;
    border: 0;
    padding: 0.6rem 2rem;
    cursor: pointer;
}

.button__information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-primary);
    font-size: 100%;
    font-weight: bold;
    color: var(--color-primary);
    background-color: rgba(80, 80, 80, 0.5);
    border-radius: 0.125rem;
    border: 0;
    padding: 0.6rem 2rem;
    cursor: pointer;
}

.button__information-mobile {
    display: none;
}

/* List */
.list {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    gap: 0.5rem;
}

.list-title {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    padding: 1rem 0 0 1rem;
}

.list-series {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0 1rem 1rem;
}

.list-series img {
    width: 325px;
    cursor: pointer;
}

.list-series img:hover {
    transform: scale(1.1);
    transition: 250ms;
}

.scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 80, 80, 0.15) transparent;
}

.scroll::-webkit-scrollbar {
    display: block;
}

/* Footer */
.footer__desktop {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 0 2.5rem;
}

.social a {
    color: var(--color-primary);
    opacity: 0.8;
    text-decoration: none;
}

.links {
    display: flex;
    padding: 1rem 2.5rem;
}

.links div {
    display: flex;
    flex-direction: column;
    padding-right: 9rem;
    gap: 1rem;
}

.links div a {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--color-primary);
    opacity: 0.8;
    text-decoration: none;
}

.links div a:hover {
    text-decoration: underline;
}

.footer__desktop li:nth-child(3) a {
    color: var(--color-primary);
    opacity: 0.8;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 0.5rem;
    margin-left: 2.5rem;
    border: solid 1px rgba(255, 255, 255, 0.8);
}

.footer__desktop p {
    color: var(--color-primary);
    opacity: 0.8;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    padding: 1rem 2.5rem;
}

.footer__mobile {
    display: none;
}