Changed around line 1
+ :root {
+ --mario-red: #e52521;
+ --mario-blue: #1e90ff;
+ --ground-green: #228b22;
+ --pipe-green: #006400;
+ --coin-yellow: #ffd700;
+ --cloud-white: #f0f8ff;
+ }
+
+ body {
+ margin: 0;
+ font-family: 'Press Start 2P', cursive;
+ background: linear-gradient(180deg, #87CEEB 50%, #f0f8ff 100%);
+ min-height: 100vh;
+ color: #333;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 2rem;
+ background: var(--mario-red);
+ color: white;
+ }
+
+ .game-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 1rem;
+ }
+
+ .game-wrapper {
+ position: relative;
+ width: 100%;
+ padding-bottom: 56.25%;
+ background: #87CEEB;
+ border: 5px solid #333;
+ border-radius: 10px;
+ overflow: hidden;
+ }
+
+ .game-canvas {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+
+ .mario {
+ position: absolute;
+ bottom: 20%;
+ left: 10%;
+ width: 40px;
+ height: 60px;
+ background: var(--mario-red);
+ border-radius: 50% 50% 0 0;
+ animation: jump 1s infinite alternate;
+ }
+
+ .ground {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 20%;
+ background: var(--ground-green);
+ }
+
+ .pipe {
+ position: absolute;
+ bottom: 20%;
+ right: 20%;
+ width: 60px;
+ height: 100px;
+ background: var(--pipe-green);
+ border-radius: 10px 10px 0 0;
+ }
+
+ .coin {
+ position: absolute;
+ top: 30%;
+ right: 25%;
+ width: 20px;
+ height: 20px;
+ background: var(--coin-yellow);
+ border-radius: 50%;
+ animation: spin 2s infinite linear;
+ }
+
+ .cloud {
+ position: absolute;
+ top: 10%;
+ left: 20%;
+ width: 100px;
+ height: 50px;
+ background: var(--cloud-white);
+ border-radius: 50px;
+ animation: float 10s infinite linear;
+ }
+
+ @keyframes jump {
+ 0% { transform: translateY(0); }
+ 100% { transform: translateY(-50px); }
+ }
+
+ @keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ @keyframes float {
+ 0% { transform: translateX(-100%); }
+ 100% { transform: translateX(100%); }
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: #333;
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ .mario {
+ width: 30px;
+ height: 45px;
+ }
+
+ .pipe {
+ width: 40px;
+ height: 80px;
+ }
+
+ .coin {
+ width: 15px;
+ height: 15px;
+ }
+ }