@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("elements/header.css");
* {
    font-family: "Roboto", sans-serif;

    --bg: rgb(20, 16, 22);
    --bg2: rgb(11, 9, 12);
    --accent: rgb(133, 27, 199);
    --accent2:rgb(103, 29, 150);

}

body {
    background: var(--bg);
}

.poster {
    height: 300px;
    width: 197px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
    cursor: pointer;
    transition-duration: 0.2s;
}

.poster:hover {
    transform: scale(1.08);
    box-shadow: 0px 0px 20px black;
}

.row {
    margin: 30px;
}

.row-episode {
    margin: 15px;
    height: 300px;
}

.row-episode-header {
    margin: 15px;
}


.row h1 {
    margin-left: 15px;
}

.row-posters {
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    margin: 0px;
}

.row-posters-episode {
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    margin: 0px;
}

#important-show-novoEpData {
    color: rgb(110, 110, 110);
    max-width: 400px;
    padding-right: 30px;
    min-width: 100px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(42, 11, 78, 0.541);
}

.episode {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content:space-between;
    border: 3px solid rgba(113, 104, 124,0.5);
    min-width: 300px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--bg2);
    border-radius: 20px;
    color: rgb(233, 226, 240);
}
.episode h1 {
    margin-bottom: 0;
}

.row-episode h1 {
    margin-top: 0;
    
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--bg); 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--accent); 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent2); 
  }

  .row-posters::-webkit-scrollbar {
    display: none;
}

.important-show {
    left: 0;
    right: 0;
    min-height: 600px;
    height: 86vh;
    max-height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    animation: important-show-bg-animationscroll 10s ease-in-out infinite alternate;
    
    mask-image: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 92%, rgba(255,255,255,0) 100%);
}
.important-show::before {
    background: linear-gradient(90deg, rgba(0,0,0,0.4822303921568627) 10%, rgba(0,0,0,0) 49%);
}

#important-show-logo {
    min-width: 300px;
    width: 30vw;
    max-width: 800px;

}
#important-show-synopse {
    color: rgb(187, 187, 187);
    max-width: 400px;
    padding-right: 30px;
    min-width: 100px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.541);
}
@media only screen and (max-width: 600px) {
    .important-show-wrapper  {
        padding: 0px 0px 200px 40px;
    }
    #watch-text {
        display: none;
    }
    .important-show-wrapper button {
        padding: 20px; 
        border-radius: 100%;
    }
    .play-icon {
        scale: 2;
    }
    #AssistirEpisodio {
        height: 65px;
        width: 65px;
        padding: 20px; 
        border-radius: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .important-show-wrapper  {
        padding: 0px 0px 200px 100px;
    }

    #watch-text {
        display: block;
    }
    .important-show-wrapper button {
        padding: 15px; 
        border-radius: 30px;
    }
    .play-icon {
        scale: 1.5;
    }
    #AssistirEpisodio {
        height: 50px;
        width: 140px;
        padding: 15px; 
        border-radius: 30px;
    }
}


.important-show-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
    width: inherit;
    height: inherit;
}

#AssistirEpisodio {
    background-color: var(--accent);
    border: none;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    transition-duration: 0.2s;
}

#AssistirEpisodio * {
    color: rgb(233, 226, 240);
}

.important-show-wrapper * {
    padding: 5px;
    margin: 10px 0px 0px 0px;
    
}



.important-show-wrapper button {
    color: rgb(233, 226, 240);
    background-color: var(--accent);
    border: none;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    transition-duration: 0.2s;
}

.important-show-wrapper button:hover {
    background-color: var(--accent2);
}


#important-show-info {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.541);
}

.important-show-wrapper button * {
    margin: 0;
}

@keyframes important-show-bg-animationscroll {
    0% {
        background-position: left center;

    }

    100% {
        background-position: right center;
    }
}