*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Montserrat;
    font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://api.datanet.lencraftserver.de/fonts/lcs-01.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

body{
    font-family: Montserrat;
    font-weight: 300;
    background:#0f0f12;
    color:#fff;
    min-height:100vh;
}

.hero{
    display:flex;
    flex-wrap:wrap;
    min-height:100vh;
}

.poster{
    flex:1 1 35%;
    min-width:320px;
    position:relative;
}

.poster::after{
    content:"";
    position:absolute;
    inset:0;
}

.content{
    flex:1 1 65%;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.year{
    color: rgba(66, 135, 245, 1);
    font-size:2rem;
    font-weight: 800;
}

h1{
    font-size:3rem;
    margin-bottom:20px;
    line-height:1;
    font-family: Montserrat;
    font-weight: 1000;
}

.description{
    font-size:1.1rem;
    color:#d1d5db;
    line-height:1.4;
    max-width:850px;
    margin-bottom:20px;
}

.watch-btn{
    display:inline-block;
    background:rgba(66,135,245,1);
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.25s;
    width:max-content;
    margin-bottom:30px;
}

.watch-btn:hover{
    filter: brightness(1.3);
}

.badges{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:30px;
    background-color: rgba(255,255,255,.03);
    padding: 10px;
    border-radius: 10px;
}

.badges img {
    transition: 200ms ease;
    cursor: help;
}

.badges img:hover {
    filter: brightness(.8);
}

.divider {
height: 30px;
width: 3px;
background: rgba(255,255,255,.1);
border-radius: 5px;
transform: translate(6px,18%);
margin: 0 20px;
}

#uhd {
height: 30px;
transform: translate(6px,5px);
}

.credit-section{
    display:grid;
    grid-template-columns: minmax(400px,750px) minmax(250px,300px);
    gap:40px;
}

.credit-card{
    background: rgba(255,255,255,.05);
    padding: 15px;
    border-radius: 10px;
}

.credit-card h3{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    font-size:1.2rem;
}

.credit-card h3::before{
    content:"";
    width:5px;
    height:24px;
    background:rgba(66,135,245,1);
    border-radius:10px;
}

.credit-list li{
    display:grid;
    grid-template-columns:160px 1fr;
    line-height:1.4;
}

.credit-list#actor li {
    display: block;
    line-height:1.2;
    margin-bottom: 8px;
}

.credit-list li strong{
    font-weight:700;
}

.credit-list#actor li strong{
    font-size: 20px;
}

.credit-list li span{
    color:#cbd5e1;
}

.studio {
    margin-top: 10px;
    color: rgba(255,255,255,.7)
}

.line {
    display: flex;
    margin-top: 5px;
}

.bold {
    font-weight: 800;
    margin-right: 4px;
}

@media(max-width:900px){

    body{
        overflow-x:hidden;
    }

    .hero{
        display:block;
        position:relative;
    }

    .poster{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        min-height:0;
        z-index:0;
        background-position:center;
        transition:.4s ease;
    }

    .poster::after{
        content:"";
        position:absolute;
        inset:0;
        backdrop-filter:blur(0px);
        transition:.4s ease;
    }

    .content{
        position:relative;
        z-index:1;
        min-height:100vh;
        padding:60px 25px 35px;
        padding-top:100vh;
        background:linear-gradient(
            to bottom,
            transparent 50%,
            #0f0f12 55%
        );
    }

    .credit-section{
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .credit-card{
        width:100%;
    }

    .credit-list li{
      display:block;
      line-height:1.4;
    }

    .credit-list li strong{
	font-weight: 700;
    }


}
