body {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    text-align: center;
    background-color: #16213e;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

h1 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 10px;
}

#game-board {
    border: 3px solid #00ffff;
    background-color: #0f3460;
}

.info-display {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

#start-button {
    background-color: #e94560;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #c93049;
}