.section-title {
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
    padding-left: 12px;
}
.section-title:before {
    content: '';
    width: 4px;
    height: 22px;
    background: #4aa3b8;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
}

.game-card {
    border: 1px solid #e9eef5;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    background: #fff;
    padding: 18px;
    transition: all .2s ease;
    cursor: pointer;
    height: 100%;
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .1);
}

.game-icon {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    object-fit: cover;
}

.game-name {
    font-weight: 600;
    margin-top: 12px;
}

.game-action {
    font-size: 13px;
    font-weight: 600;
    color: #4aa3b8;
    transition: all .2s ease;
}

.game-card:hover .game-action {
    color: #0d6efd;
    letter-spacing: .3px;
}

.trust-box {
    border: 1px dashed #d7e3ec;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    background: #f8fbfd;
}
