:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --error-color: #CF6679;
    --on-primary: #000000;
    --on-secondary: #000000;
    --on-background: #e0e0e0;
    --on-surface: #e0e0e0;
    --on-error: #000000;
}

body {
    background-color: var(--background-color);
    color: var(--on-background);
}

header, footer {
    background-color: var(--surface-color);
}

nav ul li a, .footer-links a {
    color: var(--on-background);
}

nav ul li a:hover, .footer-links a:hover {
    color: #ffffff;
}
.play-button{
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}
.play-button a {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.game-detail-image{
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
}
.game-detail-image img{
    width: 205px;
    height: 205px;
    border-radius: 50%;
}