/* ============================================================
   阿佐ヶ谷クエスト ASAGAYA QUEST — special site
   Built from the Claude Design export. Layout/colour live as
   inline styles on the markup; this file holds only the global
   base rules, language-toggle visibility and keyframes.
   ============================================================ */

* { box-sizing: border-box; }
body { margin: 0; background: #100a3e; }
img { display: block; max-width: 100%; }

/* Language toggle: show only the active language */
#aqRoot.lang-ja .en { display: none; }
#aqRoot.lang-en .ja { display: none; }

/* Retro-game motion accents */
@keyframes aqBob   { 0%,100%{ transform: translateY(0) }   50%{ transform: translateY(-7px) } }
@keyframes aqBob2  { 0%,100%{ transform: translateY(0) }   50%{ transform: translateY(-4px) } }
@keyframes aqPulse { 0%,100%{ transform: scale(1) }        50%{ transform: scale(1.05) } }
@keyframes aqBlink { 0%,49%{ opacity: 1 }                  50%,100%{ opacity: 0 } }
@keyframes aqTwinkle { 0%,100%{ opacity:.12; transform: scale(.6) rotate(0deg) } 50%{ opacity:1; transform: scale(1.2) rotate(45deg) } }
@keyframes aqCursor { 0%,100%{ transform: translateX(0) }  50%{ transform: translateX(5px) } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}
