/* CrazyWinnings – Custom CSS */

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px 2px #FF6B00, 0 0 24px 6px #1B4FD8; }
  50% { box-shadow: 0 0 24px 8px #FF6B00, 0 0 48px 16px #1B4FD8; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes parallax-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.pulse-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}
.spin-slow {
  animation: spin-slow 8s linear infinite;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.parallax-float {
  animation: parallax-float 5s ease-in-out infinite;
}

/* Prose styling */
.prose {
  color: #E8E8F0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FF6B00;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1B4FD8;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #60A5FA;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #D1D5DB;
}
.prose a {
  color: #FF6B00;
  text-decoration: underline;
}
.prose a:hover {
  color: #FF9040;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #D1D5DB;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #D1D5DB;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #FF6B00;
  padding-left: 1rem;
  color: #9CA3AF;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid #1B4FD8;
}
.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 table th {
  background: #1B4FD8;
  color: #fff;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
}
.prose table td {
  background: #1E2030;
  color: #D1D5DB;
  padding: 0.5em 1em;
  border-bottom: 1px solid #2D2F45;
}
.prose table tr:hover td {
  background: #252840;
}

/* Nav mobile menu */
#mobile-menu {
  background: #12131F;
}

/* Container */
.site-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero BG */
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Darker center vignette improves headline contrast on busy hero images */
  background:
    radial-gradient(ellipse 85% 75% at 50% 42%, rgba(10,11,20,0.72) 0%, transparent 65%),
    linear-gradient(135deg, rgba(18,19,31,0.91) 0%, rgba(27,79,216,0.48) 55%, rgba(255,107,0,0.38) 100%);
  z-index: 0;
}
.hero-bg > * {
  position: relative;
  z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #12131F; }
::-webkit-scrollbar-thumb { background: #1B4FD8; border-radius: 3px; }
