* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 2px; }
::selection { background: #B31217; color: #fff; }

/* Belt stripe divider */
.belt-stripe {
  height: 5px;
  background: linear-gradient(90deg, #D4AF37 0%, #FFD700 40%, #B31217 40%, #B31217 60%, #D4AF37 60%, #FFD700 100%);
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* Hero atmospheric glow */
.arena-glow {
  background: radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-img {
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1.show { transition-delay: 0.08s; }
.reveal-2.show { transition-delay: 0.16s; }
.reveal-3.show { transition-delay: 0.24s; }
.reveal-4.show { transition-delay: 0.32s; }

/* Punch button micro-interaction */
.punch { transition: transform 0.12s ease, box-shadow 0.2s ease; }
.punch:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(212,175,55,0.35); }
.punch:active { transform: scale(0.96); }

/* Modal animation */
.modal-bg { animation: fadeIn 0.2s ease; }
.modal-card { animation: slideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* KO easter egg */
.ko-text {
  animation: koPop 1.2s ease forwards;
  text-shadow: 0 0 40px #B31217, 6px 6px 0 #B31217, -3px -3px 0 #D4AF37;
  -webkit-text-stroke: 3px #D4AF37;
}
@keyframes koPop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  40% { transform: scale(1.2) rotate(5deg); opacity: 1; }
  60% { transform: scale(0.95) rotate(-2deg); }
  80% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
body.shake { animation: shake 0.4s linear 3; }
@keyframes shake {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-6px, 3px); }
  50% { transform: translate(6px, -3px); }
  75% { transform: translate(-4px, -3px); }
}

select option { background: #1e1e1e; color: #fff; }
img { display: block; }
</parameter>
</invoke>