:root {
  --bg: #0a0d14;
  --surface: #141925;
  --surface-2: #1a2030;
  --border: #2a3245;
  --text: #f2f5f9;
  --text-dim: #98a2b8;
  --accent: #ff9500;
  --accent-dark: #e8830e;
  --gold: #ffd700;
  --good: #16a34a;
  --warn: #facc15;
  --bad: #f87171;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse at top right, rgba(255,149,0,0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(255,215,0,0.04) 0%, transparent 50%);
  background-attachment: fixed;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 22px; }

/* HEADER */
.site-header {
  background: rgba(10,13,20,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; max-width: 1150px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(255,149,0,0.35);
}
.brand-icon svg { width: 22px; height: 22px; }
.brand-text { font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -0.3px; }
.brand-text .tld { color: var(--accent); }
.site-header nav { display: flex; gap: 22px; }
.site-header nav a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; }
.site-header nav a:hover { color: var(--accent); }

/* HERO */
.hero { padding: 50px 0 30px; }
.eyebrow {
  display: inline-block;
  background: rgba(255,149,0,0.12);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,149,0,0.3);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.hero h1 .gold {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 19px;
  color: var(--text-dim);
  margin: 0 0 24px;
  line-height: 1.55;
  max-width: 720px;
}
.hero .meta {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.hero .meta strong { color: var(--text); }
.hero .meta .dot { width: 4px; height: 4px; background: var(--text-dim); border-radius: 50%; }
.freshness-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(22,163,74,0.15);
  color: var(--good);
  border: 1px solid rgba(22,163,74,0.3);
}
.freshness-pill::before { content: ''; width: 6px; height: 6px; background: var(--good); border-radius: 50%; }

/* CARD ROW */
.card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.metric-card .icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.metric-card .value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.metric-card .label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* RATING BIG */
.rating-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}
.rating-big {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.rating-big .num { font-size: 56px; font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -2px; }
.rating-big .stars { color: var(--gold); font-size: 22px; margin: 8px 0; }
.rating-big .label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* VERDICT */
.verdict {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px 0;
  border-left: 4px solid var(--accent);
}
.verdict .label {
  display: inline-block;
  background: rgba(255,149,0,0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.verdict .text { font-size: 16px; line-height: 1.65; color: var(--text); }

/* QUICK ANSWER */
.quick-answer {
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0 26px;
}
.quick-answer::before {
  content: 'QUICK ANSWER';
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}
.quick-answer p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text); }

/* ARTICLE */
article { padding: 30px 0; }
article h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 50px 0 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  position: relative;
  padding-left: 20px;
}
article h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  border-radius: 2px;
}
article h3 {
  font-size: 20px;
  margin: 30px 0 12px;
  font-weight: 700;
  color: var(--text);
}
article p { margin: 0 0 18px; color: #d8dee9; }
article ul, article ol { margin: 0 0 20px; padding-left: 26px; }
article li { margin-bottom: 8px; color: #d8dee9; }
article a { color: var(--accent); text-decoration: none; border-bottom: 1px dotted var(--accent); }
article a:hover { color: var(--gold); border-bottom-style: solid; }

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #1a1408 !important;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 16px;
  border: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(255,149,0,0.4);
  letter-spacing: 0.3px;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,149,0,0.55); }
.cta-row { text-align: center; margin: 32px 0; }

/* TABLE */
table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
table.compare th, table.compare td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.compare th {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 600; width: 30%; color: var(--text); }
table.compare td.good { color: var(--good); font-weight: 600; }
table.compare td.warn { color: var(--warn); }
table.compare td.bad { color: var(--bad); }

/* HOWTO STEP CARDS */
.howto-steps { counter-reset: step; margin: 26px 0; }
.howto-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px 20px 70px;
  margin-bottom: 14px;
  position: relative;
  counter-increment: step;
}
.howto-step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #1a1408;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
}
.howto-step h4 { margin: 0 0 6px; font-size: 17px; color: var(--text); }
.howto-step p { margin: 0; font-size: 15px; color: var(--text-dim); line-height: 1.6; }

/* PLAYER REVIEWS */
.player-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.player-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.player-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.player-card .text { font-size: 14px; color: var(--text); margin-bottom: 12px; line-height: 1.55; font-style: italic; }
.player-card .who { font-size: 13px; color: var(--accent); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.player-card .who-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
}

/* FAQ Cards */
.faq-section { margin: 40px 0; }
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-card:hover { border-color: var(--accent); }
.faq-card summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
}
.faq-card[open] summary::after { content: '−'; }
.faq-card .faq-body {
  padding: 0 20px 18px;
  color: #d8dee9;
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* AUTHOR BIO */
.author-bio {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 40px 0 20px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid;
  place-items: center;
  color: #1a1408;
  font-weight: 800;
  font-size: 22px;
}
.author-info .name { font-weight: 700; font-size: 17px; color: var(--text); }
.author-info .role { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }
.author-info .bio { font-size: 14px; color: #d8dee9; line-height: 1.55; margin: 0; }
.author-info .bio a { color: var(--accent); }
@media (max-width: 500px) {
  .author-bio { grid-template-columns: 1fr; text-align: center; }
  .author-avatar { margin: 0 auto; }
}

/* DISCLOSURE */
.disclosure-box {
  margin-top: 50px;
  padding: 22px 26px;
  background: rgba(248,113,113,0.05);
  border: 1px solid rgba(248,113,113,0.25);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.disclosure-box strong { color: var(--bad); }

/* FOOTER */
.site-footer {
  background: #050811;
  border-top: 1px solid var(--border);
  padding: 36px 0;
  margin-top: 60px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.site-footer a { color: var(--accent); margin: 0 8px; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
  article h2 { font-size: 22px; }
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .rating-section { grid-template-columns: 1fr; }
  .rating-big .num { font-size: 42px; }
  table.compare { font-size: 13px; }
  table.compare th, table.compare td { padding: 10px 8px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 13px; }
}

/* === BRAND VISUAL + TRUST BADGES === */
.brand-hero-visual {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 24px 0 8px;
  border-radius: 14px;
}
.trust-strip {
  width: 100%;
  height: auto;
  display: block;
  margin: 24px 0 8px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px;
}
.platforms-mentioned {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.platform-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.platform-chip:hover { border-color: var(--accent); }
.platform-chip .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: white;
}
.platform-chip .pname { font-weight: 600; font-size: 14px; }
.platform-chip .pmeta { font-size: 11px; color: var(--text-dim); }
