/* ============================================================
   Myself & My Moves — custom layer on top of Tailwind Play CDN
   (Tailwind handles the rest via assets/theme.js)
   ============================================================ */

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

::selection { background: #ff6b00; color: #131313; }

/* slim dark scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0e0e0e; }
::-webkit-scrollbar-thumb { background: #353535; border-radius: 99px; border: 3px solid #0e0e0e; }
::-webkit-scrollbar-thumb:hover { background: #4a4a4a; }

/* marquee strip */
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-track { width: max-content; animation: scroll-x 32s linear infinite; }

/* slow spin for star accents */
@keyframes spin-slow { to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 9s linear infinite; }

/* subtle pulse ring (used on "live" dots) */
.pulse-ring { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.5; } 80%, 100% { transform: scale(2.5); opacity: 0; } }

/* rise-in on load */
@keyframes rise { to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(24px); animation: rise .7s cubic-bezier(.2,.8,.2,1) forwards; }

/* card image zoom on hover */
.zoom-img { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.group:hover .zoom-img { transform: scale(1.06); }
