.center{
    padding-top: 86px;
}
.section{
    margin-top: 40px;
}
.section_title{
    color: rgb(245, 243, 243);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    padding: 8px 16px;
    gap: 10px;
    text-align: center;
    background-color: rgb(84, 36, 36);
}
.sections_container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:24px;
    justify-content: center;
    padding: 2%;
}
.play-container{
    height: 100%;
    position: relative;
}
.play-img{
    width: 100%;
    height: 500px;
    font-size: 0;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(8deg, rgba(199, 21, 21, 0.992) 14% , rgba(17, 16, 16, 0.022)44%);
    border-radius: 20px;
}
.banner {
    height: 502px;
    width: 100%;
    border-radius: 20px;
    bottom: 0px;
    position: absolute;
    background: linear-gradient(rgba(31, 26, 26, 0.4), rgba(45, 44, 44, 0.974));
}
.banner_info{
    position: absolute;
    bottom:5px;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
}
.play-text{
    color: #c9b7b7;
    display: flex;
    border-radius: 2%;
    flex-direction: column;
    padding: 14px;
    gap:12px;
    overflow: hidden;
}
.play-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #f4f1f1;
}
.rating{
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: yellow;
}
.tags{
    display: flex;
    align-items: center;
    gap:8px;
}
.tags span{
    color: #ece4e4;
    border: 1px solid rgba(252, 250, 250, 0.346);
    padding: 6px 12px;
    border-radius: 10px;
}
.watch{
    padding: 0 14px;
}
.watch img{
    width: 110px;
    height: 110px;
    border-radius: 20%;
}
.watch i {
    margin-left: 85%;
    font-size: 1rem;
    color: #ffffff;
}


.information {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  
}
.information_name {
    display: flex;
    align-items: center;
    gap:24px;
}
.information .logo img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid white;
}
.information .tags p{
    color: rgb(199, 199, 194);
    font-size: 20px;
    border-radius: 20px;
    box-shadow: 1px 2px 10px rgba(199, 199, 194, 0.245);
}
.information .tags p span{
    color: #c20909;
    border: none;
    font-size: 23px;
}
.information .tags p:hover{
    box-shadow: 1px 2px 10px rgba(199, 199, 194, 0.559);
    border-radius: 20px;
    padding: 2px;
    transition: 2s ease-in-out;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.container h2{
    font-size: 20px;
    color: #fcf6f6c5;
    text-decoration: underline;
}
.icons{
    display: flex;
    align-items: center;
    border:  1px solid rgb(106, 35, 35);
    gap: 12px;
    padding: 6px 12px;
    width: fit-content;
    border-radius: 8px;
}
.icons i{
    text-decoration: none;
    padding:  2px;
    font-size: 2em;
    border: 1px solid rgb(245, 236, 236);
    border-radius: 50%;
    color:rgb(205, 200, 201);
    opacity: 0.9;
}
.icons:hover a{
    color:rgb(223, 218, 126);
    transition: 0.5s;
}
.icons:hover i{
    border: 1px solid rgb(173, 17, 17);
    color:rgb(239, 28, 28);
    transition: 0.5s;
}
.video-container{
    top: 0;
    position: fixed;
    left: 0;
   display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 22, 8, 0.929);
    z-index: 400;
    display: none;
}
.video-container.show-video{
    display: flex;

}
.video-box{
   position: relative;
    width: 82%;
}
.video-container #myvideo{
    width: 90%;

    aspect-ratio: 16/9;
   
}
.close-video{
    position: absolute;
    top: 3rem;
    font-size: 50px;
   right: 0px;
   color: #c20909;
}


