:root {
  --bg: #07111d;
  --bg-deep: #040a12;
  --surface: rgba(11, 20, 33, 0.88);
  --surface-strong: #0e1726;
  --surface-soft: #111d2f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #99a7bc;
  --gold: #d8b76a;
  --gold-strong: #f1cf7a;
  --green: #66cf98;
  --green-soft: rgba(102, 207, 152, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, 0.96) 0%, rgba(5, 10, 18, 0.98) 38%, rgba(4, 8, 15, 1) 100%),
    radial-gradient(circle at top left, rgba(216, 183, 106, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(102, 207, 152, 0.06), transparent 18%),
    linear-gradient(180deg, #09121f 0%, #06101b 45%, #040a12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 238, 190, 0.12), transparent 20%),
    radial-gradient(circle at 22% 18%, rgba(57, 140, 90, 0.14), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(216, 183, 106, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.08), rgba(4, 8, 14, 0.34));
}

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(1, 3, 7, 0.92), rgba(1, 3, 7, 0.76)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.03), rgba(102, 207, 152, 0.02));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
  position: relative;
}

.brand::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 42px;
  top: 50%;
  height: 56%;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 14% 50%, rgba(216, 183, 106, 0.22), transparent 20%),
    radial-gradient(circle at 52% 50%, rgba(91, 209, 125, 0.14), transparent 28%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.site-logo {
  display: block;
  width: min(168px, 25vw);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42));
}

.top-nav a,
.button,
.eyebrow,
.card-kicker,
.latest-meta {
  font-family: "Space Grotesk", sans-serif;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.top-nav a {
  color: #c7d2e4;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.top-nav a:hover,
.footer-nav a:hover,
.latest-card a:hover {
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.05);
}

.top-nav a:hover {
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(216, 183, 106, 0.08);
}

.hero {
  display: grid;
  gap: 28px;
  padding: 64px 0 58px;
  position: relative;
  align-items: stretch;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 9, 18, 0.96) 0%, rgba(4, 9, 18, 0.52) 28%, rgba(4, 9, 18, 0.38) 52%, rgba(4, 9, 18, 0.76) 76%, rgba(4, 9, 18, 0.96) 100%),
    linear-gradient(180deg, rgba(2, 5, 10, 0.48) 0%, rgba(2, 5, 10, 0.26) 20%, rgba(2, 5, 10, 0.22) 46%, rgba(2, 5, 10, 0.8) 72%, rgba(2, 5, 10, 0.96) 100%),
    url("assets/hero-stadium.webp") center top / cover no-repeat,
    radial-gradient(circle at 50% 56%, rgba(111, 202, 131, 0.1), transparent 16%),
    radial-gradient(circle at 50% 0%, rgba(255, 227, 161, 0.16), transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(102, 207, 152, 0.2), transparent 20%),
    radial-gradient(circle at 48% 38%, rgba(255, 220, 140, 0.08), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(216, 183, 106, 0.18), transparent 22%);
  pointer-events: none;
}

.hero-copy,
.article-card,
.trust-card,
.comparison-item,
.latest-card,
.site-footer {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 46px 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(7, 18, 31, 0.76), rgba(5, 12, 23, 0.58)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(18, 32, 52, 0.14), transparent 34%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.4);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 20% 110%, rgba(102, 207, 152, 0.12), transparent 24%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 42px,
      rgba(255, 255, 255, 0.015) 42px,
      rgba(255, 255, 255, 0.015) 43px
    );
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto auto -72px -64px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 209, 125, 0.16), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #e6f8ef;
  background: rgba(12, 30, 22, 0.64);
  border: 1px solid rgba(102, 207, 152, 0.26);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  max-width: 10.5ch;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.hero-text {
  max-width: 52ch;
  margin: 20px 0 0;
  color: #c8d3e2;
  font-size: 1.03rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.article-card:hover,
.trust-card:hover,
.comparison-item:hover,
.latest-card:hover {
  transform: translateY(-2px);
}

.button:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.button-primary {
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-strong), #c6a354);
  border: 1px solid rgba(255, 239, 191, 0.28);
  box-shadow: 0 16px 36px rgba(198, 163, 84, 0.22);
}

.button-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(216, 183, 106, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.hero-points {
  list-style: none;
  padding: 0;
}

.hero-points li {
  padding: 14px 16px;
  border-radius: 18px;
  color: #d8e2ef;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold-strong));
  vertical-align: middle;
}

.hero-side {
  display: flex;
  align-items: stretch;
}

.hero-side-card {
  width: 100%;
  padding: 32px 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.68), rgba(6, 13, 25, 0.8)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.14), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-side-card::after {
  content: "";
  position: absolute;
  inset: auto -48px -52px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 183, 106, 0.12), transparent 72%);
  filter: blur(12px);
}

.hero-side-label,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-side-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  max-width: 13ch;
  position: relative;
  z-index: 1;
}

.hero-side-stats {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-side-stat {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.hero-side-stat strong {
  display: block;
  color: #f0f5fb;
  margin-bottom: 5px;
}

.hero-side-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 0 2px 26px;
  position: relative;
  z-index: 2;
}

.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(15, 22, 33, 0.92), rgba(10, 16, 26, 0.88)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.08), transparent 24%);
  box-shadow: 0 20px 46px rgba(0,0,0,0.22);
  min-width: 0;
}

.trust-pill-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(102, 207, 152, 0.12);
  border: 1px solid rgba(102, 207, 152, 0.22);
  color: #dff7e8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  flex: 0 0 42px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.trust-pill-icon-comfort {
  background:
    linear-gradient(180deg, rgba(216, 183, 106, 0.16), rgba(216, 183, 106, 0.08));
  border-color: rgba(216, 183, 106, 0.28);
  color: #fff0cd;
}

.trust-pill-icon-delivery,
.trust-pill-icon-platforms {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(255,255,255,0.12);
  color: #f3f7fd;
}

.trust-pill-icon-payments,
.trust-pill-icon-community {
  background:
    linear-gradient(180deg, rgba(102, 207, 152, 0.16), rgba(102, 207, 152, 0.08));
  border-color: rgba(102, 207, 152, 0.22);
  color: #ecfff4;
}

.trust-pill div {
  min-width: 0;
}

.trust-pill strong {
  display: block;
  color: #edf3fb;
}

.trust-pill span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 68px 0;
}

.section-alt {
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.06), transparent 26%);
  border: 1px solid rgba(255,255,255,0.04);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 5vw, 3.15rem);
  letter-spacing: -0.02em;
}

.article-grid,
.trust-grid,
.latest-grid {
  display: grid;
  gap: 16px;
}

.article-card,
.trust-card,
.latest-card {
  border-radius: 24px;
  padding: 24px;
}

.article-card {
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(216, 183, 106, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(11, 20, 33, 0.88);
  min-height: 350px;
  padding: 176px 24px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216, 183, 106, 0.12), transparent 24%);
  pointer-events: none;
}

.article-thumb {
  position: absolute;
  inset: 0 0 auto 0;
  height: 48%;
  opacity: 0.98;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.article-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.03) 0%, rgba(5, 10, 18, 0.14) 20%, rgba(5, 10, 18, 0.9) 58%, rgba(5, 10, 18, 0.95) 100%),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.18), transparent 22%);
}

.article-card-guide .article-thumb {
  background:
    radial-gradient(circle at 24% 42%, rgba(255, 212, 120, 0.88) 0 10%, transparent 11%),
    radial-gradient(circle at 42% 56%, rgba(214, 173, 89, 0.92) 0 12%, transparent 13%),
    radial-gradient(circle at 62% 36%, rgba(255, 223, 147, 0.82) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(185, 145, 61, 0.24), rgba(29, 42, 22, 0.08)),
    linear-gradient(180deg, rgba(18, 24, 36, 0.16), rgba(8, 12, 20, 0.52)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #172235 0%, #0d1522 100%);
}

.article-card-compare .article-thumb {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(90deg, transparent 0 12%, rgba(216, 183, 106, 0.7) 12% 16%, transparent 16% 22%, rgba(102, 207, 152, 0.5) 22% 26%, transparent 26% 100%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 78px),
    linear-gradient(180deg, #162132 0%, #0b1220 100%);
}

.article-card-trust .article-thumb {
  background:
    radial-gradient(circle at 50% 52%, rgba(102, 207, 152, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(102, 207, 152, 0.16), rgba(216, 183, 106, 0.08)),
    linear-gradient(180deg, #14202f 0%, #0b1220 100%);
}

.article-card-explainer .article-thumb {
  background:
    radial-gradient(circle at 28% 52%, rgba(216, 183, 106, 0.26) 0 16%, transparent 17%),
    radial-gradient(circle at 70% 52%, rgba(102, 207, 152, 0.18) 0 16%, transparent 17%),
    linear-gradient(90deg, transparent 0 34%, rgba(255,255,255,0.08) 34% 36%, transparent 36% 64%, rgba(255,255,255,0.08) 64% 66%, transparent 66% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(180deg, #192335 0%, #0c1320 100%);
}

.article-card-fc27-prep .article-thumb {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 36px),
    radial-gradient(circle at 74% 28%, rgba(216, 183, 106, 0.24), transparent 16%),
    linear-gradient(135deg, rgba(102, 207, 152, 0.12), rgba(216, 183, 106, 0.08)),
    linear-gradient(180deg, #142132 0%, #0b1321 100%);
}

.article-card-fc27-carry .article-thumb {
  background:
    radial-gradient(circle at 30% 52%, rgba(216, 183, 106, 0.28) 0 14%, transparent 15%),
    radial-gradient(circle at 70% 52%, rgba(102, 207, 152, 0.18) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.08) 48% 52%, transparent 52% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(180deg, #182336 0%, #0c1421 100%);
}

.article-card-fc27-launch .article-thumb {
  background:
    radial-gradient(circle at 22% 70%, rgba(216, 183, 106, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.58) 0 18%, transparent 18% 26%, rgba(102, 207, 152, 0.42) 26% 34%, transparent 34% 100%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, #152133 0%, #0a1220 100%);
}

.article-card-guide .article-thumb::before,
.article-card-compare .article-thumb::before,
.article-card-trust .article-thumb::before,
.article-card-explainer .article-thumb::before,
.article-card-fc27-prep .article-thumb::before,
.article-card-fc27-carry .article-thumb::before,
.article-card-fc27-launch .article-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
}

.article-card-guide .article-thumb::before {
  background:
    radial-gradient(circle at 30% 46%, rgba(8, 12, 18, 0.46) 0 8%, transparent 9%),
    radial-gradient(circle at 48% 60%, rgba(8, 12, 18, 0.42) 0 10%, transparent 11%),
    radial-gradient(circle at 66% 40%, rgba(8, 12, 18, 0.4) 0 7%, transparent 8%);
}

.article-card-compare .article-thumb::before {
  inset: 18% 10% 18% 10%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.62) 0 28%, transparent 28% 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.article-card-trust .article-thumb::before {
  left: 50%;
  top: 16%;
  width: 120px;
  height: 130px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 88% 14%, 88% 56%, 50% 100%, 12% 56%, 12% 14%);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(102, 207, 152, 0.26), rgba(216, 183, 106, 0.12));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.2);
}

.article-card-explainer .article-thumb::before {
  inset: 22% 18% auto 18%;
  height: 74px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.1) 0 10%, transparent 11%),
    radial-gradient(circle at 82% 50%, rgba(255,255,255,0.1) 0 10%, transparent 11%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.article-card-fc27-prep .article-thumb::before {
  inset: 18% 12% 18% 12%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(102, 207, 152, 0.24) 0 26%, transparent 26% 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.article-card-fc27-carry .article-thumb::before {
  inset: 28% 20% auto 20%;
  height: 62px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.22), rgba(102, 207, 152, 0.12));
  border: 1px solid rgba(255,255,255,0.08);
}

.article-card-fc27-launch .article-thumb::before {
  inset: auto 16% 18% 16%;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.4), transparent 46%, rgba(102, 207, 152, 0.24));
  border: 1px solid rgba(255,255,255,0.08);
}

.card-kicker,
.latest-meta {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: rgba(102, 207, 152, 0.08);
  border: 1px solid rgba(102, 207, 152, 0.14);
}

.article-card h3,
.trust-card h3,
.comparison-item h3,
.latest-card h3 {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.article-card p,
.trust-card p,
.comparison-copy p,
.comparison-item p,
.latest-card p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.75;
}

.article-card p,
.trust-card p,
.comparison-item p,
.latest-card p {
  margin: 14px 0 0;
}

.card-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.card-points li {
  color: #d6dfeb;
  font-size: 0.93rem;
}

.article-card:hover {
  border-color: rgba(216, 183, 106, 0.22);
  box-shadow: 0 30px 74px rgba(0,0,0,0.34);
}

.article-card:hover .article-thumb {
  transform: scale(1.04);
}

.card-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--green));
  vertical-align: middle;
}

.trust-section {
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(102, 207, 152, 0.05), rgba(216, 183, 106, 0.03));
}

.trust-card {
  background:
    linear-gradient(180deg, rgba(102, 207, 152, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.08), transparent 22%);
  box-shadow: 0 20px 56px rgba(0,0,0,0.22);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  margin-bottom: 16px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(102, 207, 152, 0.16);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.comparison-summary {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  max-width: 66ch;
}

.comparison-summary p {
  margin: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(216, 183, 106, 0.08), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top right, rgba(102, 207, 152, 0.08), transparent 20%);
  box-shadow: 0 24px 62px rgba(0,0,0,0.3);
  padding: 12px;
}

.comparison-section::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.012)),
    radial-gradient(circle at top right, rgba(102, 207, 152, 0.07), transparent 24%);
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
}

.comparison-table th {
  color: var(--gold-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}

.comparison-table td {
  color: #d1d9e4;
  font-size: 0.96rem;
  background: linear-gradient(180deg, rgba(9, 18, 31, 0.92), rgba(9, 18, 31, 0.82));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table tbody td:first-child {
  border-left: 1px solid rgba(255,255,255,0.06);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  font-weight: 700;
  color: #eef3fa;
}

.comparison-site-link {
  display: inline-block;
  margin-top: 8px;
  color: #b9c8da;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(216, 183, 106, 0.34);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.comparison-site-link:hover {
  color: var(--gold-strong);
  text-decoration-color: rgba(241, 207, 122, 0.7);
}

.comparison-table tbody td:last-child {
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

.recommended-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(102, 207, 152, 0.12);
  border: 1px solid rgba(102, 207, 152, 0.22);
  color: #dcf8e7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gold-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.comparison-featured td {
  background:
    linear-gradient(180deg, rgba(13, 34, 25, 0.94), rgba(10, 26, 20, 0.84)),
    linear-gradient(90deg, rgba(102, 207, 152, 0.06), rgba(216, 183, 106, 0.06));
  border-top-color: rgba(102, 207, 152, 0.18);
  border-bottom-color: rgba(102, 207, 152, 0.18);
}

.comparison-featured td:first-child {
  color: #eef9f3;
  font-weight: 700;
}

.latest-card a {
  transition: color 0.2s ease;
}

.latest-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.06), transparent 24%);
  box-shadow: 0 18px 52px rgba(0,0,0,0.22);
}

.latest-section {
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
}

.latest-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.72), rgba(7, 14, 24, 0.48)),
    radial-gradient(circle at bottom left, rgba(216, 183, 106, 0.06), transparent 24%);
  border: 1px solid rgba(255,255,255,0.04);
}

.comparison-cta-section {
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
}

.comparison-cta {
  display: grid;
  gap: 28px;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 78% 26%, rgba(102, 207, 152, 0.12), transparent 18%),
    radial-gradient(circle at 24% 18%, rgba(216, 183, 106, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(10, 16, 28, 0.98), rgba(13, 22, 36, 0.92));
  box-shadow: 0 28px 70px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

.comparison-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(255,255,255,0.018) 56px 57px),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 26%);
  pointer-events: none;
}

.comparison-cta-copy,
.comparison-cta-visual {
  position: relative;
  z-index: 1;
}

.comparison-cta-copy {
  display: grid;
  gap: 16px;
}

.comparison-cta-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.comparison-cta-copy p {
  max-width: 52ch;
  margin: 0;
  color: #c6d0df;
  line-height: 1.75;
}

.comparison-cta-visual {
  min-height: 220px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(18, 26, 38, 0.82), rgba(9, 15, 25, 0.92));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.cta-panel,
.cta-coin,
.cta-glow {
  position: absolute;
}

.cta-panel-main {
  inset: 24px 28px 44px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.34) 0 28%, transparent 28% 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-panel-side {
  right: 24px;
  top: 34px;
  width: 96px;
  height: 140px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(102, 207, 152, 0.16), rgba(102, 207, 152, 0.04));
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-coin {
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,247,221,0.75), transparent 22%),
    linear-gradient(135deg, #f1cf7a, #b88d2f);
  border: 4px solid rgba(64, 44, 11, 0.26);
  box-shadow: 0 14px 26px rgba(0,0,0,0.3);
}

.cta-coin-large {
  left: 34px;
  bottom: 24px;
  width: 88px;
  height: 88px;
}

.cta-coin-small {
  left: 92px;
  bottom: 38px;
  width: 52px;
  height: 52px;
}

.cta-glow {
  right: 22px;
  bottom: 20px;
  width: 180px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 207, 152, 0.16), transparent 68%);
  filter: blur(12px);
}

.featured-platforms-section {
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
}

.featured-platforms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.78), rgba(7, 13, 22, 0.5)),
    radial-gradient(circle at top left, rgba(216, 183, 106, 0.06), transparent 22%),
    radial-gradient(circle at bottom right, rgba(102, 207, 152, 0.06), transparent 20%);
  border: 1px solid rgba(255,255,255,0.04);
}

.featured-platforms-subtitle {
  max-width: 64ch;
  margin: 14px 0 0;
  color: #c2cedd;
  line-height: 1.75;
}

.fc27-section-subtitle {
  max-width: 64ch;
  margin: 14px 0 0;
  color: #c2cedd;
  line-height: 1.75;
}

.featured-platforms-grid {
  display: grid;
  gap: 18px;
}

.fc27-grid {
  display: grid;
  gap: 16px;
}

.featured-platform-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(13, 21, 33, 0.94), rgba(10, 16, 26, 0.88)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.08), transparent 24%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
}

.featured-platform-card-primary {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 16, 26, 0.16), rgba(9, 16, 26, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(216, 183, 106, 0.14), transparent 16%),
    radial-gradient(circle at 18% 82%, rgba(102, 207, 152, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(16, 26, 40, 0.96), rgba(8, 13, 22, 0.94));
}

.featured-platform-card-secondary {
  align-content: start;
}

.featured-platform-visual {
  min-height: 180px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(19, 28, 42, 0.9), rgba(10, 16, 26, 0.96));
}

.featured-platform-card-primary .featured-platform-visual {
  min-height: 320px;
  border-radius: 0;
  border: none;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.08), rgba(4, 10, 18, 0.28)),
    linear-gradient(135deg, rgba(11, 18, 29, 0.72), rgba(7, 13, 22, 0.46));
}

.featured-platform-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255,255,255,0.018) 54px 55px),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%);
  pointer-events: none;
}

.featured-platform-visual-image {
  background:
    radial-gradient(circle at top right, rgba(102, 207, 152, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(216, 183, 106, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(17, 26, 39, 0.94), rgba(9, 15, 25, 0.98));
}

.featured-platform-card-secondary .featured-platform-visual {
  min-height: 132px;
  aspect-ratio: auto;
}

.featured-platform-visual-image::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.06)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 12%, transparent 88%, rgba(255,255,255,0.015));
}

.featured-platform-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  padding: 10px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}

.featured-platform-image-featured {
  object-fit: cover;
  object-position: center;
  padding: 0;
  filter: none;
}

.featured-platform-copy {
  display: grid;
  gap: 14px;
}

.featured-platform-card-primary .featured-platform-copy {
  padding: 0 24px 24px;
}

.featured-platform-card-secondary .featured-platform-copy {
  gap: 10px;
}

.featured-platform-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.featured-platform-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(216, 183, 106, 0.08);
  border: 1px solid rgba(216, 183, 106, 0.16);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  color: #e3ebf6;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.featured-platform-badge-trust {
  color: #ddf7e8;
  background: rgba(102, 207, 152, 0.12);
  border-color: rgba(102, 207, 152, 0.22);
}

.featured-platform-card h3 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.featured-platform-card-secondary h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}

.featured-platform-card p {
  margin: 0;
  color: #c3cfde;
  line-height: 1.75;
}

.fc27-section-note {
  margin: 22px 0 0;
  color: #b9c6d8;
  line-height: 1.75;
  font-size: 0.95rem;
}

.featured-platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-platform-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e5edf8;
  font-size: 0.78rem;
}

.featured-platform-coin,
.featured-platform-panel,
.featured-platform-shield,
.featured-platform-check {
  position: absolute;
}

.featured-platform-coin {
  left: 24px;
  bottom: 20px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,247,221,0.75), transparent 22%),
    linear-gradient(135deg, #f1cf7a, #b88d2f);
  border: 4px solid rgba(64, 44, 11, 0.26);
  box-shadow: 0 16px 28px rgba(0,0,0,0.28);
}

.featured-platform-panel {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
}

.featured-platform-panel-main {
  inset: 24px 26px 30px 92px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(216, 183, 106, 0.3) 0 24%, transparent 24% 100%);
}

.featured-platform-panel-side {
  right: 22px;
  top: 22px;
  width: 82px;
  height: 122px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(102, 207, 152, 0.16), rgba(102, 207, 152, 0.04));
}

.featured-platform-panel-soft {
  inset: 28px 24px 28px 104px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(102, 207, 152, 0.18) 0 26%, transparent 26% 100%);
}

.featured-platform-shield {
  left: 28px;
  top: 24px;
  width: 92px;
  height: 104px;
  clip-path: polygon(50% 0%, 88% 14%, 88% 58%, 50% 100%, 12% 58%, 12% 14%);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(102, 207, 152, 0.28), rgba(216, 183, 106, 0.12));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.2);
}

.featured-platform-check {
  left: 58px;
  top: 62px;
  width: 28px;
  height: 14px;
  border-left: 4px solid #f2fbf5;
  border-bottom: 4px solid #f2fbf5;
  transform: rotate(-45deg);
}

.site-footer {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
}

.footer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.footer-disclaimer {
  margin-top: 10px;
  max-width: 56ch;
  color: #b9c5d6;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.footer-nav a {
  color: #c7d2e4;
}

.category-nav,
.breadcrumbs,
.simple-page-shell,
.topic-grid,
.topic-card-grid,
.utility-link-row {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 22px;
  position: relative;
  z-index: 4;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #d7e0ed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-nav a:hover,
.category-nav a[aria-current="page"] {
  color: var(--gold-strong);
  border-color: rgba(216, 183, 106, 0.24);
  background: rgba(216, 183, 106, 0.08);
  transform: translateY(-1px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #d6e0ed;
}

.breadcrumbs a:hover {
  color: var(--gold-strong);
}

.breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.28);
}

.article-page .breadcrumbs,
.article-index-page .breadcrumbs,
.simple-page-shell .breadcrumbs {
  width: 100%;
  margin: 0;
}

.section-link-row {
  margin: 22px 0 0;
}

.article-index-page,
.article-page {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.archive-hero {
  padding: 44px 0 18px;
}

.article-index-section {
  padding-top: 20px;
}

.article-page {
  display: grid;
  gap: 20px;
  padding: 36px 0 24px;
}

.article-layout,
.sidebar-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.article-layout {
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.article-hero {
  padding: 30px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.article-dek {
  max-width: 60ch;
  margin: 18px 0 0;
  color: #c8d3e2;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.article-body {
  padding: 30px;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.article-body p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.article-callout {
  margin-top: 26px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(102, 207, 152, 0.18);
  background: rgba(102, 207, 152, 0.08);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: #dff7e8;
  font-family: "Space Grotesk", sans-serif;
}

.article-callout p {
  margin: 0;
}

.article-sidebar {
  display: flex;
  align-items: start;
  min-width: 0;
}

.sidebar-card {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 22px;
  display: grid;
  gap: 14px;
  position: sticky;
  top: 20px;
}

.sidebar-card a {
  color: #d8e1ee;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.sidebar-card a:hover {
  color: var(--gold-strong);
}

.simple-page {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
  padding: 56px 0;
}

.simple-page-shell {
  padding: 18px 0 48px;
}

.simple-page-shell .simple-page {
  width: 100%;
  padding: 22px 0 0;
}

.simple-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.simple-card p {
  color: var(--muted);
  line-height: 1.8;
}

.simple-card h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.note-box {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(216, 183, 106, 0.18);
  background: rgba(216, 183, 106, 0.06);
}

.note-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-family: "Space Grotesk", sans-serif;
}

.note-box p {
  margin: 0;
}

.page-hero-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(9, 18, 31, 0.88), rgba(7, 14, 23, 0.78)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.14), transparent 24%);
  box-shadow: var(--shadow);
}

.page-hero-card h1,
.topic-card h2,
.topic-card h3 {
  margin-top: 0;
}

.page-hero-card p,
.topic-card p,
.topic-list-card p {
  color: var(--muted);
  line-height: 1.8;
}

.topic-grid,
.topic-card-grid,
.utility-link-row {
  display: grid;
  gap: 18px;
}

.topic-card-grid {
  margin-top: 24px;
}

.topic-card,
.topic-list-card,
.meta-strip,
.utility-link-row a {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    rgba(9, 16, 27, 0.84);
  box-shadow: var(--shadow);
}

.topic-card,
.topic-list-card {
  border-radius: 22px;
  padding: 24px;
}

.topic-card ul,
.topic-list-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.topic-card li,
.topic-list-card li {
  color: #d9e2ef;
  line-height: 1.7;
}

.topic-card li::before,
.topic-list-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold-strong));
  vertical-align: middle;
}

.topic-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(102, 207, 152, 0.2);
  background: rgba(102, 207, 152, 0.1);
  color: #dcf6e7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 20px;
  padding: 16px 18px;
}

.meta-strip span {
  color: #d9e2ef;
  font-size: 0.92rem;
}

.article-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 183, 106, 0.22);
  background: rgba(216, 183, 106, 0.1);
  color: #fff0cd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.article-date-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-support-links {
  display: grid;
  gap: 12px;
}

.utility-link-row {
  margin-top: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.utility-link-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  color: #edf3fb;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.utility-link-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 183, 106, 0.24);
  color: var(--gold-strong);
}

.related-articles-grid.related-articles-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e7eef8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: stretch;
  }

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

  .article-page {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }

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

  .fc27-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-cta {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
  }

  .featured-platforms-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .featured-platform-card {
    align-content: start;
  }

  .topic-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .trust-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fc27-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .top-nav {
    gap: 10px;
  }

  .top-nav a {
    padding: 8px 12px;
  }

  .site-logo {
    width: min(148px, 44vw);
  }

  .category-nav {
    padding: 10px 0 18px;
  }

  .breadcrumbs {
    padding-top: 14px;
    font-size: 0.84rem;
  }

  .hero::before {
    top: 0;
    bottom: -18px;
    background:
      linear-gradient(180deg, rgba(3, 7, 14, 0.68) 0%, rgba(3, 7, 14, 0.36) 34%, rgba(3, 7, 14, 0.84) 100%),
      linear-gradient(90deg, rgba(4, 9, 18, 0.92) 0%, rgba(4, 9, 18, 0.4) 50%, rgba(4, 9, 18, 0.92) 100%),
      url("assets/hero-stadium-mobile.webp") center top / cover no-repeat,
      radial-gradient(circle at 50% 6%, rgba(255, 225, 156, 0.12), transparent 18%),
      linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0));
  }

  .hero-copy,
  .hero-side-card,
  .article-card,
  .trust-card,
  .comparison-item,
  .latest-card,
  .site-footer,
  .simple-card,
  .article-hero,
  .article-body,
  .sidebar-card {
    padding: 22px;
  }

  .section-heading h2,
  h1 {
    max-width: none;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero-copy {
    padding: 26px 22px;
  }

  .hero-side-card {
    padding: 22px;
  }

  .hero-side-card h2 {
    max-width: none;
  }

  .hero-points,
  .hero-side-stats {
    gap: 10px;
  }

  .trust-row {
    padding-bottom: 16px;
  }

  .section-alt,
  .trust-section,
  .latest-section,
  .comparison-cta-section,
  .featured-platforms-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fc27-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .article-card {
    min-height: 312px;
    padding: 160px 20px 22px;
  }

  .article-thumb {
    height: 46%;
  }

  .comparison-cta {
    padding: 24px;
  }

  .comparison-cta-visual {
    min-height: 190px;
  }

  .featured-platform-visual {
    min-height: 0;
  }

  .featured-platform-image {
    padding: 8px;
  }

  .article-page {
    grid-template-columns: 1fr;
    width: min(calc(100% - 20px), var(--max-width));
  }

  .comparison-table {
    min-width: 560px;
  }

  .article-meta {
    gap: 8px;
  }

  .article-meta span {
    width: 100%;
    border-radius: 14px;
  }

  .sidebar-card {
    position: static;
  }
}

/* Editorial article system */
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-right: 14px;
  background:
    linear-gradient(145deg, rgba(216, 183, 106, 0.92), rgba(91, 209, 125, 0.68));
  color: #07111d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.archive-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 34px 34px;
  margin-top: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.88), rgba(6, 14, 24, 0.74)),
    radial-gradient(circle at 12% 18%, rgba(216, 183, 106, 0.2), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(102, 207, 152, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.archive-hero::before,
.article-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.02), transparent 24% 74%, rgba(255,255,255,0.03)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 54px,
      rgba(255,255,255,0.018) 54px,
      rgba(255,255,255,0.018) 55px
    );
  pointer-events: none;
}

.archive-hero h1 {
  max-width: 12ch;
}

.archive-hero .hero-text {
  max-width: 60ch;
}

.archive-hero-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.archive-stat {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.archive-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-strong);
  font-family: "Space Grotesk", sans-serif;
}

.archive-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-rail {
  display: grid;
  gap: 16px;
}

.article-card {
  position: relative;
}

.article-card-media {
  position: absolute;
  inset: 0 0 auto 0;
  height: 50%;
  overflow: hidden;
}

.article-card-content {
  position: relative;
  z-index: 1;
}

.article-card-label-row,
.article-card-meta,
.article-banner-meta,
.related-meta,
.sidebar-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-chip,
.read-chip,
.hero-updated,
.hero-tag,
.article-category-tag,
.comparison-pill,
.sidebar-mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #dbe5f3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-chip {
  color: #fff0cd;
  border-color: rgba(216, 183, 106, 0.24);
  background: rgba(216, 183, 106, 0.12);
}

.read-chip,
.hero-updated,
.sidebar-mini-chip {
  color: #dcf7e7;
  border-color: rgba(102, 207, 152, 0.24);
  background: rgba(102, 207, 152, 0.1);
}

.article-card h3 {
  margin-top: 14px;
  font-size: 1.34rem;
}

.article-card p {
  max-width: 28ch;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eef4fb;
  font-family: "Space Grotesk", sans-serif;
}

.article-card:hover .article-card-arrow {
  color: var(--gold-strong);
}

.editorial-band {
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(13, 25, 41, 0.92), rgba(8, 16, 28, 0.88)),
    radial-gradient(circle at top right, rgba(216, 183, 106, 0.12), transparent 22%);
  box-shadow: 0 22px 58px rgba(0,0,0,0.26);
}

.editorial-band h2 {
  margin-top: 8px;
  max-width: 15ch;
}

.editorial-band p {
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.75;
}

.article-card--guide .article-card-media {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.12), rgba(6, 14, 26, 0.88)),
    radial-gradient(circle at 20% 28%, rgba(216, 183, 106, 0.95), transparent 12%),
    radial-gradient(circle at 56% 44%, rgba(255, 230, 163, 0.88), transparent 11%),
    radial-gradient(circle at 78% 18%, rgba(102, 207, 152, 0.72), transparent 14%),
    linear-gradient(135deg, rgba(23, 47, 31, 0.4), rgba(30, 42, 64, 0.76));
}

.article-card--trust .article-card-media {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.14), rgba(6, 14, 26, 0.88)),
    radial-gradient(circle at 18% 20%, rgba(102, 207, 152, 0.92), transparent 16%),
    radial-gradient(circle at 56% 30%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(216, 183, 106, 0.84), transparent 12%),
    linear-gradient(135deg, rgba(10, 30, 28, 0.76), rgba(16, 28, 49, 0.8));
}

.article-card--explainer .article-card-media {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.08), rgba(6, 14, 26, 0.9)),
    radial-gradient(circle at 26% 24%, rgba(216, 183, 106, 0.9), transparent 14%),
    radial-gradient(circle at 74% 22%, rgba(102, 207, 152, 0.82), transparent 15%),
    linear-gradient(135deg, rgba(24, 41, 67, 0.82), rgba(10, 20, 34, 0.84));
}

.article-card--compare .article-card-media {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.08), rgba(6, 14, 26, 0.92)),
    radial-gradient(circle at 22% 24%, rgba(255, 221, 147, 0.92), transparent 12%),
    radial-gradient(circle at 58% 18%, rgba(102, 207, 152, 0.86), transparent 15%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.12), transparent 16%),
    linear-gradient(135deg, rgba(23, 37, 58, 0.84), rgba(16, 27, 45, 0.88));
}

.article-card--future .article-card-media {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.06), rgba(6, 14, 26, 0.9)),
    radial-gradient(circle at 16% 18%, rgba(102, 207, 152, 0.8), transparent 14%),
    radial-gradient(circle at 52% 36%, rgba(216, 183, 106, 0.86), transparent 16%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.18), transparent 12%),
    linear-gradient(135deg, rgba(19, 29, 53, 0.84), rgba(9, 21, 33, 0.88));
}

.article-hero-premium {
  position: relative;
  overflow: hidden;
  padding: 40px 38px 34px;
  background:
    linear-gradient(120deg, rgba(5, 13, 24, 0.9), rgba(6, 14, 26, 0.76)),
    radial-gradient(circle at 18% 18%, rgba(216, 183, 106, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(102, 207, 152, 0.16), transparent 22%);
}

.article-hero-premium.article-hero-comparison {
  background:
    linear-gradient(120deg, rgba(5, 13, 24, 0.88), rgba(6, 14, 26, 0.72)),
    linear-gradient(180deg, rgba(3, 8, 15, 0.12), rgba(3, 8, 15, 0.82)),
    radial-gradient(circle at 20% 16%, rgba(216, 183, 106, 0.22), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(102, 207, 152, 0.16), transparent 20%),
    url("assets/hero-stadium.webp") center / cover no-repeat;
}

.article-banner-grid {
  display: grid;
  gap: 22px;
  align-items: end;
}

.article-banner-panel {
  position: relative;
  z-index: 1;
}

.article-banner-panel h1 {
  max-width: 11ch;
}

.article-banner-meta {
  margin-top: 16px;
}

.article-banner-side {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.article-banner-side h2 {
  font-size: 1.2rem;
}

.article-banner-side p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.article-banner-points {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.article-banner-points li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #dbe5f3;
}

.article-banner-points li::before,
.article-body ul li::before,
.related-article-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold-strong));
  vertical-align: middle;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-intro-grid,
.comparison-card-grid,
.related-articles-grid,
.sidebar-mini-list {
  display: grid;
  gap: 16px;
}

.article-section {
  display: grid;
  gap: 16px;
}

.article-section h2 {
  margin-top: 0;
}

.article-section h3 {
  font-size: 1.15rem;
}

.article-body p {
  margin: 0;
  max-width: 68ch;
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-body li {
  color: #d8e2ef;
  line-height: 1.7;
}

.article-body a {
  color: #f4d38b;
  text-decoration: underline;
  text-decoration-color: rgba(244, 211, 139, 0.4);
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--gold-strong);
  text-decoration-color: rgba(241, 207, 122, 0.7);
}

.article-callout,
.article-note,
.editorial-disclaimer,
.inline-link-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.article-note {
  border-color: rgba(216, 183, 106, 0.22);
  background: rgba(216, 183, 106, 0.08);
}

.editorial-disclaimer {
  border-color: rgba(239, 68, 68, 0.18);
  background: rgba(239, 68, 68, 0.07);
}

.inline-link-card {
  display: grid;
  gap: 10px;
  border-color: rgba(102, 207, 152, 0.18);
  background: rgba(102, 207, 152, 0.08);
}

.inline-link-card h3,
.article-note h3,
.editorial-disclaimer h3,
.comparison-card h3,
.comparison-table-card h3,
.related-article-card h3,
.sidebar-mini-card h3 {
  margin: 0;
}

.inline-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(7, 17, 29, 0.56);
  color: #f0f5fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.inline-link-button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 183, 106, 0.28);
  color: var(--gold-strong);
}

.comparison-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.comparison-card,
.comparison-table-card,
.related-article-card,
.sidebar-mini-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    rgba(9, 16, 27, 0.82);
}

.comparison-card p,
.comparison-table-card p,
.related-article-card p,
.sidebar-mini-card p {
  color: var(--muted);
  line-height: 1.7;
}

.comparison-score {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(102, 207, 152, 0.24);
  background: rgba(102, 207, 152, 0.12);
  color: #ddf7e8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.comparison-score.recommended {
  border-color: rgba(216, 183, 106, 0.28);
  background: rgba(216, 183, 106, 0.12);
  color: #fff0cd;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 14, 24, 0.82);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.comparison-table th {
  color: #f1f5fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-site {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-site-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(216, 183, 106, 0.9), rgba(102, 207, 152, 0.55));
  color: #07111d;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.comparison-recommended {
  box-shadow: inset 3px 0 0 rgba(216, 183, 106, 0.88);
  background: linear-gradient(90deg, rgba(216, 183, 106, 0.09), transparent 28%);
}

.comparison-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #dce6f5;
  font-size: 0.76rem;
  font-family: "Space Grotesk", sans-serif;
}

.comparison-tag.recommended {
  color: #fff0cd;
  border-color: rgba(216, 183, 106, 0.22);
  background: rgba(216, 183, 106, 0.12);
}

.related-articles {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.related-articles h2 {
  margin-top: 0;
}

.related-article-card {
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-article-card:hover,
.sidebar-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 183, 106, 0.18);
}

.related-meta,
.sidebar-mini-meta {
  margin-bottom: 12px;
}

.sidebar-stack {
  display: grid;
  gap: 16px;
}

.sidebar-card h3,
.sidebar-mini-card h3 {
  font-size: 1.08rem;
}

.sidebar-featured-links,
.sidebar-mini-list {
  display: grid;
  gap: 10px;
}

.sidebar-featured-links a,
.sidebar-mini-card a,
.related-article-card a {
  color: inherit;
}

.sidebar-featured-links a {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.sidebar-featured-links a:hover {
  border-color: rgba(216, 183, 106, 0.18);
  color: var(--gold-strong);
}

.platform-showcase {
  display: grid;
  gap: 14px;
}

.platform-feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(8, 15, 26, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 183, 106, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.platform-feature-card--primary {
  padding: 0;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.08), rgba(4, 10, 18, 0.78)),
    radial-gradient(circle at 22% 82%, rgba(102, 207, 152, 0.14), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(216, 183, 106, 0.16), transparent 18%),
    url("assets/hero-stadium.webp") center / cover no-repeat;
}

.platform-feature-card--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 19, 0.18), rgba(5, 11, 19, 0.9)),
    linear-gradient(120deg, rgba(5, 11, 19, 0.58), transparent 42%, rgba(5, 11, 19, 0.66));
  pointer-events: none;
}

.platform-feature-card--secondary {
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  min-height: 132px;
}

.platform-card-top,
.platform-card-bottom {
  position: relative;
  z-index: 1;
}

.platform-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 18px 0;
}

.platform-card-bottom {
  display: grid;
  gap: 10px;
  align-content: end;
  padding: 0 18px 18px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 17, 29, 0.54);
  color: #eef4fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-badge--featured {
  border-color: rgba(216, 183, 106, 0.24);
  background: rgba(216, 183, 106, 0.14);
  color: #fff0cd;
}

.platform-badge--trust {
  border-color: rgba(102, 207, 152, 0.26);
  background: rgba(102, 207, 152, 0.12);
  color: #ddf7e8;
}

.platform-badge--age {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
}

.platform-label {
  margin: 0;
  color: rgba(219, 229, 243, 0.82);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-feature-card h4,
.platform-feature-card h3 {
  margin: 0;
}

.platform-feature-card h4 {
  font-size: 1.52rem;
}

.platform-feature-card p {
  margin: 0;
  color: #d0dceb;
  line-height: 1.65;
}

.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-points span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.46);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe8f5;
  font-size: 0.78rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 183, 106, 0.94), rgba(102, 207, 152, 0.76));
  color: #07111d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-link:hover {
  color: #07111d;
  filter: brightness(1.04);
}

.platform-thumb {
  width: 100%;
  height: 100px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(5, 11, 19, 0.12), rgba(5, 11, 19, 0.32)),
    center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.platform-thumb--safe {
  background-image:
    linear-gradient(180deg, rgba(5, 11, 19, 0.1), rgba(5, 11, 19, 0.34)),
    url("assets/featured-safefccoins.jpg");
}

.platform-secondary-copy {
  display: grid;
  gap: 8px;
}

.platform-secondary-copy h4 {
  font-size: 1.08rem;
}

.platform-secondary-copy p {
  font-size: 0.92rem;
}

.reading-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reading-path a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.reading-path a:hover {
  border-color: rgba(216, 183, 106, 0.18);
  color: var(--gold-strong);
}

.article-disclaimer-text {
  font-size: 0.92rem;
  color: #d5deeb;
}

@media (min-width: 760px) {
  .archive-hero-stats,
  .article-banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-articles-grid,
  .sidebar-mini-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .archive-hero,
  .article-hero-premium {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .archive-hero h1,
  .article-banner-panel h1 {
    max-width: none;
  }

  .article-card-media {
    height: 44%;
  }

  .article-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-table {
    min-width: 620px;
  }

  .platform-feature-card--secondary {
    grid-template-columns: 1fr;
  }

  .platform-thumb {
    height: 118px;
  }
}
