#head-content {
    min-height: 140px;
}

main {
    width: var(--all-width);
    margin: 0 auto 50px;
    display: block;
}

.big-box {
    display: flex;
    flex-wrap: wrap;
}

.game {
    background-color: #fff;
    padding: 6px;
    border-radius: 6px;
}

.game-header {
    padding: 10px 10px 10px 0px;
    background-color: #db3030;
    border-radius: 6px;
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}

.game-header h2 {
    margin: 0;
    padding: 0 0 0 40px;
}

.game-header h2::before {
    content: '';
    position: absolute;
    background-image: url(../images/love.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 30px;
    height: 100%;
    left: 0;
    top: 0;
}

.game-header h2 {
    font-size: 17px;
    font-weight: normal;
    color: #fff;
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-bar span {
    font-size: 13px;
    color: #ffe0e0;
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: .3s;
    font-size: 14px;
    color: #fff;
}

.share-btn.fb {
    background-color: #1877f2;
}

.share-btn.tw {
    background-color: #1da1f2;
}

.share-btn.rd {
    background-color: #ff4500;
}

.share-btn.wa {
    background-color: #25d366;
}

.share-btn.cp {
    background-color: #7b4f25;
}

.share-btn:hover {
    transform: scale(1.15);
    opacity: .9;
}

.game-cont {
    margin: 15px auto;
    width: var(--game-width);
    height: var(--game-height);
    background-color: #000;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 6px;
    overflow: hidden;
}

.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px);
}

.game-cont .img-box {
    width: 20%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    position: relative;
}

.game-cont .img-box::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.game-cont .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play {
    width: 18%;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    padding: 8px 0;
    text-align: center;
    transition: .4s;
    border-radius: 4px;
    font-size: 15px;
    letter-spacing: 2px;
}

.play:hover {
    background-color: #000;
    color: #fff;
}

.game-info {
    margin: 0 auto 15px;
    width: var(--game-width);
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.info-badge {
    background-color: #f6f6f6;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #1e73a9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-badge .label {
    color: #61bc17;
    font-weight: bold;
}

.info-section {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.info-section h3 {
    font-size: 14px;
    color: #7b4f25;
    margin-bottom: 6px;
    font-weight: normal;
}

.info-section p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.game-recommend {
    margin-top: 15px;
}

.game-recommend h2 {
    padding: 6px 0 6px 35px;
    background-color: #e4602a;
    border-radius: 6px;
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 10px;
}

.game-recommend h2::before {
    content: '';
    position: absolute;
    background-image: url(../images/love.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 30px;
    height: 100%;
    left: 0;
    top: 0;
}

@media screen and (max-width:799px) {
    .game-cont .img-box {
        width: 50%;
    }

    .play {
        width: 50%;
    }

    .game-info {
        width: 100%;
    }

    .game-header {
        flex-direction: column;
        gap: 10px;
    }
}