.game-page {
    margin-top: 20px;
}
.game-container {
    background: #384f7b;
    border-radius: 2px;
    padding: 8px;
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.game-hero-image-container {
    margin: -8px;
}
.game-hero-image {
    display: flex;
    height: 100%;
    object-fit: cover;
}
.game-label {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.game-key-info {
    flex: 1;
    display: flex;
    gap: 12px;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: #fff2;
    margin: -8px;
    padding: 16px 0;
}
.game-key-info > div {
    flex-direction: column;
    display: flex;
    align-items: center;
}
.game-platforms {
    display: flex;
    gap: 8px;
}
.game-genres {
    text-align: center;
}
.game-title {
    text-align: center;
    margin: 0;
}
.game-about {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.game-video {
    display: flex;
    justify-content: center;
}
.game-video > iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-width: 800px;
}
.game-screenshot {
    cursor: pointer;
}
.press-kit-btn {
    width: 33%;
    align-self: center;
    background: #072b80;
    margin-top: 16px;
    &:hover {
        background: #0b45ce;
    }
}
@media (max-width: 767px) and (min-width: 0) {
    .game-key-info {
        flex-direction: column
    }
    .press-kit-btn {
        width: 100%;
    }
}
@media (max-width: 320px) and (min-width: 0) {
    .game-key-info {
        flex-direction: column
    }
    .press-kit-btn {
        width: 100%;
    }
}
#lightbox-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#lightbox-mask {
    width: 100%;
    height: 100%;
    position: absolute;
}
#lightbox {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    justify-content: center;
    align-items: center;
    z-index: 200;
    grid-gap: 0px;
    max-height: 720px;
}
#lightbox-close {
    position: fixed;
    top: 0;
    right: 0;
}
#lightbox-image {
    display: flex;
    background-color: #000;
    border-radius: 2px;
    cursor: pointer;
    height: 100%;
    align-items: center;
    & > img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        user-select: none;
    }
}
.lightbox-icon {
    height: 30px;
    width: 30px;
}
#close-icon {
    margin: 15px;
    cursor: pointer;
}
.lightbox-button {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    &:hover {
        background-color: #111;
        & > .lightbox-icon {
            & > svg {
                fill: #9f9f9f;
            }
        }
    }
}
@media (max-width: 767px) and (min-width: 0) {
    #lightbox-image {
        height: 50%;
    }
}
@media (max-width: 320px) and (min-width: 0) {
    #lightbox-image {
        height: 50%;
    }
}