@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
}

main {
    height: 600px;
    width: 800px;
    position: relative;
    border: 2px solid #0ff;
    box-shadow: 0 0 20px #0ff, inset 0 0 20px rgba(0, 255, 255, 0.2);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
}

/* --- GAME ELEMENTS --- */

/* Basic Brick Style */
.brick {
    position: absolute;
    box-shadow: 0 0 5px currentColor;
    border-radius: 2px;
}

#ball {
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff;
    will-change: transform;
}

#paddle {
    position: absolute;
    background-color: #0f0;
    box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
    border-radius: 10px;
    will-change: transform;
}

/* --- HUD --- */

#game-info {
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    color: #0ff;
    font-size: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 5px #0ff;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

#game-info span span {
    color: #fff;
    text-shadow: 0 0 5px #fff;
}

/* --- MENUS --- */

#pause-menu,
#game-over-menu,
#level-complete-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 20, 40, 0.95);
    color: #0ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #0ff;
    box-shadow: 0 0 30px #0ff;
    z-index: 100;
    min-width: 300px;
}

h1 {
    margin-top: 0;
    text-shadow: 0 0 10px #0ff;
    font-size: 36px;
}

button {
    display: block;
    margin: 20px auto;
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
    background: transparent;
    color: #0ff;
    border: 2px solid #0ff;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 0 5px #0ff;
}

button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
}