.btrpage-game{
    background: transparent;
    position: relative;
}

.btrpage-container{
    padding-top: 7rem;
    padding-left: 1rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height: 99.5vh;
}

.btrpage-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0,0,0, 0) 30%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0,0,0, 0.8) 100%
    );

    pointer-events: none;
}

.btrpage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.btrpage-card{
    width:100%;
    border:1px solid rgb(141,92,0);
    overflow:hidden;
    border-radius:3px;
    transition:.25s;
    z-index: 2;
}

@media (min-width: 767px) {
    .btrpage-card{
        width: 50%;
    }
}

.btrpage-visual{
    position:relative;
    border-bottom:1px solid rgb(141,92,0);
    overflow:hidden;

}

.btrpage-image-box{
    width:100%;
    aspect-ratio:16/9;
}

@media (min-width: 767px) and (max-width: 1918px){
    .btrpage-image-box{
        max-height:14rem;
    }
}

@media (min-width: 1919px){
    .btrpage-image-box{
        max-height:28rem;
    }
}

.btrpage-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:flex;
}


.btrpage-body{
    padding: 1rem 1rem;
    background:#000000c4;
}

.btrpage-genre{
    color:#a77a00;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.18em;
    margin-bottom:10px;
    text-align:center;
    justify-self:center;

}

@media(min-width:1919px){
    .btrpage-genre{
        text-align:center;
        font-size:1rem;
    }
}


.btrpage-title{
    font-size:2rem;
    font-weight:400;
    color:#ffe600;
    margin-bottom:15px;
}

@media(min-width:1919px){
    .btrpage-title{
        font-size:2.5rem;
        text-align:center;
    }
}

.btrpage-description{
    color:#ffffff;
    line-height:1.7;
    font-size:1rem;
    font-weight:400;
    margin-bottom:0.5rem;
    text-align:justify;
    hyphens:auto;
}

@media(min-width:1919px){
    .btrpage-description{
        font-size:1.5rem;
        text-align:justify;
    }
}

.btrpage-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.5rem;
}

.btrpage-tag{
    padding:4px 10px;
    font-size:11px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#cecece;
}

.btrpage-made-by{
    display:flex;
    justify-content:center;
    margin-top:1rem;
}

.btrpage-made-by span{
    color:#a77a00;
    font-size:1rem;
}

.btrpage-button{
    width: fit-content;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-left: auto;
    color: #a77a00;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    transition: .25s;
    border: 1px solid #a77a00;
    padding: 0.5rem 1rem;
}

@media (min-width: 767px) {
    .btrpage-button{
        margin-top: 1rem;
    }
}

.btrpage-button:hover{
    color:#ffbb00;
    border-color:#ffbb00;
}

.btrpage-char1{
    position:absolute;
    bottom:0;
    left: 0;
    z-index: 2;
    width: 4rem;
    will-change: transform;
    pointer-events: none;
}