/* =============================================================
   BDG PLAY — styles.css
   Theme       : Black & Gold
   Performance : Core Web Vitals optimised (CLS / LCP / INP)
   Updated     : 2026-02
   ============================================================= */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand */
  --gold:      #C9A84C;
  --gold-dk:   #A0872C;
  --gold-lt:   #F0D78C;
  --gold-grd:  linear-gradient(135deg, #C9A84C 0%, #A0872C 100%);
  --black:     #0D0D0D;
  --dark:      #1A1A1A;

  /* Surface */
  --off:       #FAFAFA;
  --lg:        #F5F5F5;
  --gray:      #E0E0E0;

  /* Text */
  --txt:       #1A1A1A;
  --muted:     #666666;

  /* Shadows */
  --sh-gold:   0 8px 24px rgba(201,168,76,.28);
  --sh-card:   0 2px 12px rgba(0,0,0,.07);
  --sh-header: 0 2px 16px rgba(0,0,0,.22);

  /* Semantic */
  --grn:       #16a34a;
  --grn-bg:    #f0fdf4;
  --grn-br:    #bbf7d0;
  --amb:       #d97706;
  --amb-bg:    #fffbeb;
  --amb-br:    #fde68a;
  --blue:      #1d4ed8;
  --blue-bg:   #eff6ff;
  --blue-br:   #bfdbfe;

  /* Timing */
  --tr:        .25s ease;

  /* Radius */
  --r-sm:      6px;
  --r-md:      10px;
  --r-lg:      16px;
  --r-xl:      20px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--txt);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

ul { list-style: none; }

/* ── 3. LAYOUT HELPERS ────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── 4. HEADER ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  contain: layout style;
  transition: box-shadow var(--tr);
}

.header.scrolled {
  box-shadow: var(--sh-header);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .5px;
  text-decoration: none;
  /* Gold gradient text */
  background: var(--gold-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  object-fit: contain;
}

/* Desktop nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold-lt);
  background: rgba(201,168,76,.12);
}

/* Header CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--gold-grd);
  color: var(--black) !important;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: .3px;
  transition: opacity var(--tr), box-shadow var(--tr);
  white-space: nowrap;
  text-decoration: none;
}

.cta-button:hover,
.cta-button:focus-visible {
  opacity: .9;
  box-shadow: var(--sh-gold);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-lt);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  letter-spacing: .2px;
  transition: background var(--tr);
}

.mobile-toggle:hover { background: rgba(201,168,76,.26); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,.18);
  padding: 12px 20px 16px;
  gap: 0;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .93rem;
  font-weight: 500;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--tr);
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--gold-lt);
}

.mobile-nav.open {
  display: flex;
  animation: slideDown .22s ease both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 5. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, #fffdf5 100%);
  overflow: hidden;
  padding: 64px 20px 56px;
}

/* Ambient glow — compositor-only, opacity changes only */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%,
    rgba(201,168,76,.12) 0%,
    transparent 70%);
  opacity: .07;
  will-change: opacity;
  animation: heroPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%,100% { opacity: .07; }
  50%      { opacity: .13; }
}

.hero-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: .2px;
}

.hero-subtitle {
  font-size: clamp(.93rem, 2vw, 1.08rem);
  color: #444;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* Hero internal link */
.hero-link {
  color: var(--gold-dk);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(160,135,44,.35);
  text-underline-offset: 3px;
  transition: color var(--tr);
}

.hero-link:hover { color: var(--gold); }

/* CTA buttons row */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold-grd);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-md);
  letter-spacing: .3px;
  transition: opacity var(--tr), box-shadow var(--tr), transform var(--tr);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: .92;
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--black);
  border-radius: var(--r-md);
  letter-spacing: .3px;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--black);
  color: var(--gold-lt);
  border-color: var(--black);
}

/* Hero trust bar */
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta i {
  color: var(--gold-dk);
  font-size: .85rem;
}

/* Hero / centre images */
.center-image {
  margin: 28px auto 0;
  max-width: 600px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}

.center-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

/* ── 6. SECTIONS ──────────────────────────────────────────── */
.section {
  padding: 64px 0;
  background: #fff;
}

.section-alt {
  background: var(--lg);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,.14);
  color: var(--gold-dk);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  font-size: .96rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Section H2 (no section-header wrapper) */
.section h2,
.section-alt h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 24px;
}

/* Section H3 */
.section h3,
.section-alt h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
  margin: 24px 0 12px;
}

/* ── 7. CARD ──────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray);
  padding: 36px 40px;
  box-shadow: var(--sh-card);
}

.section-alt .card { background: #fff; }

.card p {
  margin-bottom: 16px;
  color: #333;
  line-height: 1.8;
}

.card p:last-child { margin-bottom: 0; }

.card ul {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card ul li {
  padding-left: 0;
  color: #333;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card ul li i {
  color: var(--gold-dk);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── 8. QUICK FACTS ───────────────────────────────────────── */
.quick-facts {
  background: var(--lg);
  border-radius: var(--r-md);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  margin-top: 24px;
}

.quick-facts h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-facts h3 i { color: var(--gold-dk); }

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #333;
  line-height: 1.65;
}

.facts-list li i {
  color: var(--grn);
  margin-top: 3px;
  flex-shrink: 0;
}

.facts-list li strong {
  color: var(--black);
  font-weight: 600;
  margin-right: 4px;
}

/* ── 9. EXPERT TIP / WARNING TIP ──────────────────────────── */
.expert-tip {
  display: flex;
  gap: 14px;
  background: var(--grn-bg);
  border: 1px solid var(--grn-br);
  border-left: 4px solid var(--grn);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 22px 0;
}

.warning-tip {
  display: flex;
  gap: 14px;
  background: var(--amb-bg);
  border: 1px solid var(--amb-br);
  border-left: 4px solid var(--amb);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 22px 0;
}

.expert-tip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.expert-tip .expert-tip-icon i { color: var(--grn); }
.warning-tip .expert-tip-icon i { color: var(--amb); }

.expert-tip-text {
  font-size: .9rem;
  color: #374151;
  line-height: 1.75;
}

.expert-tip-text strong {
  display: block;
  color: var(--black);
  margin-bottom: 4px;
  font-weight: 700;
}

/* Expert analysis box (blue) */
.expert-analysis {
  background: var(--blue-bg);
  border: 1px solid var(--blue-br);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-md);
  padding: 20px 26px;
  margin: 22px 0;
  font-size: .91rem;
  color: #1e3a8a;
  line-height: 1.75;
}

.expert-analysis strong {
  display: block;
  color: var(--blue);
  margin-bottom: 6px;
  font-weight: 700;
  font-size: .95rem;
}

/* ── 10. PAYMENT METHODS ─────────────────────────────────── */
.payment-methods {
  margin-top: 28px;
  background: var(--lg);
  border-radius: var(--r-md);
  padding: 22px 26px;
  border: 1px solid var(--gray);
}

.payment-methods h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-methods h3 i { color: var(--gold-dk); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--txt);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.payment-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(201,168,76,.16);
}

.payment-item i {
  color: var(--gold-dk);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── 11. INFO TABLE ──────────────────────────────────────── */
.info-table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border-radius: var(--r-md);
}

.info-table-wrap h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-table-wrap h3 i { color: var(--gold-dk); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
}

.info-table thead tr {
  background: linear-gradient(135deg, var(--black), var(--dark));
  color: #fff;
}

.info-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
  white-space: nowrap;
}

.info-table thead th:first-child {
  border-left: 4px solid var(--gold);
}

.info-table tbody tr {
  border-bottom: 1px solid var(--gray);
  transition: background var(--tr);
}

.info-table tbody tr:last-child { border-bottom: none; }

.info-table tbody tr:hover { background: var(--lg); }

.info-table td {
  padding: 13px 18px;
  color: #333;
  vertical-align: top;
  line-height: 1.6;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--black);
}

/* ── 12. GAMES GRID ──────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.game-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-card);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}

/* Dark overlay on hover */
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  border-radius: var(--r-lg);
  transition: opacity var(--tr);
  pointer-events: none;
}

.game-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
  transform: translateY(-3px);
}

.game-card:hover::before { opacity: .92; }

.game-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  transition: background var(--tr), border-color var(--tr);
}

.game-card:hover .game-icon-wrap {
  background: rgba(201,168,76,.18);
  border-color: var(--gold);
}

.game-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
}

.game-title {
  position: relative;
  z-index: 1;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  transition: color var(--tr);
}

.game-card:hover .game-title { color: var(--gold-lt); }

.game-desc {
  position: relative;
  z-index: 1;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  transition: color var(--tr);
}

.game-card:hover .game-desc { color: rgba(255,255,255,.78); }

/* ── 13. TRUST SECTION (dark bg) ─────────────────────────── */
.trust-section {
  background: var(--black);
  padding: 56px 20px;
}

.trust-section .container {
  max-width: 1120px;
  margin: 0 auto;
}

.trust-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: border-color var(--tr), background var(--tr);
}

.trust-badge:hover {
  border-color: rgba(201,168,76,.55);
  background: rgba(201,168,76,.07);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--gold-lt);
  font-size: 1.1rem;
}

.trust-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.trust-text span {
  font-size: .83rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}

/* ── 14. AUTHOR CARD ─────────────────────────────────────── */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--lg);
  border: 1px solid var(--gray);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin-top: 28px;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--gold-grd);
  border-radius: 50%;
  color: var(--black);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info { flex: 1; min-width: 0; }

.author-name {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.author-role {
  display: block;
  font-size: .82rem;
  color: var(--gold-dk);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .2px;
}

.author-bio {
  font-size: .88rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.author-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,168,76,.13);
  color: var(--gold-dk);
  font-size: .77rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,.25);
}

.author-tags span i { font-size: .72rem; }

.author-link {
  display: inline-block;
  font-size: .87rem;
  font-weight: 700;
  color: var(--gold-dk);
  border-bottom: 1.5px solid rgba(160,135,44,.35);
  padding-bottom: 1px;
  transition: color var(--tr), border-color var(--tr);
}

.author-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── 15. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-banner p {
  color: rgba(255,255,255,.72);
  font-size: .98rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

/* CTA text link (inline in paragraph) */
.cta-text-link {
  color: var(--gold-lt);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(240,215,140,.35);
  text-underline-offset: 3px;
  transition: color var(--tr);
}

.cta-text-link:hover { color: var(--gold); }

/* White button (used on dark bg) */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold-grd);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-md);
  letter-spacing: .3px;
  transition: opacity var(--tr), box-shadow var(--tr), transform var(--tr);
  text-decoration: none;
}

.btn-white:hover,
.btn-white:focus-visible {
  opacity: .92;
  box-shadow: var(--sh-gold);
  transform: translateY(-2px);
}

/* ── 16. FAQ ──────────────────────────────────────────────── */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.faq-item:hover { border-color: rgba(201,168,76,.45); }

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,.14);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--tr);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px; /* Accessibility: touch target */
}

.faq-question:hover,
.faq-item.active .faq-question {
  color: var(--gold-dk);
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--lg);
  border-radius: 50%;
  color: var(--muted);
  font-size: .85rem;
  transition: background var(--tr), color var(--tr), transform var(--tr);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .9rem;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid var(--gray);
}

.faq-item.active .faq-answer { display: block; }

/* ── 17. INLINE BLUE LINK ────────────────────────────────── */
.blue-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(29,78,216,.28);
  text-underline-offset: 3px;
  transition: color var(--tr);
}

.blue-link:hover { color: var(--gold-dk); }

/* ── 18. FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 56px 0 0;
  color: rgba(255,255,255,.72);
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand column */
.footer-brand h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  /* Gold gradient text */
  background: var(--gold-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255,255,255,.58);
  margin-bottom: 20px;
}

/* Social links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(201,168,76,.22);
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--gold-grd);
  color: var(--black);
  border-color: var(--gold);
}

/* Footer columns */
.footer-column h4 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  transition: color var(--tr);
  line-height: 1.4;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-lt);
}

/* Footer bottom bar */
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
}

.footer-bottom p + p { margin-top: 8px; }

.footer-disclaimer {
  font-size: .76rem !important;
  color: rgba(255,255,255,.32) !important;
  max-width: 780px;
  margin: 0 auto;
}

/* ── 19. ACCESSIBILITY ────────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top .2s;
}

.skip-link:focus { top: 8px; }

/* ── 20. RESPONSIVE ───────────────────────────────────────── */

/* Large tablet / small desktop */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .card {
    padding: 26px 24px;
  }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-tags { justify-content: center; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-menu    { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav  { display: none; } /* overridden by .open */

  .nav-container { height: 58px; }

  /* Hero */
  .hero { padding: 44px 16px 40px; }

  .hero h1 { font-size: 1.55rem; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
  }

  /* Section */
  .section  { padding: 44px 0; }
  .section-alt { padding: 44px 0; }

  .section-header { margin-bottom: 28px; }

  /* Games grid → single col */
  .games-grid { grid-template-columns: 1fr; }

  /* Trust grid → single col */
  .trust-grid { grid-template-columns: 1fr; }

  /* Payment grid → single col */
  .payment-grid { grid-template-columns: 1fr; }

  /* Card */
  .card { padding: 22px 18px; }

  /* FAQ */
  .faq-question { font-size: .88rem; padding: 16px 16px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }

  /* Author card */
  .author-card { padding: 22px 18px; }

  /* CTA banner */
  .cta-banner { padding: 44px 16px; }
  .btn-white { width: 100%; justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.38rem; }
  .section-title { font-size: 1.3rem; }

  .quick-facts { padding: 16px 16px; }
  .expert-tip,
  .warning-tip { padding: 14px 16px; }

  .info-table { font-size: .82rem; }
  .info-table th,
  .info-table td { padding: 10px 12px; }

  .logo a { font-size: 1.15rem; }

  .hero-meta { gap: 12px; font-size: .78rem; }

  .author-tags span { font-size: .72rem; padding: 4px 9px; }
}

/* ── 21. REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .hero::before { animation: none; }
  .mobile-nav.open { animation: none; }
}

/* ── 22. PRINT ───────────────────────────────────────────── */
@media print {
  .header,
  .mobile-nav,
  .cta-banner,
  .trust-section,
  .hero-cta,
  .footer { display: none; }

  body { color: #000; font-size: 11pt; }

  .section, .section-alt { padding: 20px 0; }

  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
