Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #e74c3c;
+ --accent-color: #f1c40f;
+ --text-color: #ecf0f1;
+ --wheel-size: min(80vw, 400px);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ color: var(--text-color);
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(0, 0, 0, 0.2);
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
+ }
+
+ .game-container {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 2rem;
+ gap: 2rem;
+ }
+
+ .wheel-container {
+ position: relative;
+ width: var(--wheel-size);
+ height: var(--wheel-size);
+ }
+
+ .wheel {
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ position: relative;
+ transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
+ transform: rotate(0deg);
+ box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
+ }
+
+ .wheel-center {
+ position: absolute;
+ width: 20%;
+ height: 20%;
+ background: var(--secondary-color);
+ border-radius: 50%;
+ top: 40%;
+ left: 40%;
+ z-index: 2;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
+ }
+
+ .segment {
+ position: absolute;
+ width: 50%;
+ height: 50%;
+ transform-origin: 100% 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--text-color);
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
+ }
+
+ .pointer {
+ position: absolute;
+ top: -20px;
+ left: calc(50% - 20px);
+ width: 40px;
+ height: 40px;
+ background: var(--secondary-color);
+ clip-path: polygon(50% 100%, 0 0, 100% 0);
+ z-index: 3;
+ }
+
+ .controls {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ }
+
+ .spin-button {
+ padding: 1rem 3rem;
+ font-size: 1.2rem;
+ font-weight: bold;
+ background: var(--secondary-color);
+ color: var(--text-color);
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.2s, background-color 0.2s;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ }
+
+ .spin-button:hover {
+ transform: scale(1.05);
+ background: #c0392b;
+ }
+
+ .score-display {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: rgba(0, 0, 0, 0.2);
+ }
+
+ @media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .segment {
+ font-size: 1.2rem;
+ }
+ }