@font-face {
    font-family: Netflix;
    src: url('../../fonts/AvenirNextLTPro-Regular.otf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Netflix;
    src: url('../../fonts/AvenirNextLTPro-Bold.otf');
    font-weight: 700;
    font-style: normal;
}


.credits {
    font-family: system-ui;
    background: #212429;
    font-size: 11px;
    color: white;
    padding: 0.5rem 0;
    text-align: center;
}

.credits a {
    color: #F865B0;
    text-decoration: none;
}

body {
    background: rgba(133,4,23);
    color: white;
    margin: 0;
    font-family: Netflix;
    /* max-width: 400px; */
    position: relative;
}

a {
    color: white;
    text-decoration: none;   
}

.header {
    padding: 15px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    background-image: linear-gradient(to bottom, #181818 0%, black 50%, transparent 90%)
}

.navigation-item {
    list-style: none;
    text-align: center;
}

.navigation {
    padding: 0;
    margin: 0;
    display: grid;
    grid-auto-columns: 100px;
    grid-auto-flow: column;
    justify-content: space-around;
}

.featured {
    margin-top: -85px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.featured video {
    width: 100%;
}

.featured-details {
    /* border: 1px solid yellow; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, black 0%, black 40%, transparent 100%);
}

.tags {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    gap: 3px;
    list-style: none;
    position: relative;
    top: 20px;
}

.tag {
    /* border: 1px solid red; */
    margin-left: 0;
    font-size: 12px;
}

.tag:before {
    content:'•';
    margin-right: 4px;
    position: relative;
    top: 1px;
    font-size: 12px;
    /* font-size: 2.4vw; */
}

.tag:first-child::before{
    display: none;
}

.featured-actions {
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.button {
    /* border: 1px solid red; */
    background: white;
    display: flex;
    align-items: center;
    padding: 5px 1em 5px .5em;
    border-radius: 3px;
    border: none;
    font-weight: Bold;
}

.button::before {
    /* border: 1px solid red; */
    content:'';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.button-secondary {
    background: none;
    color: white;
    /* border: 1px solid yellow; */
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    min-width: 100px;
}

.button-secondary::before {
    content:'';
    display: block;
    /* border: 1px solid green; */
    height: 25px;
    width: 25px;
    margin: auto;
    margin-bottom: 5px;
}

.icon-plus::before {
    background: url(../../images/icons/plus.svg);
    
}

.icon-play::before {
    background: url(../../images/icons/play.svg);
}

.icon-info::before {
    background: url(../../images/icons/info.svg)
}

.footer {
    /* border: 1px solid red; */
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0
}

.list-content {
    /* border: 1px solid red; */
    /* display: flex; */
    white-space: nowrap;
    overflow-x: auto;
}

.list-item {
    display: inline-block;
    margin-left: 10px;
}

.list-item:first-child{
    margin:0;
}

.list {
    padding: 0 1em;
}

.list-title{
    font-size: 30px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #000;
}

.footer {
    /* border: 1px solid red; */
    background: rgb(133,4,23);
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: black; */
}

.tab-list {
    /* border: 1px solid green; */
    background: black;
    max-inline-size: 450px;
    margin: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    list-style: none;
    color: #6e6e6e;
    padding-bottom: 1em;
    padding-top: 1em;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.tab-list a{
    color: #6e6e6e;
}

.tab-item {
    /* border: 1px solid red; */
    text-align: center;
    font-size: .9em
}

.tab-item svg {
    display: block;
    margin: auto;
}

.tab-item path {
    fill: #6e6e6e;
    transition: .2s;
}

/* .tab-item:hover :is(path,span){
    fill: white;
    color: white;
} */

.tab-item:hover path, .tab-item:hover span{
    fill: white;
    color: white;
}

.app {
    max-inline-size: 450px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}