body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}
.header {
    background-color: black;
    width: 100%;
    position: fixed;
}
.panelHeader {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
    color: red;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons img {
    height: 30px;
}

main {
    padding: 90px 20px 20px; /* Thêm khoảng đệm trên để tránh bị che khuất bởi header */
}

.title-games {
    text-align: center;
}

.title-games h1 {
    font-size: 36px;
    color: red;
}

.title-games h2 {
    font-size: 24px;
    color: #aaa;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Chia làm x cột */
    gap: 20px;
    padding: 20px;
}
.game-item {
    color: white;
    text-decoration: none;
    font-weight: bold;

    background-color: #333;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.game-item h2{
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.game-item img {
    width: 100%;
    height: 100%;
}
.game-item-content {
    transition: transform 0.3s ease-out;
}
.game-item:hover .game-item-content {
    transform: scale(0.95);
}


