body {
    font-family: "Motiva Sans", Arial, sans-serif;
    text-align: center;
    background-color: #171a21;
    color: #c6d4df;
    padding: 40px 15px;
    margin: 0;
}

.container {
    max-width: 480px;
    margin: 20px auto;
    background: #1b2838;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border: 1px solid #2a475e;
}

.game-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

h2 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #acb2b8;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

button, a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    text-align: center;
    font-weight: 500;
}

.steam {
    background-color: #2a475e;
    color: #fff;
    border: 1px solid #66c0f4;
}

.steam:hover {
    background-color: #1b2838;
    border-color: #c7d5e0;
}

.store {
    background-color: #5c7e10;
    color: #fff;
    border: 1px solid #a4d007;
}

.store:hover {
    background-color: #4e6b0e;
    border-color: #c1f500;
}

.small {
    margin-top: 15px;
    font-size: 13px;
    color: #7f8c8d;
}