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

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#twitch-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#click-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
}

#click-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: crosshair;
  pointer-events: auto;
  background: transparent;
}

#status {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  z-index: 200;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#status.connecting {
  border-color: rgba(255, 193, 7, 0.7);
  color: #ffc107;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

#status.connected {
  border-color: rgba(76, 175, 80, 0.7);
  color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

#status.active {
  border-color: rgba(0, 255, 255, 0.9);
  color: #00ffff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.7);
    transform: scale(1.02);
  }
}
