* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

@font-face {
  font-family: 'PixelFont';
  src: local('Press Start 2P');
}

body {
  background: #1a1a2e;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  font-family: 'Press Start 2P', 'Courier New', monospace;
}

#game-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#game-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #16213e;
}

#ui-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#ui-overlay > * {
  pointer-events: auto;
}

.hidden { display: none !important; }

/* === STATUS BAR === */
#status-bar {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hp-bar {
  flex: 1;
  height: 24px;
  background: #2d2d44;
  border: 2px solid #4a4a6a;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.hp-fill {
  height: 100%;
  background: linear-gradient(180deg, #4ade80, #22c55e);
  transition: width 0.4s ease;
  width: 100%;
}

.hp-fill.enemy { background: linear-gradient(180deg, #f87171, #ef4444); }
.hp-fill.low { background: linear-gradient(180deg, #fbbf24, #f59e0b); }
.hp-fill.critical { background: linear-gradient(180deg, #f87171, #dc2626); }

.hp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 9px;
  text-shadow: 1px 1px 0 #000;
  white-space: nowrap;
}

#gold-display {
  color: #fbbf24;
  font-size: 9px;
  white-space: nowrap;
  text-shadow: 1px 1px 0 #000;
}

#level-info {
  color: #e2e8f0;
  font-size: 9px;
  white-space: nowrap;
  text-shadow: 1px 1px 0 #000;
}

/* === FLOOR INFO === */
#floor-info {
  position: absolute;
  top: 36px;
  left: 8px;
  color: #94a3b8;
  font-size: 8px;
  text-shadow: 1px 1px 0 #000;
  z-index: 10;
}

/* === ENEMY HP === */
#enemy-hp-container {
  position: absolute;
  top: 50px;
  left: 20%;
  right: 20%;
  text-align: center;
  z-index: 10;
}

#enemy-name {
  color: #fbbf24;
  font-size: 10px;
  margin-bottom: 4px;
  text-shadow: 1px 1px 0 #000;
}

#enemy-hp-bar.hp-bar.enemy {
  height: 18px;
}

/* === BATTLE LOG === */
#battle-log {
  position: absolute;
  top: 46%;
  left: 8px;
  right: 8px;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}

#log-entries {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.log-entry {
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 3px;
  animation: logFadeIn 0.3s ease;
}

.log-entry.player-attack { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
.log-entry.player-shield { color: #60a5fa; background: rgba(96, 165, 250, 0.1); }
.log-entry.player-heal { color: #4ade80; background: rgba(74, 222, 128, 0.1); }
.log-entry.enemy-attack { color: #f87171; background: rgba(248, 113, 113, 0.1); }
.log-entry.dot-damage { color: #c084fc; background: rgba(192, 132, 252, 0.1); }
.log-entry.match-2 { color: #fbbf24; background: rgba(251, 191, 36, 0.2); font-size: 10px; text-align: center; }
.log-entry.match-3 { color: #ef4444; background: rgba(239, 68, 68, 0.25); font-size: 11px; text-align: center; text-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }

@keyframes logFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === DRUM (3 reels) === */
#drum-container {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#drum-window {
  width: 280px;
  height: 180px;
  background: #1e1e3a;
  border: 3px solid #6366f1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.drum-reels-row {
  display: flex;
  width: 100%;
  height: 100%;
}

.drum-reel-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #2a2a4a;
  transition: box-shadow 0.3s;
}

.drum-reel-col:last-child { border-right: none; }
.drum-reel-col.match-2 { box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.4); }
.drum-reel-col.match-3 { box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.5); }

.drum-reel {
  position: absolute;
  left: 0;
  right: 0;
  transition: none;
  will-change: transform;
}

.drum-symbol {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drum-symbol-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.drum-symbol-icon { font-size: 26px; line-height: 1; }
.drum-symbol-name { font-size: 6px; color: #94a3b8; white-space: nowrap; }

#drum-pointer {
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 62px;
  transform: translateY(-50%);
  border: 2px solid #fbbf24;
  border-radius: 6px;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
  z-index: 5;
}

#drum-pool {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 300px;
}

.pool-symbol {
  width: 28px;
  height: 28px;
  background: #2d2d44;
  border: 1px solid #4a4a6a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
}

.pool-count {
  font-size: 6px;
  color: #fbbf24;
  position: absolute;
  bottom: 0;
  right: 1px;
}

/* === BUTTONS === */
.menu-btn {
  display: block;
  width: 100%;
  border: 3px solid;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  transition: transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn:active { transform: scale(0.95); }

.green-btn {
  background: linear-gradient(180deg, #4ade80, #22c55e);
  color: #1a1a2e;
  border-color: #86efac;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.blue-btn {
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  color: #1a1a2e;
  border-color: #93c5fd;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.purple-btn {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
  color: #fff;
  border-color: #c4b5fd;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.red-btn {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: white;
  border-color: #f87171;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.back-btn {
  background: none;
  border: 2px solid #4a4a6a;
  color: #94a3b8;
  font-size: 10px;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.back-btn:active { opacity: 0.7; }

.orange-btn {
  background: linear-gradient(180deg, #fb923c, #ea580c);
  color: #1a1a2e;
  border-color: #fdba74;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

/* === SPIN BUTTON === */
#spin-container {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

#spin-btn {
  background: linear-gradient(180deg, #6366f1, #4f46e5);
  color: white;
  border: 3px solid #818cf8;
  border-radius: 16px;
  padding: 14px 48px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  transition: transform 0.1s;
}

#spin-btn:active { transform: scale(0.95); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* === REWARD SCREEN === */
#reward-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 20;
}

.reward-title {
  color: #fbbf24;
  font-size: 24px;
  text-shadow: 2px 2px 0 #000;
  animation: bounceIn 0.5s ease;
}

.reward-subtitle {
  color: #e2e8f0;
  font-size: 10px;
}

#reward-choices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
}

.reward-card {
  width: 100px;
  background: #1e1e3a;
  border: 2px solid #4a4a6a;
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.reward-card:active { transform: scale(0.95); }
.reward-card:hover { border-color: #6366f1; }

.reward-card-icon { font-size: 32px; }
.reward-card-name { color: #e2e8f0; font-size: 8px; text-align: center; }
.reward-card-desc { color: #94a3b8; font-size: 7px; text-align: center; line-height: 1.4; }

.reward-card-type {
  font-size: 7px;
  padding: 2px 6px;
  border-radius: 4px;
}

.reward-card-type.attack { color: #fbbf24; background: rgba(251, 191, 36, 0.15); }
.reward-card-type.defense { color: #60a5fa; background: rgba(96, 165, 250, 0.15); }
.reward-card-type.heal { color: #4ade80; background: rgba(74, 222, 128, 0.15); }
.reward-card-type.debuff { color: #c084fc; background: rgba(192, 132, 252, 0.15); }

.element-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 14px;
  z-index: 2;
}

.mutation-card { border-color: #8b5cf6 !important; box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
.upgrade-card { border-color: #f59e0b !important; box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
.skip-card { border-style: dashed !important; opacity: 0.7; }
.skip-card:hover { opacity: 1; }

/* === FLOOR COMPLETE === */
#floor-complete-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 20;
}

.floor-complete-title {
  color: #4ade80;
  font-size: 22px;
  text-shadow: 2px 2px 0 #000;
  animation: bounceIn 0.5s ease;
}

#floor-complete-info {
  text-align: center;
}

.fc-floor { color: #e2e8f0; font-size: 12px; margin-bottom: 8px; }
.fc-gold { color: #fbbf24; font-size: 16px; margin-bottom: 8px; }
.fc-hint { color: #94a3b8; font-size: 8px; }

#next-floor-btn {
  width: auto;
  padding: 14px 40px;
}

/* === DEATH SCREEN === */
#death-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 20;
}

.death-title {
  color: #ef4444;
  font-size: 28px;
  text-shadow: 2px 2px 0 #000;
}

#death-stats {
  color: #e2e8f0;
  font-size: 10px;
  text-align: center;
  line-height: 2;
}

#death-gold {
  color: #fbbf24;
  font-size: 12px;
  text-align: center;
}

#restart-btn {
  width: auto;
  padding: 12px 36px;
}

/* === MAIN MENU === */
#menu-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 30;
}

.menu-title {
  color: #fbbf24;
  font-size: 28px;
  text-shadow: 3px 3px 0 #000;
  animation: pulse 2s infinite;
}

.menu-subtitle {
  color: #94a3b8;
  font-size: 10px;
  margin-bottom: 8px;
}

#menu-gold {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 8px;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}

#best-score {
  color: #94a3b8;
  font-size: 8px;
  margin-top: 8px;
}

/* === UPGRADES SCREEN === */
#upgrades-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  flex-direction: column;
  z-index: 30;
  padding: 16px;
  overflow-y: auto;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.screen-title {
  color: #e2e8f0;
  font-size: 16px;
  flex: 1;
}

.screen-gold {
  color: #fbbf24;
  font-size: 12px;
}

#upgrades-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upgrade-row {
  background: #1e1e3a;
  border: 2px solid #2d2d44;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.upgrade-info { flex: 1; }
.upgrade-name { color: #e2e8f0; font-size: 12px; margin-bottom: 4px; }
.upgrade-desc { color: #94a3b8; font-size: 7px; margin-bottom: 4px; }
.upgrade-level { color: #4ade80; font-size: 8px; }

.upgrade-buy-btn {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  color: #1a1a2e;
  border: 2px solid #fcd34d;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 10px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s;
}

.upgrade-buy-btn:active { transform: scale(0.95); }

.upgrade-buy-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #4a4a6a;
  border-color: #4a4a6a;
  color: #94a3b8;
}

/* === INVENTORY SCREEN === */
#inventory-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  flex-direction: column;
  z-index: 30;
  padding: 16px;
  overflow-y: auto;
}

#inventory-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.inv-tab {
  background: #2d2d44;
  border: 1px solid #4a4a6a;
  color: #94a3b8;
  font-size: 9px;
  font-family: inherit;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.inv-tab.active {
  background: #6366f1;
  border-color: #818cf8;
  color: white;
}

#inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
}

.inv-card {
  background: #1e1e3a;
  border: 2px solid #2d2d44;
  border-radius: 10px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.inv-card:hover { border-color: #6366f1; }

.inv-card.locked {
  opacity: 0.35;
  cursor: default;
}

.inv-icon { font-size: 28px; }
.inv-name { color: #e2e8f0; font-size: 6px; text-align: center; }

#inventory-detail {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: #1e1e3a;
  border-top: 3px solid #6366f1;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  z-index: 35;
  animation: slideUp 0.3s ease;
}

.detail-close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
}

.detail-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
.detail-name { color: #e2e8f0; font-size: 14px; text-align: center; margin-bottom: 4px; }
.detail-type { color: #fbbf24; font-size: 9px; text-align: center; margin-bottom: 8px; }
.detail-desc { color: #94a3b8; font-size: 9px; text-align: center; margin-bottom: 6px; }
.detail-element { color: #60a5fa; font-size: 8px; text-align: center; margin-bottom: 4px; }
.detail-rarity { color: #c084fc; font-size: 8px; text-align: center; }

@keyframes slideUp {
  from { transform: translate(-50%, 100%); }
  to { transform: translate(-50%, 0); }
}

/* === EQUIP SCREEN === */
#equip-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  flex-direction: column;
  z-index: 30;
  padding: 16px;
  overflow-y: auto;
}

#equip-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.equip-hero-icon {
  font-size: 56px;
  min-width: 64px;
  text-align: center;
}

.equip-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}

.equip-slot {
  background: #1e1e3a;
  border: 2px solid #2d2d44;
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: border-color 0.2s;
  min-height: 54px;
}

.equip-slot:hover { border-color: #6366f1; }

.slot-label {
  font-size: 10px;
  color: #94a3b8;
}

.slot-item {
  font-size: 8px;
  text-align: center;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.slot-item.empty { color: #4a4a6a; font-size: 16px; }

.slot-item.filled {
  border: 1px solid;
  border-radius: 6px;
  padding: 2px 4px;
  background: rgba(255,255,255,0.03);
}

.slot-icon { font-size: 18px; }
.slot-name { font-size: 6px; white-space: nowrap; }

#equip-stats {
  background: #1e1e3a;
  border: 1px solid #2d2d44;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.equip-stats-title {
  color: #94a3b8;
  font-size: 9px;
  margin-bottom: 6px;
}

.equip-stat-line {
  color: #e2e8f0;
  font-size: 8px;
  padding: 2px 0;
}

#equip-inventory-label {
  color: #94a3b8;
  font-size: 10px;
  margin-bottom: 8px;
}

#equip-inventory {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equip-empty {
  color: #4a4a6a;
  font-size: 9px;
  text-align: center;
  padding: 20px;
}

.equip-inv-card {
  background: #1e1e3a;
  border: 2px solid #2d2d44;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.equip-inv-icon { font-size: 28px; min-width: 36px; text-align: center; }

.equip-inv-info { flex: 1; }
.equip-inv-name { font-size: 9px; margin-bottom: 2px; }
.equip-inv-desc { font-size: 7px; color: #94a3b8; margin-bottom: 2px; }
.equip-inv-slot { font-size: 7px; color: #64748b; }

.equip-use-btn {
  background: linear-gradient(180deg, #4ade80, #22c55e);
  color: #1a1a2e;
  border: 2px solid #86efac;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 8px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s;
}

.equip-use-btn:active { transform: scale(0.95); }

/* === CHEST SCREEN === */
#chest-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 25;
}

.chest-title {
  color: #fbbf24;
  font-size: 28px;
  text-shadow: 2px 2px 0 #000;
  animation: bounceIn 0.5s ease;
}

.chest-subtitle {
  color: #94a3b8;
  font-size: 10px;
}

.chest-item-card {
  background: #1e1e3a;
  border: 3px solid #4a4a6a;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  animation: bounceIn 0.6s ease 0.2s both;
}

.chest-item-icon { font-size: 48px; }
.chest-item-name { font-size: 12px; text-shadow: 1px 1px 0 #000; }
.chest-item-desc { font-size: 9px; color: #94a3b8; }
.chest-item-slot { font-size: 8px; color: #64748b; }
.chest-item-rarity { font-size: 9px; margin-top: 4px; }

#chest-take-btn {
  width: auto;
  padding: 14px 40px;
  animation: bounceIn 0.5s ease 0.4s both;
}

/* === FLOATING DAMAGE === */
.floating-damage {
  position: absolute;
  font-size: 18px;
  font-family: inherit;
  font-weight: bold;
  pointer-events: none;
  z-index: 15;
  animation: floatUp 1s ease-out forwards;
  text-shadow: 2px 2px 0 #000;
}

.floating-damage.player { color: #fbbf24; }
.floating-damage.enemy { color: #ef4444; }
.floating-damage.heal { color: #4ade80; }
.floating-damage.shield { color: #60a5fa; }
.floating-damage.gold { color: #fbbf24; font-size: 14px; }

@keyframes floatUp {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-30px) scale(1.2); }
  100% { opacity: 0; transform: translateY(-60px) scale(0.8); }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* === RESPONSIVE === */
@media (max-height: 600px) {
  #drum-window { height: 130px; width: 240px; }
  .drum-symbol { height: 43px; }
  .drum-symbol-icon { font-size: 20px; }
  #drum-pointer { height: 44px; }
  #spin-btn { padding: 10px 36px; font-size: 14px; }
  #drum-container { bottom: 55px; }
  #battle-log { height: 55px; }
  .log-entry { font-size: 7px; }
  .menu-title { font-size: 22px; }
  .menu-buttons { width: 180px; }
  .menu-btn { padding: 10px 16px; font-size: 12px; }
}

@media (min-width: 501px) {
  #game-container {
    border-left: 1px solid #2d2d44;
    border-right: 1px solid #2d2d44;
  }
}
