/* ═══════════════════════════════════════
   drmfree.win — main.css
   Industrial editorial · Dark · High contrast
═══════════════════════════════════════ */

:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --card-bg:    #161616;
  --border:     #242424;
  --border-mid: #2e2e2e;
  --green:      #00e87a;
  --green-dim:  #00b85e;
  --green-glow: rgba(0,232,122,0.10);
  --red:        #ff3d3d;
  --white:      #f0ede8;
  --muted:      #7a7a7a;
  --muted-mid:  #555;

  --display: 'Bebas Neue', sans-serif;
  --mono:    'Space Mono', monospace;
  --body:    'DM Sans', sans-serif;

  --container: 1200px;
  --nav-h: 64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Scanlines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: 0.02em; line-height: 0.92; }
.mono { font-family: var(--mono); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--green);
  border: none;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  position: relative;
}
.btn-primary:hover { background: #00ff88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border-mid);
  padding: 15px 28px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
  background: transparent;
}
.btn-ghost:hover { color: var(--white); border-color: var(--muted-mid); }

.btn-large { padding: 20px 48px; font-size: 13px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-logo em { font-style: normal; color: var(--muted); font-size: 18px; }
.nav-links { display: flex; gap: 32px; align-items: center; flex: 1; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--green);
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-cta:hover { background: #00ff88; }
.nav-hamburger { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.2s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-bg-word {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(240px, 35vw, 480px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,232,122,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.hero-inner { padding-bottom: 80px; position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(76px, 12vw, 180px);
  color: var(--white);
  max-width: 880px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-headline .accent-green { color: var(--green); }
.hero-headline .word-own { display: block; }
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(240,237,232,0.62);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 480px;
  animation: fadeUp 0.7s 0.18s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.26s ease both;
}
.btn-hero { font-size: 13px; padding: 20px 40px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  animation: fadeUp 0.7s 0.34s ease both;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.trust-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--green);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-inner span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--black);
  padding: 0 36px;
}
.ticker-inner span::before { content: '✦ '; }

/* ── STATS ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 44px 48px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(0,232,122,0.03); }
.stat-num {
  font-family: var(--display);
  font-size: 60px;
  color: var(--green);
  line-height: 1;
}
.stat-plus { font-size: 40px; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }
.section-headline {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.92;
  margin-bottom: 0;
}
.accent-green { color: var(--green); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

/* ── FEATURED GAMES ── */
.featured-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.game-card {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.game-card:hover { background: var(--card-bg); }
.game-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.04); }
.game-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}
.game-card-placeholder span {
  font-family: var(--display);
  font-size: 48px;
  color: var(--border-mid);
  letter-spacing: 0.06em;
}
.placeholder-witcher { background: #0d1a0f; }
.placeholder-bg      { background: #1a1209; }
.placeholder-disco   { background: #0e0d1a; }
.placeholder-system  { background: #1a0a0a; }
.placeholder-orion   { background: #0a0f1a; }

.game-card-body { padding: 24px 28px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.game-card-genre { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.game-card-title { font-family: var(--display); font-size: 26px; line-height: 0.95; transition: color 0.15s; }
.game-card:hover .game-card-title { color: var(--green); }
.game-card-desc { font-size: 13px; color: rgba(240,237,232,0.5); line-height: 1.6; flex: 1; }
.game-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.drm-badge {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(0,232,122,0.18);
  padding: 3px 8px;
}
.game-price-tag { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.game-buy-btn {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--green);
  padding: 14px 28px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.game-buy-btn:hover { background: #00ff88; }
.game-card-all { background: rgba(0,232,122,0.04); border: 1px dashed rgba(0,232,122,0.18); }
.game-card-all-inner { height: 100%; text-decoration: none; color: inherit; display: flex; align-items: stretch; }
.game-card-all-body { padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.game-all-eyebrow { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--green); }
.game-all-title { font-family: var(--display); font-size: 44px; line-height: 0.92; }
.game-all-btn { font-size: 11px; padding: 12px 24px; display: inline-block; margin-top: 8px; }
.gog-cta-row { display: flex; align-items: center; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.affiliate-note { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; max-width: 380px; line-height: 1.6; }

/* ── DRM EXPLAIN ── */
.drm-explain-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.drm-explain-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 100px;
  align-items: start;
}
.drm-explain-headline { font-size: clamp(44px, 5vw, 80px); }
.drm-explain-body { font-size: 16px; font-weight: 300; color: rgba(240,237,232,0.65); line-height: 1.75; margin-bottom: 14px; }
.inline-learn-more { margin: 24px 0 40px; display: inline-block; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 1fr 130px 140px;
  border-bottom: 1px solid var(--border);
}
.compare-head > span { padding: 12px 0; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.compare-row > span { padding: 16px 0; font-size: 14px; display: flex; align-items: center; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.col-bad { justify-content: center; }
.col-good { justify-content: center; }
.tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  display: inline-block;
}
.tag-bad  { background: rgba(255,61,61,0.12);  color: var(--red); }
.tag-good { background: rgba(0,232,122,0.11); color: var(--green); }
.tag-neutral { background: rgba(255,255,255,0.07); color: var(--muted); }

/* ── GENRES ── */
.genres-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.genres-section .section-headline { margin-bottom: 56px; }
.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.genre-card {
  background: var(--off-black);
  padding: 36px 30px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: block;
}
.genre-card:hover { background: var(--card-bg); }
.genre-card:hover .genre-title { color: var(--green); }
.genre-icon { font-size: 24px; margin-bottom: 16px; display: block; }
.genre-title { font-family: var(--display); font-size: 32px; line-height: 0.95; margin-bottom: 8px; transition: color 0.15s; }
.genre-count { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.genre-card-all { display: flex; flex-direction: column; justify-content: flex-end; background: var(--card-bg); }
.genre-all-title { color: var(--green); font-size: 36px; }

/* ── MANIFESTO ── */
.manifesto-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
  overflow: hidden;
  position: relative;
}
.manifesto-section::before {
  content: 'OWN';
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 360px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,232,122,0.04);
  pointer-events: none;
  line-height: 1;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 100px;
  align-items: start;
}
.manifesto-headline { position: sticky; top: calc(var(--nav-h) + 24px); font-size: clamp(44px, 5vw, 80px); }
.manifesto-list { display: flex; flex-direction: column; }
.manifesto-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.manifesto-num { font-family: var(--mono); font-size: 11px; color: var(--green); padding-top: 4px; }
.manifesto-item h3 { font-family: var(--display); font-size: 26px; margin-bottom: 10px; line-height: 1; }
.manifesto-item p { font-size: 15px; font-weight: 300; color: rgba(240,237,232,0.58); line-height: 1.75; }

/* ── BLOG ── */
.blog-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.blog-card { background: var(--off-black); transition: background 0.2s; }
.blog-card:hover { background: var(--card-bg); }
.blog-card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); }
.blog-card-title { font-family: var(--display); font-size: 24px; line-height: 1; transition: color 0.15s; }
.blog-card:hover .blog-card-title { color: var(--green); }
.blog-card-desc { font-size: 13px; color: rgba(240,237,232,0.5); line-height: 1.6; flex: 1; }
.blog-card-date { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; margin-top: auto; }

/* ── EMAIL ── */
.email-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.email-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.email-headline { font-size: clamp(44px, 5vw, 76px); margin-bottom: 20px; }
.email-body { font-size: 15px; font-weight: 300; color: rgba(240,237,232,0.62); line-height: 1.75; margin-bottom: 14px; }
.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-glow);
  border: 1px solid rgba(0,232,122,0.2);
  padding: 10px 16px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
}
.email-form { display: flex; flex-direction: column; gap: 0; }
.form-field { display: flex; flex-direction: column; }
.form-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); padding: 12px 20px 0; background: var(--off-black); border: 1px solid var(--border); border-bottom: none; }
.optional { color: var(--muted); font-size: 9px; }
.form-field + .form-field .form-label { border-top: none; }
.form-input {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-bottom: none;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  padding: 12px 20px 16px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: var(--muted-mid); }
.email-submit {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--green);
  border: none;
  padding: 20px 32px;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}
.email-submit:hover { background: #00ff88; }
.form-terms { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 14px; line-height: 1.7; letter-spacing: 0.04em; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.faq-left .section-headline { margin-bottom: 32px; }
.faq-learn-more { margin-top: 24px; display: inline-block; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; font-size: 15px; font-weight: 300; color: rgba(240,237,232,0.62); line-height: 1.75; }

/* ── POST PAGE ── */
.post-page { padding-top: var(--nav-h); }
.post-hero { padding: 60px 0 48px; border-bottom: 1px solid var(--border); }
.post-meta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.back-link { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.back-link:hover { color: var(--white); }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-headline { font-size: clamp(40px, 5vw, 80px); max-width: 800px; margin-bottom: 20px; }
.post-lede { font-size: 19px; font-weight: 300; color: rgba(240,237,232,0.65); max-width: 640px; line-height: 1.65; margin-bottom: 24px; }
.post-byline { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; display: flex; align-items: center; gap: 10px; }
.sep { color: var(--border-mid); }
.post-cover { padding: 40px 0 0; }
.post-cover img { width: 100%; max-height: 500px; object-fit: cover; }
.post-body { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding: 60px 48px 100px; align-items: start; }
.post-content { font-size: 16px; line-height: 1.8; font-weight: 300; max-width: 680px; }
.post-content h2 { font-size: 36px; margin: 48px 0 16px; }
.post-content h3 { font-size: 26px; margin: 36px 0 12px; }
.post-content p { margin-bottom: 20px; color: rgba(240,237,232,0.8); }
.post-content strong { color: var(--white); font-weight: 500; }
.post-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; list-style: initial; color: rgba(240,237,232,0.75); }
.post-content li { margin-bottom: 8px; line-height: 1.7; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--card-bg); border: 1px solid var(--border); padding: 28px; }
.sidebar-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); margin-bottom: 12px; }
.sidebar-headline { font-family: var(--display); font-size: 32px; line-height: 0.95; margin-bottom: 12px; }
.sidebar-body { font-size: 13px; font-weight: 300; color: rgba(240,237,232,0.6); line-height: 1.65; margin-bottom: 20px; }
.sidebar-btn { display: block; text-align: center; }
.sidebar-game-link { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: background 0.15s; }
.sidebar-game-link:last-child { border-bottom: none; }
.sidebar-game-title { font-size: 14px; }
.sidebar-game-badge { font-family: var(--mono); font-size: 10px; color: var(--green); }

/* ── GAME PAGE ── */
.game-page { padding-top: var(--nav-h); }
.game-hero { padding: 48px 0 60px; border-bottom: 1px solid var(--border); background: var(--off-black); }
.game-hero-inner { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; margin-top: 28px; }
.game-cover { position: relative; }
.game-cover img { width: 100%; border: 1px solid var(--border); }
.drm-badge-large { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--black); background: var(--green); padding: 4px 10px; }
.game-genre-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; }
.game-title-large { font-family: var(--display); font-size: clamp(40px, 5vw, 80px); line-height: 0.92; margin-bottom: 8px; }
.game-developer { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.game-description { font-size: 16px; font-weight: 300; color: rgba(240,237,232,0.65); line-height: 1.7; margin-bottom: 32px; }
.game-buy-block { margin-bottom: 32px; }
.game-price { margin-bottom: 12px; display: flex; align-items: baseline; gap: 12px; }
.price-label { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount { font-family: var(--display); font-size: 36px; color: var(--green); }
.btn-buy-large { font-size: 14px; padding: 20px 40px; display: block; text-align: center; }
.buy-note { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; margin-top: 10px; }
.game-facts { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.fact { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.fact-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.drm-free-text { color: var(--green); font-weight: 500; }
.game-body { display: grid; grid-template-columns: 1fr 280px; gap: 60px; padding: 60px 48px 100px; align-items: start; }
.game-content { font-size: 16px; line-height: 1.8; font-weight: 300; }
.game-content p { margin-bottom: 20px; color: rgba(240,237,232,0.78); }
.sidebar-card-buy { }
.drm-perks { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--green); letter-spacing: 0.06em; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 72px 0 48px; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.footer-logo { font-family: var(--display); font-size: 44px; line-height: 0.9; margin-bottom: 16px; }
.footer-logo span { color: var(--green); }
.footer-logo em { font-style: normal; color: var(--muted); font-size: 32px; }
.footer-tagline { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; max-width: 260px; margin-bottom: 24px; }
.footer-buy-btn { font-size: 11px; }
.footer-col-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--green); margin-bottom: 20px; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 0 48px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; line-height: 1.7; }
.footer-seo { font-family: var(--mono); font-size: 10px; color: rgba(122,122,122,0.4); letter-spacing: 0.06em; max-width: 500px; text-align: right; line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; gap: 24px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .genre-grid { grid-template-columns: repeat(4, 1fr); }
  .drm-explain-grid, .manifesto-grid, .email-grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-headline { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 16px; }
  .hero-inner { padding: 0 32px 64px; }
  .container { padding: 0 24px; }
  .game-grid { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-left .section-headline { font-size: 56px; }
  .post-body { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .game-hero-inner { grid-template-columns: 1fr; }
  .game-body { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .footer-seo { text-align: left; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 68px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

/* ══════════════════════════════════
   NEW SECTIONS — added content
══════════════════════════════════ */

/* ── DRM IN THE NEWS ── */
.news-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.news-intro {
  font-size: 17px;
  font-weight: 300;
  color: rgba(240,237,232,0.6);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.incidents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.incident-card {
  background: var(--off-black);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.incident-card:hover { background: #141414; }
.incident-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.incident-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 10px;
}
.incident-red .incident-tag { background: rgba(255,61,61,0.12); color: var(--red); }
.incident-amber .incident-tag { background: rgba(255,180,0,0.12); color: #ffb400; }
.incident-year {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.incident-title {
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.95;
}
.incident-publisher {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.incident-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,237,232,0.6);
  line-height: 1.7;
  flex: 1;
}
.incident-lesson {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(240,237,232,0.5);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.lesson-label {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
}
.news-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.news-cta-copy {
  font-size: 17px;
  font-weight: 300;
  color: rgba(240,237,232,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* ── PUBLISHERS ── */
.publishers-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.publishers-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,237,232,0.58);
  max-width: 620px;
  line-height: 1.75;
  margin: 20px 0 56px;
}
.publishers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.publisher-card {
  background: var(--off-black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.publisher-card:hover { background: var(--card-bg); }
.publisher-logo-placeholder {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(0,232,122,0.15);
  padding: 10px 14px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 4px;
}
.publisher-name {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}
.publisher-note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,237,232,0.55);
  line-height: 1.7;
  flex: 1;
}
.publisher-link {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.15s;
}
.publisher-link:hover { opacity: 0.75; }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.how-header {
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.step-card {
  background: var(--off-black);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.step-card:hover { background: #141414; }
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  font-family: var(--display);
  font-size: 72px;
  color: rgba(0,232,122,0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
}
.step-title {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  position: relative;
}
.step-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,237,232,0.6);
  line-height: 1.75;
  flex: 1;
  position: relative;
}
.step-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.step-detail-item {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
}
.how-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ── FINAL CTA ── */
.final-cta-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}
.final-cta-bg-word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(200px, 30vw, 420px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,232,122,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.final-cta-inner .section-eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.final-cta-inner .section-eyebrow::before { display: none; }
.final-cta-headline {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.92;
  text-align: center;
  margin-bottom: 28px;
}
.final-cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(240,237,232,0.6);
  line-height: 1.7;
  max-width: 540px;
  text-align: center;
  margin-bottom: 44px;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-final { font-size: 14px; padding: 22px 48px; }
.final-trust-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.final-trust-row li { display: flex; align-items: center; gap: 8px; }
.final-check { color: var(--green); }

/* ── RESPONSIVE additions ── */
@media (max-width: 1024px) {
  .incidents-grid { grid-template-columns: 1fr; }
  .publishers-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .news-cta-row { flex-direction: column; align-items: flex-start; }
  .publishers-grid { grid-template-columns: 1fr; }
  .final-cta-headline { font-size: 64px; }
  .final-trust-row { gap: 16px; }
}
