/* WinBandits Custom CSS */
:root {
  --navy: #0d1b2a;
  --navy-mid: #122236;
  --navy-light: #1a3350;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --cream: #f5f0e8;
  --white: #ffffff;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.marquee-track {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #fff8e1 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.pulse-cta {
  animation: pulse-gold 2s infinite;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.parallax-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .parallax-hero {
    background-attachment: scroll;
  }
}

/* Prose Styles */
.prose {
  color: var(--cream);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.3rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1.1rem;
  color: #d4cfc7;
}

.prose a {
  color: var(--gold-light);
  text-decoration: underline;
}

.prose a:hover {
  color: #fff8e1;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #d4cfc7;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #d4cfc7;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  color: #b0a898;
  font-style: italic;
  margin: 1.5rem 0;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem auto;
  display: block;
}

.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;
  font-size: 0.9rem;
}

.prose th {
  background: var(--navy-light);
  color: var(--gold-light);
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid #2a4060;
}

.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid #1e3350;
  color: #d4cfc7;
  background: var(--navy-mid);
}

.prose tr:nth-child(even) td {
  background: #0f2035;
}

.site-nav-link {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
}

.site-nav-link:hover {
  color: #fff8e1;
  background: rgba(201,168,76,0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: #0d1b2a;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
  color: #0d1b2a;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  border: 2px solid var(--gold);
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #0d1b2a;
}

.card-navy {
  background: var(--navy-mid);
  border: 1px solid #2a4060;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-navy:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: #8fa8c4;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#mobile-menu {
  background: #0d1b2a;
}
