|
|
|
body { |
|
margin: 0; |
|
padding: 0; |
|
background: linear-gradient(90deg, #000428, #004e92); |
|
font-family: Arial, sans-serif; |
|
overflow: hidden; |
|
} |
|
|
|
|
|
.game-container { |
|
position: relative; |
|
width: 100vw; |
|
height: 100vh; |
|
border: 3px solid #00ffcc; |
|
overflow: hidden; |
|
box-shadow: 0 0 20px #00ffcc; |
|
} |
|
|
|
|
|
.ball { |
|
position: absolute; |
|
top: 0; |
|
left: 50%; |
|
width: 20px; |
|
height: 20px; |
|
background: radial-gradient(circle, #ff00cc, #ff0066); |
|
border-radius: 50%; |
|
box-shadow: 0 0 15px #ff0066; |
|
transform: translate(-50%, -50%); |
|
} |
|
|
|
|
|
.platform { |
|
position: absolute; |
|
bottom: 5%; |
|
left: 50%; |
|
width: 100px; |
|
height: 20px; |
|
background: linear-gradient(90deg, #00ffcc, #0066ff); |
|
border-radius: 10px; |
|
box-shadow: 0 0 20px #00ffcc; |
|
transform: translateX(-50%); |
|
} |