﻿.game-title {

    width:100%;
    max-width:1120px;

    margin:0 auto;

    background-color:#CBCBCB;
    background-repeat:no-repeat;
    background-position:top;

    padding:30px;

    box-sizing:border-box;
}

.game-header{

    margin-bottom:30px;

}

.game-meta{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

    margin-top:15px;

}

.game-body{
    display:grid;
    grid-template-columns: 1fr 360px;
    gap:30px;
    align-items:start;
}

.game-gallery{

    flex:1;

}

.cover-frame {
    width: 360px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

}
.cover-frame img {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;

    object-fit: contain;   /* 🔥 KLUCZ */
    display: block;
}

.game-download{

    margin-top:30px;

    width:100%;
    text-align:center;

}