/* =========================================================
   Juega Con El King — Royal Velvet & Gold (2026 refresh)
   Display: Cinzel · Body: Poppins
   Palette: midnight violet base, plum glass cards, gold accent
========================================================= */
:root {
  --ink:        #100726;   /* page base, deep midnight violet */
  --ink-2:      #18093a;   /* secondary base for gradients */
  --plum:       #241248;   /* card surface */
  --plum-2:     #2e1659;   /* raised surface */
  --royal:      #7c3aed;   /* violet accent */
  --royal-soft: #9d6bff;

  --gold:       #e8b339;   /* primary gold */
  --gold-bright:#f6d06a;
  --gold-deep:  #b8862a;

  --light:      #f5f0ff;   /* primary text */
  --muted:      #c7bce0;   /* secondary text */
  --line:       rgba(232,179,57,0.22);   /* gold hairline */
  --line-soft:  rgba(255,255,255,0.10);

  --grad-gold:  linear-gradient(135deg, #f6d06a 0%, #e8b339 45%, #b8862a 100%);
  --grad-royal: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);

  --radius:     16px;
  --transition: 0.3s ease;
  --max-width:  1180px;

  --font-display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

/* =========================
   Base
=========================== */
body {
  font-family: var(--font-body);
  color: var(--light);
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(124,58,237,0.28), transparent 60%),
    radial-gradient(900px 500px at 95% 5%, rgba(232,179,57,0.12), transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 45%, #0b0419 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-align: center;
  letter-spacing: 0.01em;
  margin: 10px 0;
  color: var(--light);
}

p { color: var(--light); }
strong { color: var(--gold-bright); font-weight: 600; }

/* Section titles get a gold hairline rule — a recurring royal "seal" */
.content > h2,
.fancy-card > h2,
.promo-title,
.section-title,
.guide-title {
  position: relative;
  padding-bottom: 0.6rem;
}
.content > h2::after,
.fancy-card > h2::after,
.promo-title::after,
.section-title::after,
.guide-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 0.65rem auto 0;
  background: var(--grad-gold);
  border-radius: 2px;
}

/* =========================
   Header
=========================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(16, 7, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  padding: 0.75rem 2rem;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 7rem; height: auto; }

.auth-buttons { display: flex; gap: 1rem; }

.auth-btn {
  padding: 0.7rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--grad-gold);
  color: #2a1700;
  text-align: center;
  box-shadow: 0 6px 18px rgba(232,179,57,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232,179,57,0.45);
}

/* =========================
   Content container
=========================== */
.content-container {
  max-width: var(--max-width);
  margin: 1.25rem auto;
  padding: 0 1.5rem;
}

/* =========================
   Hero
=========================== */
.hero {
  position: relative;
  background: url('media/hero-bg.webp') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(124,58,237,0.45), transparent 60%),
    linear-gradient(180deg, rgba(8,3,20,0.55) 0%, rgba(8,3,20,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 2.5rem 1.25rem; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.28;
  padding-bottom: 0.12em;
  margin-bottom: 0.5em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 300;
  color: #f3ecff;
  margin-bottom: 1.8em;
}
.hero-tagline strong { color: var(--gold-bright); }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; }

/* =========================
   CTA buttons
=========================== */
.button-container { text-align: center; }

.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold);
  padding: 0.85rem 2.3rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-decoration: none;
  margin: 1rem 0;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.cta-button:hover {
  transform: translateY(-2px);
  background: rgba(232,179,57,0.12);
  box-shadow: 0 10px 26px rgba(232,179,57,0.25);
}

.cta-button.primary {
  background: var(--grad-gold);
  color: #2a1700;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(232,179,57,0.32);
}
.cta-button.primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--grad-gold);
  color: #2a1700;
  box-shadow: 0 12px 30px rgba(232,179,57,0.5);
}

.cta-button.secondary {
  background: var(--grad-royal);
  color: #fff;
  border-color: transparent;
}

/* =========================
   Cards / sections (real glass surface)
=========================== */
.card {
  background: linear-gradient(180deg, rgba(46,22,89,0.55), rgba(36,18,72,0.40));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  margin: 1.1rem 0;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}
/* gold top edge accent */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  border-radius: 2px;
}

.badge {
  position: absolute;
  top: -0.9rem; right: 1.25rem;
  background: var(--grad-gold);
  color: #2a1700;
  padding: 0.45rem 1.4rem;
  border-radius: 30px;
  font-weight: 700;
}

.spacer { height: 15px; }
.divider { height: 1px; background: var(--line); margin: 1.25rem 0; }

/* =========================
   Tech / spec tables
=========================== */
.tech-specs { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.tech-specs th, .tech-specs td {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-soft);
  vertical-align: top;
}
.tech-specs th {
  text-align: left;
  background: rgba(124,58,237,0.18);
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-weight: 600;
  width: 32%;
}
.tech-specs td { color: var(--light); }
.tech-specs a { color: var(--gold-bright); text-decoration: none; transition: color var(--transition); }
.tech-specs a:hover { color: #fff; text-decoration: underline; }

/* =========================
   Step guides
=========================== */
.step-guide {
  max-width: 820px;
  margin: 1.5rem auto;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: transparent;
  color: var(--light);
}
.guide-title, .guide-intro, .guide-outro { text-align: center; }
.guide-title { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: 1rem; }
.guide-intro { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.75rem; }
.guide-outro { font-size: 1rem; color: var(--muted); margin-top: 1.5rem; }

.step-list { list-style: none; padding: 0; margin: 0; position: relative; }
.step-list::after {
  content: "";
  position: absolute;
  left: 1rem; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(232,179,57,0.15));
  z-index: 0;
}
.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 3.25rem;
  z-index: 1;
}
.step-item:last-child { margin-bottom: 0; }
.step-item::before {
  position: absolute;
  left: 0; top: 0;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #2a1700;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(232,179,57,0.35);
}
.step-content { flex: 1; }
.step-title { font-family: var(--font-body); font-size: 1.15rem; text-align: left; margin: 0 0 0.4rem; color: var(--gold-bright); }
.step-item p { margin: 0; font-size: 1rem; color: var(--light); }

/* Emoji markers */
.registration-steps .step-item:nth-child(1)::before { content: "⚡"; }
.registration-steps .step-item:nth-child(2)::before { content: "📞"; }
.registration-steps .step-item:nth-child(3)::before { content: "✉️"; }
.registration-steps .step-item:nth-child(4)::before { content: "🤝"; }
.verification-steps .step-item:nth-child(1)::before { content: "🔑"; }
.verification-steps .step-item:nth-child(2)::before { content: "📝"; }
.verification-steps .step-item:nth-child(3)::before { content: "📱"; }
.verification-steps .step-item:nth-child(4)::before { content: "✉️"; }
.verification-steps .step-item:nth-child(5)::before { content: "📄"; }

/* =========================
   Fancy cards
=========================== */
.fancy-card {
  background: linear-gradient(180deg, rgba(46,22,89,0.55), rgba(36,18,72,0.40));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin: 1.25rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fancy-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.fancy-card-body p { font-size: 1.08rem; color: var(--light); line-height: 1.7; margin-bottom: 1.25rem; }

/* Troubleshoot list */
.troubleshoot-list, .system-requirements ul { list-style: none; padding: 0; }
.troubleshoot-list li, .system-requirements li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; color: var(--light); margin-bottom: 0.7rem;
}
.troubleshoot-list li i, .system-requirements li i { color: var(--gold); font-size: 1.2rem; }

/* =========================
   Promo tables / lists
=========================== */
.promo-table, .payment-table {
  width: 100%; border-collapse: collapse; margin-bottom: 1.25rem;
}
.promo-table th, .promo-table td,
.payment-table th, .payment-table td {
  padding: 0.85rem; border: 1px solid var(--line-soft); text-align: left;
  font-size: 0.97rem; color: var(--light);
}
.promo-table thead, .payment-table th { background: rgba(124,58,237,0.2); }
.promo-table th, .payment-table th { color: var(--gold-bright); font-weight: 600; }
.promo-table tbody tr:hover, .payment-table tbody tr:hover { background: rgba(232,179,57,0.07); }
.promo-table em { color: var(--gold-bright); font-style: normal; font-weight: 600; }

/* Promo section (royal callout) */
.promo-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(36,18,72,0.5));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.9rem;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 880px;
}
.promo-title { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: 1rem; }
.promo-intro { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.75rem; }
.promo-list { list-style: none; padding: 0; margin: 0 auto; max-width: 720px; }
.promo-item {
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.1rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.promo-item:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.promo-item::before {
  content: "👑";
  position: absolute; top: -10px; right: -8px;
  font-size: 1.3rem; transform: rotate(12deg);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.promo-icon { font-size: 1.7rem; color: var(--gold); flex-shrink: 0; }
.promo-text { font-size: 1rem; text-align: left; color: var(--light); }

/* =========================
   App download
=========================== */
.app-download { display: flex; justify-content: center; gap: 2rem; margin: 1.75rem 0; flex-wrap: wrap; }
.download-badge img { height: 58px; transition: transform var(--transition); }
.download-badge:hover img { transform: scale(1.06); }

.security-features ul, .system-requirements ul { margin: 1rem 0; }
.security-features li { color: var(--light); margin: 0.45rem 0; position: relative; padding-left: 1.4rem; list-style: none; }
.security-features ul { list-style: none; padding: 0; }
.security-features li::before { content: "♦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 0.2rem; }

/* =========================
   Payment block
=========================== */
.payment-block { background: linear-gradient(180deg, rgba(46,22,89,0.5), rgba(36,18,72,0.38)); text-align: center; }
.payments-intro, .payments-intro { max-width: 640px; margin: 0 auto 1.5rem; color: var(--muted); }

#payment-info { overflow: hidden; }
#payment-info .two-columns { display: flex; gap: 2rem; }
#payment-info .left-col, #payment-info .right-col { flex: 1; padding: 0.5rem; text-align: left; }

#payment-info .payment-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.6rem; margin-bottom: 1rem;
}
.payment-card, #payment-info .payment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
}
.payment-card:hover, #payment-info .payment-card:hover { transform: translateY(-3px); border-color: var(--line); }
.payment-card img, #payment-info .payment-card img {
  width: 64px; height: 38px; object-fit: contain;
  filter: grayscale(100%) brightness(1.6);
  transition: filter var(--transition), transform var(--transition);
}
.payment-card img:hover, #payment-info .payment-card img:hover { filter: none; transform: scale(1.06); }

#payment-info .payment-table th, #payment-info .payment-table td {
  padding: 0.55rem; font-size: 0.82rem; word-wrap: break-word;
}
.payment-table small, p small { color: var(--muted); }

/* =========================
   Providers grid
=========================== */
#providers {
  background: linear-gradient(180deg, rgba(46,22,89,0.5), rgba(36,18,72,0.38));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  margin: 1.25rem 0;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
  position: relative;
}
#providers::before {
  content: "";
  position: absolute; top: 0; left: 22px; right: 22px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.providers-intro { max-width: 640px; margin: 0 auto 1.5rem; text-align: center; color: var(--muted); }
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: 14px; align-items: center; justify-items: center; padding: 1rem 0;
}
.providers-grid img {
  width: 76px; height: 44px; object-fit: contain;
  filter: grayscale(100%) brightness(1.7) opacity(0.7);
  transition: filter var(--transition), transform var(--transition);
}
.providers-grid img:hover { filter: none; transform: scale(1.12); }

/* =========================
   Carousel (Swiper)
=========================== */
.swiper-slide img { width: 100%; height: auto; border-radius: 12px; display: block; }
.live-games-carousel { padding: 0.5rem 0 2.25rem; }
.swiper-button-next, .swiper-button-prev { color: var(--gold); }
.swiper-pagination-bullet { background: var(--muted); opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* =========================
   Game tile grids (replace the big sliders)
=========================== */
.live-casino-grid,
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 0.5rem;
}
.live-tile,
.game-tile {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(0,0,0,0.25);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.live-tile:hover,
.game-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(0,0,0,0.4);
}
.live-tile img,
.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.live-tile:hover img,
.game-tile:hover img { transform: scale(1.06); }
.live-tile figcaption,
.game-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.7rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(8,3,20,0.9));
}
.live-badge {
  position: absolute;
  top: 0.55rem; left: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(8,3,20,0.7);
  border: 1px solid var(--line);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,0.7);
  animation: live-pulse 1.8s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,0.65); }
  70%  { box-shadow: 0 0 0 6px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
@media (max-width: 480px) {
  .live-casino-grid,
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

/* =========================
   Benefits
=========================== */
#benefits {
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(36,18,72,0.45));
  border: 1px solid var(--line-soft);
  color: var(--light);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
}
.section-title { font-size: clamp(1.7rem, 4.5vw, 2.1rem); margin-bottom: 0.75rem; }
.intro, .summary { text-align: center; margin: 1rem auto; font-size: 1.1rem; max-width: 820px; color: var(--muted); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.1rem;
  margin: 1.5rem 0;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 16px 32px rgba(0,0,0,0.32);
}
.benefit-icon {
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit-card h3 { font-family: var(--font-body); font-size: 1.2rem; margin-bottom: 0.55rem; color: var(--gold-bright); }
.benefit-card p { font-size: 0.97rem; line-height: 1.6; color: var(--light); }

/* =========================
   FAQ
=========================== */
.faq-item { margin-bottom: 0.9rem; }
#faq details {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--transition);
}
#faq details[open] { border-color: var(--line); }
#faq summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  text-align: left;
  outline: none;
  color: var(--gold-bright);
  list-style: none;
}
#faq summary::-webkit-details-marker { display: none; }
#faq summary::before { content: "♦  "; color: var(--gold); }
#faq p { margin-top: 0.6rem; font-size: 0.96rem; line-height: 1.6; color: var(--light); text-align: left; }

.support-note { margin: 1rem auto; max-width: 820px; font-size: 0.95rem; color: var(--muted); text-align: center; }

/* =========================
   Footer
=========================== */
.site-footer {
  background: #0b0419;
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}
.footer-disclaimer { padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); margin-bottom: 1rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.footer-disclaimer strong { color: var(--gold-bright); }
.footer-logo-social img.logo-icon { width: 140px; margin-bottom: 0.5rem; }
.footer-links { margin-top: 0.75rem; }
.footer-links a, .social-links a { color: var(--gold-bright); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover, .social-links a:hover { color: #fff; }

.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.25rem; max-width: 900px; margin: 0 auto;
}
.trust-badges img { height: 38px; width: auto; opacity: 0.7; filter: grayscale(40%); transition: opacity var(--transition); }
.trust-badges img:hover { opacity: 1; }

.footer-bottom { padding: 0.75rem 1rem; font-size: 0.88rem; }
.footer-bottom a { color: var(--gold-bright); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* =========================
   Global link styling
=========================== */
a:not(.cta-button):not(.auth-btn):not(.download-badge),
a:not(.cta-button):not(.auth-btn):not(.download-badge):visited {
  color: var(--gold-bright);
  text-decoration: none;
}
a:not(.cta-button):not(.auth-btn):not(.download-badge):hover {
  color: #fff;
  text-decoration: underline;
}

/* =========================
   Responsive
=========================== */
@media (max-width: 768px) {
  header { padding: 0.65rem 1rem; }
  .content-container { padding: 0 1rem; }
  .hero { min-height: 440px; }
  #payment-info .two-columns { flex-direction: column; gap: 1rem; }
  .payment-table { display: block; overflow-x: auto; }
  .tech-specs th { width: 40%; }
  /* Bigger, easier-to-tap header CTA on mobile */
  .auth-btn { padding: 0.85rem 2.1rem; font-size: 1rem; }
}

@media (max-width: 480px) {
  /* Header CTA stays large and prominent on phones */
  .auth-btn { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
  .logo-icon { width: 5.5rem; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .cta-button { width: 100%; }
  .app-download { flex-direction: column; align-items: center; gap: 1rem; }
  .promo-table th, .promo-table td { padding: 0.55rem; font-size: 0.82rem; }
  .fancy-card-body p { font-size: 1rem; }
  .trust-badges img { height: 30px; }
}

/* Block sideways swiping of the whole page on touch devices,
   while leaving vertical scroll (and the game carousels) working */
@media (max-width: 1024px) and (pointer: coarse) {
  body { touch-action: pan-y; }
  .swiper, .live-games-carousel { touch-action: pan-x; }
}

/* Accessibility: visible focus + reduced motion */
a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
