.breadcrumb {
    display: flex;
    color: #727272;
    font-size: 12px;
    margin: 0 0 7px 15px;
}

.item {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #727272;
    text-transform: uppercase;
}

.breadcrumb span {
    display: block;
    margin: 0 7px;
    color: #c0c0c0;
}

.concenter {
    width: 100%;
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

main .title {
    margin: 0 0 15px 0;
    padding: 8px 0 8px 15px;
    border-left: 5px solid #4d63a0;
    background-color: #232f52;
    color: #fff;
    font-size: 17px;
}

main .big-box {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    gap: 15px;
}

.main-left {
    width: var(--main-width);
    padding: 15px 10px 15px 0;
    box-shadow: 8px 0 8px -3px rgba(0, 0, 0, 0.3);
}

.main-right {
    flex: 1;
    padding: 15px 20px 15px 10px;
}

/* ── Game Card ── */
.game-card {
    width: calc((100% - 60px) / 5);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.game-card .img-box {
    width: 100%;
    padding-top: 75%;
    position: relative;
    background: #e8e8e8;
}

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

.game-info {
    padding: 6px 8px 8px;
}

.game-title {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 11px;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #ffb200;
}

.rating-num {
    color: #888;
    margin-left: 4px;
    font-size: 11px;
}

/* ── Sidebar ── */
.side-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
}

.side-game {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 13px;
    transition: color 0.2s;
}

.side-game:hover {
    color: #4d63a0;
}

.side-img {
    width: 56px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #e8e8e8;
}

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

.side-title {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
}

.cat-tag {
    padding: 4px 12px;
    background: #f0f3fa;
    border-radius: 20px;
    font-size: 12px;
    color: #4d63a0;
    border: 1px solid #d0d8ee;
    transition: background 0.2s, color 0.2s;
}

.cat-tag:hover {
    background: #4d63a0;
    color: #fff;
}

@media screen and (max-width: 769px) {

    .main-left {
        padding: 10px 0;
    }

    .concenter {
        flex-direction: column;
    }

    .game-card {
        width: calc((100% - 30px) / 3);
    }
}

@media screen and (max-width: 480px) {
    .game-card {
        width: calc((100% - 15px) / 2);
    }
}