.game-header {
    position: relative;
    width: 100%;
}

.thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(75%);
}

.game-title {
    position: absolute;
    top: 14px;
    left: 14px;
    color: rgb(255, 255, 255);
    font-size: 48px;

    text-shadow:
        -2px -2px 0 #000,
        0 -2px 0 #000,
        2px -2px 0 #000,
        2px 0 0 #000,
        2px 2px 0 #000,
        0 2px 0 #000,
        -2px 2px 0 #000,
        -2px 0 0 #000;

    line-height: 1;
}

.resources-container {
    position: absolute;
    top: 14px;
    right: 14px;
}

.resource {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 10px;
}

.resource div {
    color: white;
    font-size: 18px;
}

.resource-img {
    padding-left: 15px;
    width: 40px;
}

.header-bottom {
    display: flex;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    height: 40px;
    width: calc(100% - 40px);
    color: white;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 18px;
}

.game-date {
    margin-right: 20px;
}

.game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-button {
    width: 30px;
    height: 30px;
    object-fit: cover;
    background-color: rgb(0, 0, 0, 0.8);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 6px;
    padding: 6px;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgb(78, 84, 119);
    font-weight: 400;
    font-size: 22px;
}

.field {
    background-color: rgb(44, 49, 83);
    border-style: none;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 20px;
    line-height: 30px;
    color: white;
}

.link {
    color: white;
}

.screenshot-area {
    display: grid;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background-color: rgb(44, 49, 83);
    padding: 14px;
    border-radius: 6px;
}

.screenshot {
    width: 100%;
    height: 202px;
    object-fit: contain;
}