/* MondCasino Royal Night Custom CSS */

:root {
  --navy-deep: #070b1f;
  --navy-mid: #0f1535;
  --navy-light: #1a2050;
  --gold-bright: #f0c14b;
  --gold-mid: #c9a227;
  --gold-dim: #9a7a1e;
  --text-light: #e8eaf6;
  --text-muted: #9fa8c0;
}

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

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

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 8px rgba(240,193,75,0.4); }
  50% { box-shadow: 0 0 24px rgba(240,193,75,0.9); }
}

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

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

.marquee-track {
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}

.glow-btn {
  animation: glow 2.4s ease-in-out infinite;
}

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

/* Prose styles for Markdown content */
.prose {
  color: var(--text-light);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
}

.prose h2 {
  color: var(--gold-bright);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.3rem;
}

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

.prose p {
  margin-bottom: 1.1rem;
  color: var(--text-light);
}

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

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

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

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

.prose li {
  margin-bottom: 0.4rem;
  color: var(--text-light);
}

.prose blockquote {
  border-left: 4px solid var(--gold-mid);
  padding-left: 1em;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.2rem 0;
}

.prose img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1.2rem 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.2rem;
}

.prose thead {
  background: var(--navy-light);
}

.prose th {
  color: var(--gold-bright);
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--gold-dim);
}

.prose td {
  padding: 0.5em 1em;
  border: 1px solid #2a2f5a;
  color: var(--text-light);
  background: var(--navy-mid);
}

.prose tr:nth-child(even) td {
  background: var(--navy-deep);
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* Mobile menu */
#mobile-menu { background: #0f1535; }

/* Star rating */
.star-gold { color: var(--gold-bright); }

/* Card hover */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(240,193,75,0.2);
}

/* Gold border */
.border-gold { border-color: var(--gold-mid); }

/* Overflow helper */
.overflow-x-auto { overflow-x: auto; }
