body, h1, h2, h3, p, ul, li, button {
    margin: 0;
   background-color: #242322;
    
    padding: 0;
    box-sizing: border-box;
    font-family: "Anton", sans-serif;
}


.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.header {
    display: flex;
    flex-direction: row;
    background-color: #010b1a;
    padding: 30px;

    text-align: center;
   
   
    color:aliceblue;
    height: 10px;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 5px black;
    margin-bottom: 10px;
    
}
.gb{
    background-color:#010b1a;
}
.gs{
    margin-left: 640px;
    background-color:#010b1a;
}
.gh{
    margin-left: 555px;
    background-color:#010b1a;
}


.game-page {
    flex: 1;
    padding: 10px;
}


.game-banner img {
    width: 100%;
    height: auto;
}


.game-info {
    display: flex;
}

.game-cover {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
    
}
.game-cover:hover {
    transform: scale(1.09);
}

.game-summary {
    flex: 1;
}

.game-title {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
}

.game-price {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.buy-button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    
}

.buy-button:hover {
    background-color: #2980b9;
}

.game-description {
    font-size: 16px;
    color: #666;
}


.system-requirements {
    display: flex;
    color: #aab8c9;
    flex-direction: row;
    margin-top: 20px;
}

.system-requirements ul {
    list-style-type: none;
    padding: 10px;
}

.system-requirements li {
    margin-bottom: 10px;
}

.user-reviews {
    margin-top: 20px;
    color: #e9eef4;
}

.review {
    font-size: 20px;
    margin-bottom: 20px;
}

.review h3 {
    margin-bottom: 5px;
    color: #c9baba;
}

.review p {
    margin: 5px 0;
    color: #aab8c9;
}


.similar-games {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #a1a1a5;
    box-shadow: 0 0 20px rgb(49, 5, 5);
            transition: transform 0.3s ease;
}

.similar-games .game-list {
    display: flex;
    gap: 240px;
}

.similar-game {
    text-align: center;
    color: #aab8c9;
}

.similar-game img {
   
    width: 200px;
    height: 250px;
    border-radius: 8px;
}

.similar-game p {
    margin-top: 5px;
}
.similar-game:hover {
    transform: scale(1.19);
}


.footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    position: bottom;
    width: 100%;
    bottom: 0;
}
a{
    text-decoration: none;
}