diff --git a/2048.css b/2048.css index 96c835d..2698a67 100644 --- a/2048.css +++ b/2048.css @@ -533,69 +533,6 @@ h1 { 75% { transform: translateX(10px); } } -/* Tile Colors */ -.tile-2 { - background: #00eaff55; - box-shadow: 0 0 12px #00eaff; -} - -.tile-4 { - background: #00ff9955; - box-shadow: 0 0 12px #00ff99; -} - -.tile-8 { - background: #ff00ff55; - box-shadow: 0 0 12px #ff00ff; -} - -.tile-16 { - background: #ff006655; - box-shadow: 0 0 12px #ff0066; -} - -.tile-32 { - background: #ffaa0055; - box-shadow: 0 0 12px #ffaa00; -} - -.tile-64 { - background: #ff000055; - box-shadow: 0 0 12px #ff0000; -} - -.tile-128 { - background: #5f00ff55; - box-shadow: 0 0 12px #5f00ff; -} - -.tile-256 { - background: #00ffea55; - box-shadow: 0 0 12px #00ffea; -} - -.tile-512 { - background: #ff00aa55; - box-shadow: 0 0 12px #ff00aa; -} - -.tile-1024 { - background: #00ffaa55; - box-shadow: 0 0 12px #00ffaa; -} - -.tile-2048 { - background: #ffd70066; - box-shadow: 0 0 18px #ffd700; - animation: goldShimmer 2.6s infinite; -} - -@keyframes goldShimmer { - 0% { box-shadow: 0 0 12px #ffd70066; transform: translateZ(0); } - 50% { box-shadow: 0 0 30px #ffd700aa; transform: translateY(-2px); } - 100% { box-shadow: 0 0 12px #ffd70066; transform: translateZ(0); } -} - /* Enhanced Merge Animation */ .tile.merge { animation: mergeBounce 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); diff --git a/2048.html b/2048.html index fd1c92d..7c8161c 100644 --- a/2048.html +++ b/2048.html @@ -4,14 +4,10 @@