/* ==========================================================================
   Subham Industries — Roguelike & Deckbuilder Game Reviews
   Dark / neon-lime esports-style theme
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --card: #151515;
  --card-border: #262626;
  --accent: #c6ff1a;
  --accent-dark: #9fd400;
  --text: #f2f2f2;
  --text-muted: #a3a3a3;
  --text-faint: #6f6f6f;
  --font-display: "Kanit", sans-serif;
  --font-head: "Kanit", sans-serif;
  --font-body: "Kanit", sans-serif;
  --radius: 4px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 700; letter-spacing: 0.5px; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; text-transform: none; }

.accent { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--text-muted); font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }
.section-head-row .view-all { flex-shrink: 0; }

section { padding: 80px 0; }
section.tight { padding: 56px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: #d8ff4d; }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #0a0a0a; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--card-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 84px;
  max-width: 1400px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo .mark {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.main-nav { display: flex; flex-shrink: 1; min-width: 0; }
.main-nav > ul { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #d8d8d8;
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav .caret { font-size: 9px; opacity: .7; position: relative; top: -1px; }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity .15s ease, translate .15s ease;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; translate: 0 0;
}
.main-nav .dropdown li a { display: block; padding: 9px 12px; border-radius: 4px; text-transform: none; font-family: var(--font-body); font-size: 16px; }
.main-nav .dropdown li a:hover { background: rgba(198,255,26,.08); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-switch { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.icon-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
  cursor: pointer;
  font-size: 16px;
}
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(198,255,26,.10), transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid var(--card-border);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead { color: var(--text-muted); font-size: 20px; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; }
.hero-stats .stat span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }

.hero-cover {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 4 / 3;
  display: block;
}
.hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover .tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: #0a0a0a; background: var(--accent);
  border-radius: 20px; padding: 5px 14px;
  font-family: var(--font-head); font-weight: 600;
}
.hero-cover .score {
  position: absolute; top: 16px; right: 16px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Search modal ---------- */
.search-modal { position: fixed; inset: 0; z-index: 200; }
.search-modal[hidden] { display: none; }
.search-modal-backdrop { position: absolute; inset: 0; background: rgba(5,5,5,.82); backdrop-filter: blur(2px); }
.search-modal-panel {
  position: relative;
  max-width: 640px;
  margin: 10vh auto 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px;
  max-height: 74vh;
  display: flex;
  flex-direction: column;
}
.search-modal-input { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--card-border); }
.search-modal-input input {
  flex: 1; background: none; border: none; color: #fff;
  font-family: var(--font-body); font-size: 18px; outline: none;
}
.search-modal-close { background: none; border: none; color: var(--text-muted); font-size: 22px; cursor: pointer; line-height: 1; }
.search-modal-close:hover { color: var(--accent); }
.search-modal-results { overflow-y: auto; padding: 8px; }
.search-modal-results li { border-radius: 6px; }
.search-modal-results li a {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 12px 12px; border-radius: 6px;
}
.search-modal-results li a:hover { background: rgba(198,255,26,.08); }
.search-modal-results .result-type {
  font-family: var(--font-head); font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 12px; padding: 2px 8px; flex-shrink: 0;
}
.search-modal-results .result-title { font-family: var(--font-head); font-size: 15px; color: #fff; }
.search-modal-results .result-excerpt { width: 100%; color: var(--text-muted); font-size: 13px; }
.search-modal-empty { text-align: center; color: var(--text-muted); padding: 30px 20px; margin: 0; font-size: 15px; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(198,255,26,.06), transparent), #0e0e0e;
  border-bottom: 1px solid var(--card-border);
}
.page-banner h1 { margin-bottom: 10px; }
.breadcrumb { font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--accent); }
.breadcrumb .current { color: var(--accent); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.card::before, .card::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
}
.card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(198,255,26,.08);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }

/* Review / article card */
.post-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.post-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 26px rgba(198,255,26,.22);
  transform: translateY(-2px);
}
.post-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1c1c1c, #0d0d0d);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}
.post-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card .thumb .cat {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,0,0,.6);
  border: 1px solid var(--accent);
  padding: 5px 10px;
  border-radius: 20px;
}
.post-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: 13px; color: var(--text-faint); margin-bottom: 10px; letter-spacing: .5px; text-transform: uppercase; font-family: var(--font-head); }
.post-card h3 { margin-bottom: 10px; font-size: 21px; }
.post-card:hover h3 { color: var(--accent); }
.post-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.post-card .readmore { margin-top: auto; font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }

/* Taxonomy tile */
.tax-tile {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 26px;
  transition: border-color .15s ease, transform .15s ease;
}
.tax-tile:hover { border-color: var(--accent); transform: translateY(-3px); }
.tax-tile h3 { margin-bottom: 8px; }
.tax-tile p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.tax-tile .count { font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; color: var(--accent); text-transform: uppercase; }

/* ---------- Two column content + sidebar ---------- */
.content-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
.article-body h2 { margin-top: 44px; }
.article-body h3 { margin-top: 28px; }
.article-body p { color: #d6d6d6; margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px; }
.article-body ul li { color: #d6d6d6; padding-left: 22px; position: relative; margin-bottom: 8px; }
.article-body ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--card);
  padding: 20px 24px;
  margin: 28px 0;
  color: #eaeaea;
  font-style: italic;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-body table th, .article-body table td { border: 1px solid var(--card-border); padding: 10px 14px; text-align: left; font-size: 15px; }
.article-body table th { font-family: var(--font-head); color: var(--accent); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }

.sidebar .widget {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 26px;
}
.sidebar .widget h3, .sidebar .widget h4, .sidebar .widget .widget-role { font-family: var(--font-head); text-transform: uppercase; font-size: 15px; letter-spacing: 1px; color: #fff; margin-bottom: 16px; border-bottom: 1px solid var(--card-border); padding-bottom: 12px; }
.sidebar .widget.cta { background: linear-gradient(135deg, var(--accent), #9fd400); color: #0a0a0a; }
.sidebar .widget.cta h3, .sidebar .widget.cta h4 { color: #0a0a0a; border-color: rgba(10,10,10,.2); }
.sidebar .widget.cta p, .sidebar .widget.cta a { color: #0a0a0a; }
.sidebar .tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar .tag-list a { font-size: 13px; border: 1px solid var(--card-border); padding: 6px 12px; border-radius: 20px; color: var(--text-muted); }
.sidebar .tag-list a:hover { border-color: var(--accent); color: var(--accent); }
.sidebar ul li { padding: 10px 0; border-bottom: 1px solid var(--card-border); font-size: 15px; }
.sidebar ul li:last-child { border-bottom: none; }
.sidebar ul li a:hover { color: var(--accent); }

/* ---------- Score box (review pages) ---------- */
.score-box {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 28px;
  margin: 30px 0 40px;
}
.score-box .big-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--pct,85)*1%), #262626 0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-box .big-ring span {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: #fff;
}
.score-box .verdict h4 { color: var(--accent); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.score-box .verdict p { color: var(--text-muted); margin: 0; font-size: 15px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.pros-cons .box { background: var(--card); border: 1px solid var(--card-border); border-radius: 8px; padding: 22px 24px; }
.pros-cons .box h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 15px; letter-spacing: 1px; margin-bottom: 14px; }
.pros-cons .pros h4 { color: var(--accent); }
.pros-cons .cons h4 { color: #ff6b6b; }
.pros-cons .box ul li::before { content: "+"; }
.pros-cons .cons ul li::before { content: "\2013"; color: #ff6b6b; }

.game-meta-table { width: 100%; border-collapse: collapse; margin: 26px 0; background: var(--card); border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; }
.game-meta-table tr { border-bottom: 1px solid var(--card-border); }
.game-meta-table tr:last-child { border-bottom: none; }
.game-meta-table th, .game-meta-table td { text-align: left; padding: 12px 20px; font-size: 15px; }
.game-meta-table th { width: 200px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 13px; color: var(--accent); }
.game-meta-table td { color: #d6d6d6; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--card-border); border-radius: 8px; margin-bottom: 14px; background: var(--card); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-head); text-transform: uppercase; font-size: 15px; letter-spacing: .5px; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 20px; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--text-muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 12px;
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #0a0a0a; margin-bottom: 6px; }
.cta-band p { margin: 0; color: rgba(10,10,10,.75); font-family: var(--font-head); text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }
.cta-band .btn-primary { background: #0a0a0a; color: var(--accent); }
.cta-band .btn-primary:hover { background: #1c1c1c; }

/* ---------- Chips (taxonomy + tags) ---------- */
.chip-groups { display: flex; flex-direction: column; gap: 12px; margin: 30px 0; }
.chip-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.chip-label { font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); margin-right: 4px; }
.chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--text-muted);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 6px 14px;
  transition: border-color .15s ease, color .15s ease;
}
a.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.tag { color: var(--accent); }
a.chip.tag:hover { background: rgba(198,255,26,.08); }

/* ---------- Author / policy blocks ---------- */
.author-box { display: flex; gap: 18px; align-items: center; background: var(--card); border: 1px solid var(--card-border); border-radius: 8px; padding: 20px 24px; margin: 34px 0; transition: border-color .15s ease, box-shadow .15s ease; }
.author-box:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 26px rgba(198,255,26,.18); }
.author-box .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #0a0a0a; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; flex-shrink: 0; }
.author-box h4 { margin-bottom: 4px; }
.author-box:hover h4 { color: var(--accent); }
.author-box span { color: var(--text-muted); font-size: 14px; }

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0; }

/* ---------- Team / about ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; display: block; }
.team-card .photo { aspect-ratio: 1; border-radius: 8px; background: linear-gradient(135deg, #1c1c1c, #0d0d0d); border: 1px solid var(--card-border); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--accent); transition: border-color .15s ease, box-shadow .15s ease; }
.team-card:hover .photo { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 26px rgba(198,255,26,.2); }
.team-card:hover h3, .team-card:hover h4 { color: var(--accent); }
.team-card h3, .team-card h4 { margin-bottom: 4px; }
.team-card span { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer { background: #0c0c0c; border-top: 1px solid var(--card-border); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-about p { color: var(--text-muted); font-size: 15px; margin: 18px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h3, .footer-col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: #fff; margin-bottom: 22px; }
.footer-col h3 .accent-word, .footer-col h4 .accent-word { color: var(--accent); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); font-size: 15px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--card-border); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; color: var(--text-faint); font-size: 14px; }
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom .legal-links a { color: var(--text-faint); font-size: 14px; }
.footer-bottom .legal-links a:hover { color: var(--accent); }
.back-to-top { position: fixed; right: 26px; bottom: 26px; width: 46px; height: 46px; background: var(--accent); color: #0a0a0a; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 6px 20px rgba(0,0,0,.4); z-index: 90; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.score-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.score-list a { border: 1px solid var(--card-border); border-radius: 20px; padding: 8px 16px; font-size: 14px; color: var(--text-muted); }
.score-list a.active, .score-list a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .icon-btn.search-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.nav-open {
    display: block;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: #0c0c0c;
    border-bottom: 1px solid var(--card-border);
    padding: 10px 24px 26px;
  }
  .main-nav.nav-open > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav.nav-open .dropdown { position: static; opacity: 1; visibility: visible; translate: 0; transform: none; background: none; border: none; padding: 0 0 0 14px; display: none; }
  .main-nav.nav-open .has-dropdown:hover .dropdown { display: block; }
  .main-nav.nav-open a { padding: 12px 0; display: block; width: 100%; }
  .hero-grid, .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
