@import url('https://solargentinotv.com.ar/assets/fonts/NetflixSans/netflixsans.css');

/* ====== NAV / DROPDOWN ====== */
::selection {
    background-color: #810000;
    color: #fff
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
}

nav ul li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: #810000;
    padding: 8px 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-weight: 700;
}

nav a:hover,
nav li:hover>a {
    color: #810000;
    border-bottom-color: #810000;
}

nav a.active {
    color: #810000;
    border-bottom-color: #810000;
}

/* ====== DROPDOWN ====== */
.dropdown-content {
    display: none;
    position: absolute;
    background: #181818;
    top: 37px;
    left: 0;
    margin-left: -2.8em;
    min-width: 180px;
    outline: 2px solid #810000;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #810000;
    text-decoration: none;
    font-weight: 500;
}

nav li:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background: #810000;
    color: #181818;
}

/* ====== BOTONES GENRE ====== */
.center-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.genre-btn,
.leer-btn {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.genre-btn {
    background: #181818;
    padding: 25px 0px;
    border-radius: 12px;
    text-decoration: none;
    color: #810000;
    border: 2px solid #810000;
    font-size: 18px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    width: 12em;
    text-align: center;
}

.genre-btn:hover {
    background: #810000;
    color: #181818;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

#generos-btn {
    cursor: pointer;
}

/* WebKit (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: #f00;

}

/* Firefox solamente */
@supports (-moz-appearance:none) {

    html,
    body {
        scrollbar-width: thin;
        scrollbar-color: #f00 #141414;
    }
}