body {
    margin: 0;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'Press Start 2P', cursive;
}

#game-container {
    position: relative;
    width: 400px;
    height: 600px;
    background: #0d0d0d linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    border: 5px solid #ff00ff;
    border-radius: 20px;
    box-shadow: 
        0 0 20px #ff00ff, 
        0 0 40px #ff00ff, 
        0 0 60px #ff00ff inset;
}

#pinball-canvas {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#ui-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

#score {
    color: #00ffff;
    font-size: 1.5em;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 100;
    color: #ffffff;
}

#overlay-title {
    font-size: 3em;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff;
    margin-bottom: 20px;
}

#overlay-text {
    font-size: 1em;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 80%;
}

#start-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2em;
    padding: 15px 30px;
    background-color: #00ffff;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    transition: all 0.2s ease-in-out;
}

#start-button:hover {
    transform: scale(1.1);
    background-color: #ffffff;
    color: #ff00ff;
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
}

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