.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: -25px;
}

.movie-title {
    font-size: 45px;
}

.hero-logo{
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 1rem black);
}

.poster{
    padding: 40px 0 0 0;
    margin-right: 20px;
    margin-left: 10px;
    width: 300px;
}

.poster img{
    width: 300px;
    height: 450px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 7px 13px -3px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.hero-background::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Siyah renkte, %50 saydam arka plan */
    z-index: -1;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    z-index: -1;
}

.hero-content{
    width: 600px;
    padding: 20px;
}

.movie-title{
    text-shadow: 2px 2px  #00000080;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.facts {
    font-size: 13px;
    padding: 6px;
    background-color: #00000050;
    border-radius: 5px;
    color: white;
}

.card{
    border: none;
    box-shadow: rgba(0, 0, 0, 0.56) 0 22px 70px 4px;
}

.certification {
    border: 2px solid white;
    border-radius: 5px;
    padding: 2px 3px 2px 2px;
    margin: 3px 10px 3px 0;
}

.genres::before, .genres::after {
    content: "\f111";
    font-family: FontAwesome, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 7px;
    padding: 0 5px;
}

.details{
    margin-top: -50px;
}

.blockquote {
    font-size: 25px;
}

.blockquote p{
    padding-left: 25px;
}

.production-companies {
    border-radius: 5px;
    margin: 20px 0;
}

.production-companies img {
    height: 35px;
    max-width: 250px;
}

img.provider {
    margin: 4px;
    height: 35px;
}

.company {
    margin: 10px;
}

.crew{
    margin: 20px 0;
    height: 290px;
    overflow-x: auto;
}

.crew img, .cast img {
    height: 200px;
    width: 150px;
    object-fit: cover;
    border-radius: 7px;
    transition: all .4s;
}

.crew-person, .cast-person{
    margin-right: 10px;
    width: 150px;
}

.crew-name, .cast-name {
    margin-top:5px;
    font-size: 13px;
    word-wrap: break-word;
}
.crew-title, .cast-title {
    font-size: 12px;
    word-wrap: break-word;
}

.trailer {
    border-radius: 7px;
}

.cast-person{
    margin: 10px 5px;
}

.cast-person img {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 7px 13px -3px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.cast-person img:hover {
    opacity: .7;
}

.media-videos{
    overflow-x: auto;
}

.media-video {
    margin: 10px 10px 10px 0;
}

.crew::-webkit-scrollbar-track, .media-videos::-webkit-scrollbar-track
{
    background-color: #33333300;
    border-radius: 25px;
}
.crew::-webkit-scrollbar, .media-videos::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
    background-color: #33333315;
    border-radius: 10px;
    display:none;
    display: block;
}

.crew::-webkit-scrollbar-thumb, .media-videos::-webkit-scrollbar-thumb
{
    background-color: #c6303e;
    border-radius: 5px;
}

.back{
    margin: 10px 5px 10px 0;
}

.back img {
    width: 300px;
    height: 169px;
    object-fit: contain;
    border-radius: 7px;
    transition: all 0.4s;
}

.back img:hover {
    opacity: 0.7;
}

.poster img {
    object-fit: cover;
}

.logo{
    margin: 15px;
    max-width: 300px;
}

@media screen and (max-width: 945px) {
    .hero-section {
        padding: 25px;
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: block;
    }
    .details{
        margin-top: 0;
    }

    .poster{
        margin-right: 0;
    }
}
