@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px #00e5ff, 0 0 24px #8b00ff; }
  50% { box-shadow: 0 0 24px #00e5ff, 0 0 48px #8b00ff; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.marquee-track { display: flex; animation: marquee 28s linear infinite; }
.pulse-glow { animation: pulseGlow 2.4s ease-in-out infinite; }
.float-up { animation: floatUp 3s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }
/* Path relative to /css/ so assets resolve on any host and baseURL (dev/prod) */
.hero-bg {
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00e5ff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #1e1e4a;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a78bfa;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #cbd5e1;
}
.prose a {
  color: #00e5ff;
  text-decoration: underline;
}
.prose a:hover {
  color: #a78bfa;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #00e5ff;
  padding-left: 1em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}
.prose th {
  background: #1e1e4a;
  color: #00e5ff;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
}
.prose td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #1e1e4a;
  color: #cbd5e1;
}
.prose tr:nth-child(even) td {
  background: #0d0d2b;
}
.neon-btn {
  background: linear-gradient(135deg, #00e5ff 0%, #8b00ff 100%);
  color: #07071a;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.neon-btn:hover { opacity: 0.88; transform: scale(1.04); }
/* Hot Games marquee cards — uniform size regardless of title length */
.hot-game-card {
  display: flex;
  flex-direction: column;
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  height: 300px;
  overflow: hidden;
}
.hot-game-card .hot-game-img {
  height: 9rem;
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}
.hot-game-card .hot-game-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1rem;
}
.hot-game-card .hot-game-title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  flex-shrink: 0;
}
.hot-game-card .hot-game-btn-wrap {
  margin-top: auto;
  flex-shrink: 0;
}
.card-dark {
  background: #0d0d2b;
  border: 1px solid #1e1e4a;
  border-radius: 1rem;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00e5ff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
