* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #2a1a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  font-family: 'Comic Neue', cursive;
  user-select: none;
  -webkit-user-select: none;
}

#canvas {
  display: block;
  cursor: pointer;
}

#controls {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

#pressBtn {
  font-family: 'Bungee Shade', cursive;
  font-size: 20px;
  color: #fff;
  background: radial-gradient(circle at 35% 35%, #ff4444, #aa0000 70%);
  border: 4px solid #880000;
  border-radius: 50px;
  padding: 14px 40px;
  cursor: pointer;
  box-shadow: 0 6px 0 #660000, 0 8px 20px rgba(0,0,0,0.5);
  transition: all 0.08s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 1px;
}

#pressBtn:active, #pressBtn.pressed {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #660000, 0 3px 10px rgba(0,0,0,0.5);
}

#pressBtn:hover {
  background: radial-gradient(circle at 35% 35%, #ff6666, #cc0000 70%);
}

#annoyed-counter {
  font-family: 'Comic Neue', cursive;
  font-size: 14px;
  color: #aa8855;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

#drunk-meter {
  font-family: 'Comic Neue', cursive;
  font-size: 13px;
  color: #ddaa44;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  margin-top: 2px;
}

#mute-toggle {
  position: fixed;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 20;
}

#mute-toggle:hover {
  opacity: 1;
}

#footer {
  position: fixed;
  bottom: 8px;
  text-align: center;
  font-size: 10px;
  color: #665533;
  line-height: 1.4;
  padding: 0 20px;
}

#footer a {
  color: #aa8855;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  #pressBtn {
    font-size: 16px;
    padding: 10px 28px;
  }
  #controls {
    bottom: 40px;
  }
}