/* =============================================
   LEGZO REVIEW — Editorial Design System
   Clean review-site aesthetic (not casino)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg:           #f1f5f9;
  --bg-card:      #ffffff;
  --bg-header:    #0f172a;
  --bg-nav:       #1e293b;
  --bg-footer:    #0f172a;
  --primary:      #3b82f6;
  --primary-d:    #2563eb;
  --primary-lt:   #eff6ff;
  --accent:       #f59e0b;
  --accent-lt:    #fef3c7;
  --green:        #10b981;
  --red:          #ef4444;
  --text:         #0f172a;
  --text-2:       #334155;
  --text-3:       #64748b;
  --text-4:       #94a3b8;
  --border:       #e2e8f0;
  --border-2:     #cbd5e1;
  --shadow:       0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 24px rgba(0,0,0,.1);
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    14px;
  --header-h:     64px;
  --sidebar-w:    240px;
  --max-w:        1160px;
  --font-ui:      'Inter', system-ui, sans-serif;
  --font-heading: 'Sora', 'Inter', sans-serif;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration:none; }
a:hover { text-decoration:underline; }
img { display:block; max-width:100%; }
button { cursor:pointer; font-family:var(--font-ui); border:none; }

/* ── LAYOUT ── */
.page-layout {
  display: grid;
  grid-template-rows: var(--header-h) 1fr auto;
  min-height: 100vh;
}
.page-body {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  gap: 24px;
}
.site-main {
  padding: 28px 0 48px;
  min-width: 0;
}

/* ── HEADER ── */
.site-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo em {
  font-style: normal;
  color: var(--accent);
}
.logo sup {
  font-size: .5rem;
  vertical-align: super;
  font-weight: 500;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-nav {
  display: flex;
  gap: 2px;
  margin-left: 12px;
}
.header-nav-link {
  color: #cbd5e1;
  font-size: .83rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.header-nav-link:hover,
.header-nav-link.active {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}
.header-spacer { flex: 1; }
.header-search {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  color: #fff;
  font-size: .83rem;
  width: 200px;
  outline: none;
  transition: border-color .2s;
}
.header-search::placeholder { color: #94a3b8; }
.header-search:focus { border-color: var(--primary); }
.header-actions { display:flex; gap:8px; align-items:center; }
.btn-header-login {
  padding: 7px 16px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  font-size: .83rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-header-login:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.btn-header-cta {
  padding: 7px 18px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .83rem;
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.btn-header-cta:hover { background: var(--primary-d); transform: translateY(-1px); }

/* ── SIDEBAR ── */
.site-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  padding: 20px 0 20px;
  align-self: start;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sidebar-heading {
  padding: 12px 16px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.sidebar-nav-item:last-child { border-bottom: none; }
.sidebar-nav-item:hover { background: var(--primary-lt); color: var(--primary); text-decoration:none; }
.sidebar-nav-item.active { background: var(--primary-lt); color: var(--primary); font-weight:600; }
.sidebar-nav-item svg { width:16px; height:16px; flex-shrink:0; }
.sidebar-nav-item .nav-icon { font-size:1rem; }

.sidebar-cta-box {
  margin-top: 16px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  color: #fff;
}
.sidebar-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.sidebar-cta-box p {
  font-size: .75rem;
  opacity: .85;
  margin-bottom: 14px;
  line-height: 1.5;
}
.sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 9px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #0f172a;
  font-weight: 800;
  font-size: .85rem;
  transition: opacity .2s;
}
.sidebar-cta-btn:hover { opacity: .9; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-3);
  margin-bottom: 20px;
}
.bc-link { color: var(--primary); }
.bc-link:hover { text-decoration:underline; }
.bc-sep { color: var(--border-2); }
.bc-current { color: var(--text-2); font-weight: 500; }

/* ── BUTTONS ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .1s, box-shadow .2s;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,130,246,.3);
}
.cta-btn.cta-accent {
  background: var(--accent);
  color: #0f172a;
}
.cta-btn.cta-accent:hover {
  background: #d97706;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.cta-btn.cta-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.cta-btn.cta-outline:hover { background: var(--primary-lt); box-shadow:none; }
.cta-btn.cta-lg { padding: 13px 30px; font-size: 1rem; }

/* ── PAGE TITLE ── */
.page-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.page-subtitle {
  color: var(--text-3);
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── CARD ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-body { padding: 24px; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

/* ── SECTION HEADER ── */
.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-2);
}

/* ── HERO BANNERS ── */
.hero-banners {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.banner-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s, box-shadow .2s;
}
.banner-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.banner-card.b1 { background: linear-gradient(135deg,#1e3a5f,#1e40af); }
.banner-card.b2 { background: linear-gradient(135deg,#14532d,#065f46); }
.banner-card.b3 { background: linear-gradient(135deg,#7c2d12,#92400e); }
.banner-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.banner-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.banner-sub { font-size: .78rem; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.banner-btn {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  transition: background .2s;
  cursor: pointer;
}
.banner-btn:hover { background: rgba(255,255,255,.25); }

/* ── PAYMENT STRIP ── */
.payment-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: .78rem;
  color: var(--text-3);
  font-weight: 600;
}
.payment-strip span { letter-spacing: .3px; }

/* ── INLINE CTA ── */
.inline-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  color: #fff;
}
.inline-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.inline-cta-text p { font-size: .83rem; opacity: .85; }

/* ── GAME GRID ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.game-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg,#e2e8f0,#cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--text-3);
  font-size: .78rem;
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.game-thumb .game-icon { font-size: 1.8rem; }
.game-info { padding: 10px 12px; }
.game-name { font-weight: 700; font-size: .83rem; color: var(--text); }
.game-provider { font-size: .72rem; color: var(--text-3); margin-top: 2px; }

/* ── FEATURES PANEL ── */
.games-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  margin-bottom: 32px;
}
.features-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.features-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.features-tab {
  flex: 1;
  padding: 10px;
  font-size: .78rem;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-3);
  transition: all .15s;
  border-bottom: 2px solid transparent;
}
.features-tab.active, .features-tab:hover {
  color: var(--primary);
  background: var(--primary-lt);
  border-bottom-color: var(--primary);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.feature-item {
  padding: 10px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.feature-item:hover { background: var(--primary-lt); color: var(--primary); }

/* ── SEO TEXT BLOCK ── */
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}
.seo-block h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.seo-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 18px 0 6px;
}
.seo-block p {
  color: var(--text-3);
  font-size: .875rem;
  line-height: 1.85;
  margin-bottom: 10px;
}

/* ── BIG CTA BANNER ── */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin: 32px 0;
  box-shadow: var(--shadow);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-banner p {
  color: var(--text-3);
  font-size: .9rem;
  margin-bottom: 20px;
}

/* ── RATING CARD ── */
.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.rating-overall {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.rating-score-big {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.rating-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }
.rating-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.rating-badge.good { background: #dcfce7; color: #15803d; }
.rating-badge.mid  { background: #fef9c3; color: #a16207; }
.rating-badge.low  { background: #fee2e2; color: #b91c1c; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .83rem;
}
.rating-row:last-child { border-bottom: none; }
.rating-label { flex: 1; color: var(--text-2); font-weight: 500; }
.rating-bar {
  width: 100px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #6366f1);
  border-radius: 3px;
}
.rating-score { font-weight: 700; color: var(--primary); min-width: 32px; text-align:right; }
.score-high { color: var(--green); }
.score-mid  { color: var(--accent); }
.score-low  { color: var(--red); }

/* ── PROS / CONS ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.pros-box { border-left: 3px solid var(--green); }
.cons-box { border-left: 3px solid var(--red); }
.pc-title {
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pc-item:last-child { border-bottom:none; }
.icon-check { color: var(--green); font-size: .9rem; }
.icon-cross  { color: var(--red);   font-size: .9rem; }

/* ── REVIEW SECTION ── */
.review-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.review-section h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-badge {
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
}
.score-high { background:#dcfce7; color:#15803d; }
.score-mid  { background:#fef9c3; color:#a16207; }
.score-low  { background:#fee2e2; color:#b91c1c; }

/* ── BONUS CARD ── */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}
.bonus-card-body { padding: 28px; }
.bonus-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.bonus-desc {
  font-size: .83rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bonus-img {
  background: linear-gradient(135deg,#dbeafe,#bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  min-height: 200px;
}

/* ── TERMS TABLE ── */
.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
  margin: 14px 0;
}
.terms-table th {
  background: #f8fafc;
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--text-3);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid var(--border);
}
.terms-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.terms-table tr:last-child td { border-bottom: none; }
.terms-table tr:hover td { background: var(--primary-lt); }

/* ── PROMO CODE BOX ── */
.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  margin: 20px 0;
  box-shadow: 0 0 0 4px var(--accent-lt);
  flex-wrap: wrap;
}
.promo-label { font-size: .72rem; color: var(--text-3); margin-bottom: 4px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.promo-code {
  font-family: 'Sora', monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 3px;
}
.promo-sub { font-size: .75rem; color: var(--text-3); margin-bottom: 8px; }
.btn-copy {
  padding: 9px 20px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #0f172a;
  font-weight: 800;
  font-size: .85rem;
  transition: opacity .2s;
}
.btn-copy:hover { opacity: .85; }
.btn-copy.copied { background: var(--green); color: #fff; }

/* ── BONUS TYPES GRID ── */
.bonus-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.bonus-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}
.bonus-type-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.bonus-type-icon { font-size: 1.6rem; margin-bottom: 10px; }
.bonus-type-name { font-weight: 700; font-size: .9rem; margin-bottom: 5px; }
.bonus-type-desc { font-size: .78rem; color: var(--text-3); line-height: 1.5; }

/* ── FAQ ── */
.faq-list { margin: 20px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 14px 18px;
  font-weight: 600; font-size: .875rem;
  background: none; border: none;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--primary-lt); color: var(--primary); }
.faq-arrow { transition: transform .25s; color: var(--text-3); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  color: var(--text-3); font-size: .83rem; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 14px 18px; border-top: 1px solid var(--border); }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin: 20px 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.step-num {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e2e8f0, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.step-body { padding: 12px; }
.step-title { font-weight: 700; font-size: .83rem; color: var(--text); }
.step-desc  { font-size: .75rem; color: var(--text-3); margin-top: 4px; line-height: 1.5; }

/* ── REG METHODS ── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.method-icon { font-size: 2rem; margin-bottom: 10px; }
.method-name { font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.method-desc { font-size: .78rem; color: var(--text-3); line-height: 1.5; }

/* ── KYC DOCS ── */
.kyc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 16px;
}
.kyc-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.kyc-icon { font-size: 1.5rem; margin-bottom: 8px; }
.kyc-name { font-weight: 700; font-size: .83rem; margin-bottom: 4px; }
.kyc-desc { font-size: .75rem; color: var(--text-3); line-height: 1.5; }

/* ── PROBLEMS TABLE ── */
.prob-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
}
.prob-table th {
  background: #f8fafc;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-3);
  border-bottom: 2px solid var(--border);
}
.prob-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.prob-table tr:last-child td { border-bottom:none; }
.prob-table tr:hover td { background: #f8fafc; }
.prob-name { font-weight: 600; color: var(--text); }
.prob-cause { color: var(--text-3); }
.prob-sol   { color: var(--primary); font-weight: 500; }

/* ── SECURITY TIPS ── */
.tip-list { margin-top: 12px; }
.tip-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.tip-item:last-child { border-bottom:none; }
.tip-icon { font-size: 1.3rem; flex-shrink:0; }
.tip-title { font-weight: 700; font-size: .875rem; margin-bottom: 2px; }
.tip-desc  { font-size: .8rem; color: var(--text-3); }

/* ── LOGIN METHODS TABLE ── */
.login-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
  margin-top: 12px;
}
.login-table th {
  background: #f8fafc;
  padding: 9px 12px;
  text-align: left;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-3);
  border-bottom: 2px solid var(--border);
}
.login-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.login-table tr:last-child td { border-bottom:none; }

/* ── DISCLAIMER ── */
.disclaimer-bar {
  background: #fef9c3;
  border-top: 2px solid #fde047;
  padding: 14px 20px;
  text-align: center;
  font-size: .75rem;
  color: #713f12;
  line-height: 1.6;
}
.disclaimer-bar strong { color: #92400e; }
.disclaimer-bar a { color: var(--primary); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-footer);
  color: #94a3b8;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 16px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo em { font-style:normal; color: var(--accent); }
.footer-desc { font-size: .78rem; line-height: 1.7; color: #64748b; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #475569;
  margin-bottom: 12px;
}
.footer-link {
  display: block;
  color: #64748b;
  font-size: .78rem;
  padding: 3px 0;
  transition: color .15s;
}
.footer-link:hover { color: #fff; text-decoration:none; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .72rem; color: #475569; }
.age-badge {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 4px;
}
.payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pay-logo {
  font-size: .7rem;
  font-weight: 700;
  color: #475569;
  padding: 3px 8px;
  border: 1px solid #1e293b;
  border-radius: 4px;
}

/* ── LANG SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.lang-btn:hover { background: rgba(255,255,255,.14); }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 180px;
  z-index: 400;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.lang-dropdown.open { display: block; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: .83rem;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
}
.lang-opt:last-child { border-bottom:none; }
.lang-opt:hover { background: var(--primary-lt); color: var(--primary); }
.lang-opt.active { background: var(--primary-lt); color: var(--primary); font-weight:600; }
