.page-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.category-sidebar {
    flex: 0 0 150px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
}

.category-item:hover,
.category-item.active {
    background-color: #f0f9f0;
}

.category-item.active {
    color: #4CAF50;
}

.category-icon {
    font-size: 24px;
    margin-right: 10px;
}

.category-content {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-info {
    padding: 10px;
}

.game-info h3 {
    margin: 0;
    font-size: 14px;
    margin-bottom: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.page-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.page-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.back-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 20px;
}