@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000;
    color: #fff;
    margin: 0;
    line-height: 1.8;
    background-image: url('https://media.giphy.com/media/3oFzmdjqH15YebLQhW/giphy.gif');
    background-size: cover;
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(0,0,0,0.8);
    border: 3px solid #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
}

.header {
    text-align: center;
    padding-bottom: 2rem;
}

.header .logo {
    font-size: 4rem;
    color: #ffff00;
    text-shadow: 3px 3px 0 #ff00ff;
    text-decoration: none;
}

.navbar {
    border-top: 3px solid #00ffff;
    border-bottom: 3px solid #00ffff;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
}

h2 {
    font-size: 2rem;
    color: #00ffff;
    text-align: center;
}

.game-list, .score-list {
    list-style: none;
    padding: 0;
}

.game-list li, .score-list li {
    font-size: 1.2rem;
    padding: 0.5rem;
    text-align: center;
}

.score-list .player {
    color: #ffff00;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    color: #777;
}