:root {
  --wildz-purple: #6f00ff;
  --wildz-purple-2: #8a3aff;
  --wildz-cyan: #00e5ff;
  --wildz-cyan-2: #1ff0ff;
  --wildz-dark-bg: #1a1a1a;
  --wildz-darker-bg: #0d0d0d;
  --wildz-card: #2a2a2a;
  --wildz-card-2: #232323;
  --wildz-text: #ffffff;
  --wildz-muted: rgba(255,255,255,0.7);
  --wildz-muted-2: rgba(255,255,255,0.5);
  --wildz-border: rgba(255,255,255,0.10);
  --wildz-border-strong: rgba(255,255,255,0.20);
  --wildz-good: #00e5ff;
  --wildz-warn: #ff6363;
  --wildz-gold: #f5b800;
  --container: 1180px;
  --top-bar-h: 56px;
  --bottom-nav-h: 70px;
  --shadow-md: 0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.55);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; background: var(--wildz-dark-bg); }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--wildz-dark-bg);
  color: var(--wildz-text);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  padding-top: var(--top-bar-h);
  padding-bottom: var(--bottom-nav-h);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--wildz-cyan); text-decoration: none; }
a:hover { color: var(--wildz-cyan-2); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.85rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin-top: 1.8em; color: #fff; }
h3 { font-size: 1.2rem; margin-top: 1.5em; color: #fff; }
h4 { font-size: 1.05rem; margin-top: 1.3em; color: #fff; }

p, ul, ol { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

hr { border: 0; border-top: 1px solid var(--wildz-border); margin: 2.5em 0; }

code, kbd {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  background: var(--wildz-darker-bg);
  padding: 0.1em 0.45em;
  border-radius: 4px;
  color: var(--wildz-cyan);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--wildz-cyan); color: #000;
  padding: 10px 16px; z-index: 1000; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============ TOP BAR (fixed, centered logo + hamburger) ============ */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--top-bar-h);
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 80;
  border-bottom: 1px solid var(--wildz-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.top-bar .brand-link { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.top-bar .brand-link:hover { text-decoration: none; }
.top-bar .brand-mark {
  width: 40px; height: 40px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35)) drop-shadow(0 0 8px rgba(0,229,255,0.18));
}
.top-bar .brand-name { font-weight: 700; font-size: 15px; letter-spacing: 0.005em; line-height: 1.1; white-space: nowrap; }
.top-bar .brand-name em { font-style: normal; font-weight: 700; color: var(--wildz-cyan); }
@media (max-width: 600px) {
  .top-bar .brand-name { font-size: 13px; }
  .top-bar .brand-name em { display: block; font-size: 11px; letter-spacing: 0.02em; }
}
@media (max-width: 380px) {
  .top-bar .brand-name { display: none; }
}
.top-bar .top-burger {
  background: transparent; border: 0; color: #fff;
  padding: 8px; cursor: pointer; display: grid; place-items: center;
}
.top-bar .top-cta {
  background: var(--wildz-cyan); color: #000;
  font-weight: 600; padding: 7px 16px; border-radius: 999px;
  font-size: 13px; text-decoration: none;
}
.top-bar .top-cta:hover { background: var(--wildz-cyan-2); color: #000; text-decoration: none; }

/* ============ SIDE MENU DRAWER ============ */
#sidemenu {
  background-color: var(--wildz-darker-bg);
  width: min(85vw, 360px);
  height: 100vh;
  position: fixed;
  left: -100%; top: 0;
  z-index: 110;
  transition: left 0.28s ease-in-out;
  box-shadow: 2px 0 24px rgba(0,0,0,0.6);
  overflow-y: auto;
}
#sidemenu.active { left: 0; }
.sidemenu-inner { padding: 24px 22px 40px; }
.sidemenu-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.sidemenu-brand .brand-mark {
  width: 52px; height: 52px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)) drop-shadow(0 0 10px rgba(0,229,255,0.20));
}
.sidemenu-brand .brand-name { font-weight: 700; font-size: 17px; color: #fff; line-height: 1.15; }
.sidemenu-brand .brand-name em { font-style: normal; font-weight: 700; color: var(--wildz-cyan); display: block; font-size: 14px; margin-top: 1px; letter-spacing: 0.01em; }
.sidemenu-brand .brand-tag { font-size: 11px; color: var(--wildz-muted-2); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.sidemenu-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sidemenu-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.sidemenu-nav a {
  display: block; padding: 12px 14px;
  color: #fff; text-decoration: none; font-weight: 500;
  border-radius: 8px; font-size: 15px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.sidemenu-nav a:hover { background: rgba(255,255,255,0.05); text-decoration: none; }
.sidemenu-nav a[aria-current="page"] {
  background: rgba(0,229,255,0.10);
  border-color: rgba(0,229,255,0.30);
  color: var(--wildz-cyan);
}
.sidemenu-meta { font-size: 13px; color: var(--wildz-muted-2); border-top: 1px solid var(--wildz-border); padding-top: 16px; line-height: 1.5; }
.sidemenu-meta strong { color: var(--wildz-cyan); }

#sidemenu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 105;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
#sidemenu-overlay.active { opacity: 1; pointer-events: auto; }

/* ============ BUTTONS ============ */
.btn-cyan {
  background-color: var(--wildz-cyan);
  color: #000;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.btn-cyan:hover { background: var(--wildz-cyan-2); color: #000; transform: translateY(-1px); text-decoration: none; }

.btn-cyan-ghost {
  border: 2px solid var(--wildz-cyan);
  color: var(--wildz-cyan);
  background: transparent;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
  font-size: 14px;
}
.btn-cyan-ghost:hover { background: rgba(0,229,255,0.10); color: var(--wildz-cyan); text-decoration: none; }

.btn-purple {
  background: linear-gradient(135deg, var(--wildz-purple), var(--wildz-purple-2));
  color: #fff; font-weight: 600;
  padding: 11px 22px; border-radius: 999px; border: 0;
  text-decoration: none; display: inline-block; cursor: pointer;
  box-shadow: 0 0 24px rgba(111,0,255,0.35);
  transition: transform 0.1s;
}
.btn-purple:hover { color: #fff; transform: translateY(-1px); text-decoration: none; }

.btn { padding: 10px 18px; border-radius: 999px; font-weight: 600; text-decoration: none; display: inline-block; text-align: center; cursor: pointer; font-size: 14px; border: 0; }
.btn-primary { background: var(--wildz-cyan); color: #000; }
.btn-primary:hover { background: var(--wildz-cyan-2); color: #000; }
.btn-secondary { background: linear-gradient(135deg, var(--wildz-purple), var(--wildz-purple-2)); color: #fff; }
.btn-outline { border: 2px solid var(--wildz-cyan); color: var(--wildz-cyan); background: transparent; }
.btn-full { width: 100%; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(111,0,255,0.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 95%, rgba(0,229,255,0.18), transparent 65%),
    linear-gradient(180deg, #1a0033 0%, var(--wildz-darker-bg) 90%);
  color: #fff;
  padding: 20px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wildz-border);
}
.hero h1 { color: #fff; max-width: 820px; }
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 720px; }
.hero .badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--wildz-border-strong);
  color: rgba(255,255,255,0.9);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.badge.green { background: rgba(0,229,255,0.15); border-color: rgba(0,229,255,0.45); color: var(--wildz-cyan); }
.badge.gold { background: rgba(245,184,0,0.18); border-color: rgba(245,184,0,0.45); color: var(--wildz-gold); }
.hero .meta-row { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.75); }
.hero .meta-row strong { color: #fff; font-weight: 600; }

.hero-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 8px 16px 8px 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  max-width: 100%;
}
.hero-byline .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 2px rgba(0,229,255,0.30);
}
.hero-byline .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-byline .meta {
  display: flex; flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.hero-byline .meta .author { color: #fff; font-weight: 600; }
.hero-byline .meta .role { color: rgba(255,255,255,0.65); font-size: 12px; }
.hero-byline .meta a { color: var(--wildz-cyan); text-decoration: none; }
.hero-byline .meta a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .hero-byline { font-size: 12px; padding: 6px 14px 6px 6px; }
  .hero-byline .avatar { width: 32px; height: 32px; }
}

/* ============ MOBILE: COMPRESS HERO SO TABLE IS ABOVE THE FOLD ============ */
@media (max-width: 800px) {
  .hero { padding: 12px 0 20px; }
  .hero h1 {
    font-size: clamp(1.4rem, 5.4vw, 1.85rem);
    margin-bottom: 0;
    line-height: 1.18;
  }
  .hero .badge-row { display: none; }
  .hero p.lead { display: none; }
  .hero .meta-row { display: none; }
  .hero-byline { margin-top: 14px; }
  main { padding: 16px 0 32px; }
  article > h2:first-of-type {
    margin-top: 0;
    font-size: 1.18rem;
    line-height: 1.25;
    padding-top: 4px;
  }
  /* Tighten the optional intro paragraph immediately after the affiliate H2 */
  article > h2:first-of-type + p { font-size: 13.5px; margin-bottom: 14px; }
}

/* ============ MAIN CONTENT ============ */
main { padding: 36px 0 64px; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}
.layout > article { min-width: 0; }
.sidebar { position: sticky; top: calc(var(--top-bar-h) + 16px); display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ============ CASINO TABLE (DARK CARDS) ============ */
.casino-table {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  margin: 22px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.casino-row {
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 40px minmax(440px, 1.6fr) minmax(170px, 1fr) 110px 140px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  transition: border-color 0.15s, transform 0.1s;
}
.casino-row:hover { border-color: var(--wildz-border-strong); }
.casino-row.featured {
  background: linear-gradient(90deg, rgba(0,229,255,0.10), rgba(111,0,255,0.10) 60%, var(--wildz-card));
  border: 1px solid rgba(0,229,255,0.45);
  box-shadow: 0 0 24px rgba(0,229,255,0.15);
}
.rank {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--wildz-darker-bg);
  border: 1px solid var(--wildz-border);
  color: #fff;
  border-radius: 9px;
  font-weight: 800;
  font-size: 15px;
}
.casino-row.featured .rank {
  background: linear-gradient(135deg, var(--wildz-cyan), var(--wildz-purple));
  border-color: transparent;
  color: #000;
}
.casino-brand { display: flex; align-items: center; gap: 18px; min-width: 0; }
.casino-brand .casino-logo {
  width: 240px; height: 78px;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  overflow: visible;
}
.casino-brand .casino-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.casino-brand .casino-logo.text {
  background: linear-gradient(135deg, rgba(111,0,255,0.35), rgba(0,229,255,0.25));
  color: #fff; font-weight: 800; font-size: 18px;
  text-align: center; line-height: 1.1;
  padding: 10px;
  letter-spacing: 0.02em;
}
.casino-brand .brand-text { display: flex; flex-direction: column; min-width: 0; }
.casino-brand .name { font-weight: 700; font-size: 16px; color: #fff; }
.casino-brand .est { font-size: 12px; color: var(--wildz-muted-2); }
.casino-offer { font-size: 13px; color: var(--wildz-muted); }
.casino-offer strong {
  display: inline-block;
  color: #021018;
  background: linear-gradient(135deg, #00e5ff 0%, #6ff5ff 100%);
  font-size: 15px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.005em;
  box-shadow: 0 0 14px rgba(0,229,255,0.30), inset 0 1px 0 rgba(255,255,255,0.4);
  line-height: 1.25;
}
.casino-offer small { color: var(--wildz-muted-2); font-size: 11.5px; display: block; }
.casino-row.featured .casino-offer strong {
  background: linear-gradient(135deg, #f5b800 0%, #ffd966 100%);
  box-shadow: 0 0 16px rgba(245,184,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.casino-rating { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.casino-rating .score { font-weight: 800; font-size: 20px; color: var(--wildz-cyan); line-height: 1; }
.casino-rating .stars { color: var(--wildz-gold); font-size: 12px; letter-spacing: 1px; }
.casino-rating .label { font-size: 10px; color: var(--wildz-muted-2); text-transform: uppercase; letter-spacing: 0.05em; }
.casino-row .btn { padding: 11px 16px; }

@media (max-width: 800px) {
  /* Vertical card layout on mobile: logo top, brand+rating centered, full-width bonus pill, full-width CTA */
  .casino-row {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "rating" "offer" "cta";
    gap: 12px;
    padding: 44px 20px 22px;
    text-align: center;
    position: relative;
  }
  .casino-row.featured { box-shadow: 0 0 28px rgba(0,229,255,0.22); }

  /* Rank → corner badge */
  .rank {
    grid-area: unset;
    position: absolute;
    top: 12px;
    right: 14px;
    width: auto; height: auto;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--wildz-border-strong);
    color: rgba(255,255,255,0.85);
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
  }
  .rank::before { content: "#"; opacity: 0.7; margin-right: 1px; }
  .casino-row.featured .rank {
    background: linear-gradient(135deg, var(--wildz-cyan), #6ff5ff);
    color: #021018;
    border: 0;
    box-shadow: 0 0 14px rgba(0,229,255,0.5);
    padding: 5px 13px;
  }
  .casino-row.featured .rank::after { content: " Best Overall"; font-weight: 800; }

  /* Brand: logo big and centered, name + tagline below */
  .casino-brand {
    grid-area: brand;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
  }
  .casino-brand .casino-logo {
    width: 100%;
    max-width: 260px;
    height: 110px;
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--wildz-border);
  }
  .casino-brand .casino-logo.text { font-size: 16px; padding: 10px; }
  .casino-brand .brand-text { align-items: center; text-align: center; }
  .casino-brand .name { font-size: 18px; font-weight: 800; color: #fff; }
  .casino-brand .est { font-size: 12px; color: var(--wildz-muted-2); }

  /* Rating: row, centered */
  .casino-rating {
    grid-area: rating;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-left: 0;
  }
  .casino-rating .score { font-size: 19px; }
  .casino-rating .label { display: none; }

  /* Bonus: full-width pill */
  .casino-offer { grid-area: offer; padding-left: 0; }
  .casino-offer strong {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14.5px;
    padding: 11px 14px;
    margin: 0 auto 6px;
    border-radius: 8px;
  }
  .casino-offer small { text-align: center; display: block; }

  /* CTA: full-width prominent */
  .casino-row .btn {
    grid-area: cta;
    width: 100%;
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .casino-row { padding: 40px 16px 18px; gap: 10px; }
  .casino-brand .casino-logo { height: 92px; max-width: 220px; padding: 6px 12px; }
  .casino-brand .name { font-size: 17px; }
  .casino-offer strong { font-size: 13.5px; padding: 10px 12px; }
  .casino-row .btn { padding: 13px 14px; font-size: 14px; }
}

/* ============ CARDS / CALLOUTS ============ */
.card { background: var(--wildz-card); border: 1px solid var(--wildz-border); border-radius: var(--radius-md); padding: 22px; }
.card h3 { margin-top: 0; }

.callout {
  border-left: 4px solid var(--wildz-cyan);
  background: rgba(0,229,255,0.06);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 22px 0;
}
.callout.warn { border-left-color: var(--wildz-warn); background: rgba(255,99,99,0.08); }
.callout.gold { border-left-color: var(--wildz-gold); background: rgba(245,184,0,0.08); }
.callout h4 { margin-top: 0; color: #fff; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.callout a { color: var(--wildz-cyan); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.pros-cons > div { background: var(--wildz-card); border-radius: var(--radius-md); padding: 18px 22px; border: 1px solid var(--wildz-border); }
.pros-cons h4 { margin: 0 0 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wildz-muted-2); }
.pros-cons ul { padding-left: 0; margin: 0; list-style: none; }
.pros-cons li { position: relative; padding-left: 22px; }
.pros-cons .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--wildz-cyan); font-weight: 700; }
.pros-cons .cons li::before { content: "✗"; position: absolute; left: 0; color: var(--wildz-warn); font-weight: 700; }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.feature {
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.15s, transform 0.1s;
}
.feature:hover { border-color: rgba(0,229,255,0.35); transform: translateY(-2px); }
.feature .icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(111,0,255,0.25), rgba(0,229,255,0.20));
  border: 1px solid var(--wildz-border);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.feature h3 { font-size: 1.05rem; margin: 0 0 6px; color: #fff; }
.feature p { margin: 0; color: var(--wildz-muted); font-size: 14px; }
.feature a.btn { margin-top: 12px; }

/* ============ COMPARISON TABLE ============ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wildz-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--wildz-border);
  margin: 22px 0;
  font-size: 14px;
  color: #fff;
}
.compare-table th, .compare-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--wildz-border);
}
.compare-table thead th {
  background: var(--wildz-darker-bg);
  color: var(--wildz-cyan);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:nth-child(even) { background: var(--wildz-card-2); }
.compare-table .good { color: var(--wildz-cyan); font-weight: 700; }
.compare-table .bad { color: var(--wildz-warn); font-weight: 700; }
.compare-table strong { color: #fff; }
.compare-table-wrap { overflow-x: auto; }
@media (max-width: 700px) { .compare-table { min-width: 560px; } }

/* ============ FAQ ============ */
.faq { margin: 26px 0; }
.faq details {
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--wildz-cyan);
  transition: transform 0.2s; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { background: rgba(0,229,255,0.05); border-bottom: 1px solid var(--wildz-border); }
.faq .faq-body { padding: 16px 20px; color: var(--wildz-muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }
.faq .faq-body a { color: var(--wildz-cyan); }

/* ============ BYLINE ============ */
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  margin: 0 0 22px;
  color: var(--wildz-muted);
}
.byline .avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--wildz-purple), var(--wildz-cyan));
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 15px;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(0,229,255,0.25);
}
.byline .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.byline .meta { display: flex; flex-direction: column; line-height: 1.3; }
.byline .author-name { font-weight: 700; color: #fff; }
.byline .author-name a { color: var(--wildz-cyan); text-decoration: none; }
.byline .author-name a:hover { text-decoration: underline; }
.byline .author-role { color: var(--wildz-muted-2); font-size: 12px; }
.byline .author-role a { color: var(--wildz-cyan); }
.byline .updated { margin-left: auto; color: var(--wildz-muted-2); font-size: 12px; }
@media (max-width: 600px) { .byline { flex-wrap: wrap; } .byline .updated { margin-left: 0; width: 100%; } }

/* ============ TOC ============ */
.toc {
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 0 0 28px;
}
.toc h2 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wildz-muted-2); margin: 0 0 10px; }
.toc ol { columns: 2; column-gap: 30px; margin: 0; padding-left: 18px; font-size: 14px; color: var(--wildz-muted); }
.toc li { break-inside: avoid; margin-bottom: 4px; }
.toc a { color: var(--wildz-cyan); text-decoration: none; }
.toc a:hover { text-decoration: underline; }
@media (max-width: 700px) { .toc ol { columns: 1; } }

/* ============ SIDEBAR WIDGETS ============ */
.widget {
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.widget h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; color: var(--wildz-muted-2); }
.widget-list { list-style: none; padding: 0; margin: 0; font-size: 13.5px; color: var(--wildz-muted); }
.widget-list li { padding: 8px 0; border-bottom: 1px solid var(--wildz-border); }
.widget-list li:last-child { border-bottom: 0; }
.widget-list li strong { color: #fff; }
.widget-list li a { color: var(--wildz-cyan); }
.widget p { color: var(--wildz-muted); font-size: 13.5px; }
.widget p strong { color: #fff; }

/* ============ STAT STRIP ============ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--wildz-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid var(--wildz-border);
}
.stat { background: var(--wildz-card); padding: 20px 16px; text-align: center; }
.stat .value { font-size: 24px; font-weight: 800; color: var(--wildz-cyan); display: block; line-height: 1; margin-bottom: 4px; }
.stat .label { font-size: 11px; color: var(--wildz-muted-2); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ DISCLAIMER ============ */
.disclaimer {
  font-size: 13px;
  color: var(--wildz-muted);
  background: var(--wildz-card);
  border: 1px solid var(--wildz-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 22px 0;
  line-height: 1.55;
}
.disclaimer strong { color: #fff; }
.disclaimer a { color: var(--wildz-cyan); }

/* ============ TAGS ============ */
.tag { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; background: var(--wildz-darker-bg); color: var(--wildz-muted); border: 1px solid var(--wildz-border); }
.tag.green { background: rgba(0,229,255,0.12); color: var(--wildz-cyan); border-color: rgba(0,229,255,0.30); }
.tag.gold { background: rgba(245,184,0,0.14); color: var(--wildz-gold); border-color: rgba(245,184,0,0.30); }
.tag.red { background: rgba(255,99,99,0.12); color: var(--wildz-warn); border-color: rgba(255,99,99,0.30); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--wildz-darker-bg);
  color: var(--wildz-muted);
  margin-top: 40px;
  padding: 40px 0 24px;
  font-size: 14px;
  border-top: 1px solid var(--wildz-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-grid h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--wildz-muted); text-decoration: none; font-size: 13.5px; }
.footer-grid a:hover { color: var(--wildz-cyan); text-decoration: none; }
.footer-grid a[aria-current="page"] { color: var(--wildz-cyan); }
.footer-about p { margin: 0 0 14px; color: var(--wildz-muted); line-height: 1.6; font-size: 13.5px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark {
  width: 46px; height: 46px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}
.footer-brand .brand-name { color: #fff; font-weight: 700; font-size: 17px; line-height: 1.15; }
.footer-brand .brand-name em { font-style: normal; font-weight: 700; color: var(--wildz-cyan); display: block; font-size: 14px; letter-spacing: 0.01em; }

.footer-trust {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin: 28px 0 16px; padding: 16px 0;
  border-top: 1px solid var(--wildz-border);
  border-bottom: 1px solid var(--wildz-border);
  font-size: 12px; color: var(--wildz-muted-2);
}
.footer-trust strong { color: var(--wildz-cyan); }
.footer-trust span { display: inline-flex; align-items: center; gap: 6px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; color: var(--wildz-muted-2); font-size: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: var(--wildz-muted); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ BOTTOM NAV (mobile only) ============ */
#bottommenu {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #000 100%);
  height: var(--bottom-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 90;
  border-top: 1px solid var(--wildz-border);
}
#bottommenu .bottommenu-burger {
  background: transparent; border: 0; color: #fff;
  padding: 8px; cursor: pointer;
  display: grid; place-items: center;
}
#bottommenu .power-meter {
  width: 58px; height: 58px;
  background: var(--wildz-darker-bg);
  border-radius: 50%;
  border: 2px solid var(--wildz-purple);
  display: grid; place-items: center;
  font-size: 10px; text-align: center;
  text-transform: uppercase; font-weight: 700;
  color: #fff; text-decoration: none;
  line-height: 1.1;
  box-shadow: 0 0 12px rgba(111,0,255,0.4);
}
#bottommenu .power-meter:hover { color: var(--wildz-cyan); text-decoration: none; }
#bottommenu .bottommenu-cta { display: flex; align-items: center; gap: 8px; }
#bottommenu .bottommenu-cta .btn-cyan,
#bottommenu .bottommenu-cta .btn-cyan-ghost { padding: 7px 14px; font-size: 12px; }

@media (min-width: 900px) {
  #bottommenu { display: none; }
  body { padding-bottom: 0; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--wildz-muted-2); }
.small { font-size: 13px; }

@media print {
  .top-bar, #sidemenu, #sidemenu-overlay, #bottommenu, .site-footer { display: none; }
  body { background: #fff; color: #000; padding: 0; }
  .hero { background: #fff; color: #000; padding: 20px 0; }
  h1, h2, h3, h4 { color: #000; }
}
