::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Inter', sans-serif;
}

.pixel-font {
  font-family: 'Press Start 2P', cursive;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0.3;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px #ef4444, 0 0 10px #ef4444;
  }
  50% {
    box-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes coin-drop {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes spiral-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes item-drop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(80px);
  }
}

@keyframes item-fall {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: translateY(60px);
    opacity: 0;
  }
}

.item-fall {
  animation: item-fall 0.6s ease-out forwards;
}

@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(300px) rotate(720deg);
    opacity: 0;
  }
}

.blink {
  animation: blink 1s infinite;
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

.marquee {
  animation: marquee 20s linear infinite;
}

.coin-drop {
  animation: coin-drop 1s ease-in forwards;
}

.spiral-spin {
  animation: spiral-spin 0.5s ease-out;
}

.item-drop {
  animation: item-drop 1s ease-out forwards;
}

.confetti {
  animation: confetti 2s ease-out forwards;
}

.vending-machine {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.neon-text {
  text-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444, 0 0 30px #ef4444;
}

.led-display {
  background: #1a0000;
  border: 3px solid #4a0000;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.8);
}

.snack-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.snack-slot:active {
  transform: scale(0.95);
}

.coin-slot {
  background: linear-gradient(180deg, #374151 0%, #1f2937 100%);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.dispenser-door {
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  border: 3px solid #374151;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}