:root {
  --bg: #0b0b04;
  --panel: #2b1606;
  --gold: #cc9a2b;
  --accent: #d18c2b;
  --text: #f5e9d2;
}
* { box-sizing: border-box; font-family: 'Segoe UI', Roboto, Arial, sans-serif; }
body { margin: 0; background: var(--bg); color: var(--text); }

.container { max-width: 1200px; margin: 20px auto; padding: 10px; }
header { display: flex; justify-content: space-between; align-items: center; }
header h1 { color: var(--gold); }

main { display: flex; gap: 16px; margin-top: 16px; }
.slot-section { flex: 3; }
.panel-section { flex: 1; display: flex; flex-direction: column; gap: 12px; }

.slot-machine { background: var(--panel); padding: 20px; border-radius: 12px; }
.reels { display: flex; flex-direction: column; gap: 12px; }
.row { display: flex; gap: 12px; justify-content: center; }
.reel { width: 80px; height: 80px; border-radius: 8px; background: #fff4d9; display: flex; align-items: center; justify-content: center; border: 2px solid #333; }
.controls { margin-top: 12px; display: flex; gap: 8px; align-items: center; }
.controls input { width: 60px; padding: 4px; border-radius: 4px; }
.controls button { background: var(--accent); border: none; padding: 6px 12px; border-radius: 6px; color: #fff; cursor: pointer; }
.info { margin-top: 8px; }

.panel { background: var(--panel); padding: 12px; border-radius: 8px; }
.log { max-height: 200px; overflow-y: auto; background: rgba(0,0,0,0.1); padding: 8px; border-radius: 6px; }

.auth-buttons { display: flex; gap: 8px; margin-top: 8px; }
.bubble-slot {
  transition: background-color 0.3s ease;
}

#bonusGame {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px gold; }
  50% { box-shadow: 0 0 20px gold; }
  100% { box-shadow: 0 0 5px gold; }
}
