/* ============================================
   REALZ CASINO — Ancient Egypt Theme
   Custom CSS: keyframes, particles, marquee,
   prose styling, overrides
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep: #060a1f;
  --bg-primary: #0a0f2e;
  --bg-secondary: #111842;
  --bg-card: #151c50;
  --bg-card-hover: #1a2260;
  --gold: #d4a843;
  --gold-light: #f0c84a;
  --gold-dim: #a07c2e;
  --scarab-teal: #1bb5a0;
  --nile-blue: #1565c0;
  --sand: #e8d5a3;
  --sand-light: #f5edd6;
  --text-primary: #eae6e1;
  --text-muted: #9a97a8;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Egyptian SVG Pattern ---------- */
.egypt-pattern {
  background-color: var(--bg-primary);
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L40 25 H20Z' fill='none' stroke='%23d4a84312' stroke-width='1'/%3E%3Ccircle cx='30' cy='45' r='4' fill='none' stroke='%23d4a84308' stroke-width='1'/%3E%3Cpath d='M10 55 L15 45 L20 55' fill='none' stroke='%23d4a84306' stroke-width='.7'/%3E%3Cpath d='M42 55 L47 45 L52 55' fill='none' stroke='%23d4a84306' stroke-width='.7'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.egypt-hero-bg {
  background: linear-gradient(135deg, #0c1238 0%, #111d5a 40%, #0f154a 70%, #0a0f2e 100%);
  position: relative;
}

.egypt-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8 L55 35 H25Z' fill='none' stroke='%23d4a84318' stroke-width='1.2'/%3E%3Cpath d='M15 60 L25 40 L35 60Z' fill='%23d4a84306'/%3E%3Cpath d='M55 65 L62 50 L69 65Z' fill='%23d4a84305'/%3E%3Ccircle cx='40' cy='55' r='6' fill='none' stroke='%23f0c84a0d' stroke-width='1'/%3E%3Cpath d='M32 55 Q40 48 48 55' fill='none' stroke='%23f0c84a10' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: .5;
  pointer-events: none;
}

/* ---------- Particle Animation ---------- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-rise linear infinite;
}

.particle:nth-child(1) {
  width: 3px; height: 3px;
  left: 10%;
  animation-duration: 14s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 2px; height: 2px;
  left: 25%;
  animation-duration: 18s;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  width: 4px; height: 4px;
  left: 40%;
  animation-duration: 12s;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  width: 2px; height: 2px;
  left: 55%;
  animation-duration: 16s;
  animation-delay: 1s;
}
.particle:nth-child(5) {
  width: 3px; height: 3px;
  left: 70%;
  animation-duration: 20s;
  animation-delay: 3s;
}
.particle:nth-child(6) {
  width: 2px; height: 2px;
  left: 85%;
  animation-duration: 15s;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  width: 3px; height: 3px;
  left: 5%;
  animation-duration: 17s;
  animation-delay: 7s;
}
.particle:nth-child(8) {
  width: 2px; height: 2px;
  left: 92%;
  animation-duration: 13s;
  animation-delay: 6s;
}

@keyframes particle-rise {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: .45;
  }
  50% {
    opacity: .25;
    transform: translateY(50vh) translateX(30px) scale(1);
  }
  90% {
    opacity: .1;
  }
  100% {
    transform: translateY(-10vh) translateX(-20px) scale(.5);
    opacity: 0;
  }
}

/* ---------- Marquee Animation ---------- */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee-scroll 28s linear infinite;
}

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

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

.provider-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid rgba(212, 168, 67, 0.15);
  color: var(--sand-light);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.provider-chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 2px 16px rgba(212,168,67,.2);
  transform: translateY(-2px);
}

/* ---------- Pulse CTA ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0f2e;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(212,168,67,.35),
    0 0 30px rgba(212,168,67,.1);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 6px 25px rgba(212,168,67,.5),
    0 0 50px rgba(212,168,67,.15);
}

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0f2e;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(212,168,67,.3);
}
.btn-cta-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(212,168,67,.45);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background: rgba(212,168,67,.1);
  color: var(--gold-light);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 4px 15px rgba(212,168,67,.35),
      0 0 30px rgba(212,168,67,.1);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(212,168,67,.55),
      0 0 50px rgba(212,168,67,.2);
  }
}

/* ---------- Game Card ---------- */
.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,67,.08);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,.25);
  box-shadow: 0 12px 35px rgba(0,0,0,.4), 0 0 20px rgba(212,168,67,.1);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.game-card:hover img {
  transform: scale(1.06);
}

.game-card .card-body {
  padding: 0.75rem;
}
.game-card .card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card .card-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}
.badge-rtp { background: #16a34a; color: #fff; }
.badge-jackpot { background: #dc2626; color: #fff; }
.badge-bonus { background: var(--gold); color: #0a0f2e; }
.badge-popular { background: var(--nile-blue); color: #fff; }

.game-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,15,46,.65);
  opacity: 0;
  transition: opacity .3s ease;
}
.game-card:hover .play-overlay {
  opacity: 1;
}

/* ---------- Feature Overlay ---------- */
.feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,31,.92) 0%, rgba(6,10,31,.4) 50%, rgba(6,10,31,.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* ---------- Countdown ---------- */
.countdown-container {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.countdown-step {
  opacity: 0;
  animation: countdown-pop 6s ease-in-out infinite;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-light);
}
.countdown-step:nth-child(1) { animation-delay: 0s; }
.countdown-step:nth-child(2) { animation-delay: 1.2s; }
.countdown-step:nth-child(3) { animation-delay: 2.4s; }
.countdown-step:nth-child(4) { animation-delay: 3.6s; }
.countdown-step:nth-child(5) { animation-delay: 4.8s; color: #22c55e; }

@keyframes countdown-pop {
  0%   { opacity: 0; transform: scale(.7); }
  8%   { opacity: 1; transform: scale(1.1); }
  16%  { transform: scale(1); }
  25%  { opacity: 1; }
  35%  { opacity: 0; transform: scale(.9); }
  100% { opacity: 0; }
}

/* ---------- Section Shared ---------- */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-spacing {
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .section-spacing { padding: 4rem 1.5rem; }
}

/* ---------- Tabs ---------- */
.tab-group {
  display: flex;
  gap: 0.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  padding: 0.25rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}
.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn.active {
  background: var(--gold);
  color: #0a0f2e;
  box-shadow: 0 2px 8px rgba(212,168,67,.3);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ---------- Table ---------- */
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.875rem;
}
.payment-table thead th {
  background: var(--bg-card);
  color: var(--gold);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid rgba(212,168,67,.15);
}
.payment-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text-primary);
}
.payment-table tbody tr {
  background: var(--bg-secondary);
  transition: background .2s ease;
}
.payment-table tbody tr:hover {
  background: var(--bg-card);
}
.payment-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- Prose ---------- */
.prose {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-primary);
  line-height: 1.75;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sand-light);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  opacity: .92;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.prose ul li {
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  opacity: .9;
}
.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover {
  color: var(--gold-light);
}
.prose strong {
  color: var(--sand-light);
  font-weight: 600;
}

/* ---------- Rating Stars ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
}
.star-filled {
  color: var(--gold);
}
.star-empty {
  color: rgba(212,168,67,.25);
}

/* ---------- Review Card ---------- */
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(212,168,67,.08);
  transition: border-color 0.3s ease;
}
.review-card:hover {
  border-color: rgba(212,168,67,.2);
}

/* ---------- Promo Card ---------- */
.promo-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(212,168,67,.1);
  text-align: center;
  transition: all 0.35s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,168,67,.12);
}

/* ---------- Why-Choose Card ---------- */
.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.04);
  text-align: center;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,168,67,.15);
  transform: translateY(-3px);
}

/* ---------- Author ---------- */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(212,168,67,.12);
}
@media (max-width: 640px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #111d5a 0%, #1a247a 50%, #0f154a 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,.15);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(212,168,67,.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Sticky Header Blur ---------- */
.header-blur {
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(6,10,31,.82);
  border-bottom: 1px solid rgba(212,168,67,.08);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.mobile-menu.open {
  max-height: 320px;
  opacity: 1;
}

/* ---------- Glow Ring ---------- */
.glow-ring {
  box-shadow:
    0 0 0 3px rgba(212,168,67,.15),
    0 0 30px rgba(212,168,67,.08);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dim);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(212,168,67,.3);
  color: #fff;
}

/* ---------- Responsive Overrides ---------- */
@media (max-width: 640px) {
  .section-title {
    font-size: 1.35rem;
  }
  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .section-spacing {
    padding: 2rem 0.75rem;
  }
}

/* ---------- Smooth Image Load ---------- */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img.loaded, img[loading="lazy"].loaded {
  opacity: 1;
}

/* ---------- Accessible Focus ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Table Responsive Wrapper ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,168,67,.1);
}

/* ============================================
   INNER PAGES — Filters, Accordion, Steps, etc.
   ============================================ */

/* ---------- Filter Chips ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--sand-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  user-select: none;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(212,168,67,.25);
}

/* ---------- Expandable / Accordion ---------- */
.expandable {
  border: 1px solid rgba(212,168,67,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
}
.expandable-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--sand-light);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
}
.expandable-trigger:hover {
  background: rgba(212,168,67,.04);
  color: var(--gold);
}
.expandable-trigger .chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.expandable.open .expandable-trigger .chevron {
  transform: rotate(180deg);
}
.expandable-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}
.expandable.open .expandable-body {
  max-height: 2000px;
  padding: 0 1.25rem 1.25rem;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  background: transparent;
  border: none;
  color: var(--sand-light);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question .faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.faq-item.open .faq-question .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1rem;
}
.faq-answer p {
  color: var(--text-primary);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Step Indicator ---------- */
.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}
.step-item {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 1.75rem;
  border-left: 2px solid rgba(212,168,67,.15);
  margin-left: 1.1rem;
}
.step-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(212,168,67,.3);
}
.step-title {
  font-weight: 700;
  color: var(--sand-light);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.step-desc {
  color: var(--text-primary);
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- Provider Category Card ---------- */
.provider-category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(212,168,67,.08);
  transition: all 0.3s ease;
}
.provider-category-card:hover {
  border-color: rgba(212,168,67,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

/* ---------- Hint / Info Box ---------- */
.info-box {
  background: linear-gradient(135deg, rgba(27,181,160,.08), rgba(27,181,160,.02));
  border: 1px solid rgba(27,181,160,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box-gold {
  background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(212,168,67,.02));
  border: 1px solid rgba(212,168,67,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.warning-box {
  background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(239,68,68,.02));
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---------- Badge Inline ---------- */
.inline-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.inline-badge-gold {
  background: rgba(212,168,67,.15);
  color: var(--gold);
}
.inline-badge-green {
  background: rgba(22,163,74,.15);
  color: #4ade80;
}
.inline-badge-blue {
  background: rgba(21,101,192,.15);
  color: #60a5fa;
}

/* ---------- Game Grid Filter Transition ---------- */
.game-grid-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.game-grid-item.hidden-filter {
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Page Hero Small ---------- */
.page-hero {
  background: linear-gradient(135deg, #0c1238 0%, #111d5a 40%, #0f154a 70%, #0a0f2e 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(212,168,67,.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,168,67,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Prose extensions for inner pages ---------- */
.prose h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand-light);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.prose ol li {
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  opacity: 0.9;
}
.prose table {
  width: 100%;
  margin: 1rem 0 1.5rem;
}

/* ---------- Troubleshoot Card ---------- */
.troubleshoot-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.04);
  margin-bottom: 1rem;
}
.troubleshoot-card h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ---------- Verification Checklist ---------- */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.checklist-item:last-child {
  border-bottom: none;
}
.check-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
