/* MaplePixelRun — retro-future arcade editorial */

:root {
  --navy-950: #060a14;
  --navy-900: #080e1f;
  --navy-800: #0f1730;
  --navy-700: #1a2548;
  --cyan: #00e8ff;
  --cyan-dim: #00b8cc;
  --cyan-glow: rgba(0, 232, 255, 0.35);
  --orange: #ff6b2c;
  --orange-warm: #ff9a3c;
  --orange-glow: rgba(255, 107, 44, 0.3);
  --text: #e8edf8;
  --text-muted: #9aa8c7;
  --glass: rgba(12, 20, 42, 0.72);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--navy-950);
  background-image:
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-950) 45%, #0a1228 100%),
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(0, 232, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 5% 80%, rgba(255, 107, 44, 0.06), transparent);
  min-height: 100vh;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--orange-warm);
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 20px;
  clip: auto;
  background: var(--cyan);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: var(--radius);
}

/* Pixel grid texture utility */
.hero-pixel-grid,
.filter-panel::before,
.collection-block::after {
  background-image:
    linear-gradient(rgba(0, 232, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.04) 1px, transparent 1px);
  background-size: 8px 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 14, 31, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 232, 255, 0.12);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  color: var(--orange);
  font-size: 1.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

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

.header-nav {
  display: none;
  gap: 1.5rem;
}

.header-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-nav a:hover {
  color: var(--cyan);
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
  max-width: 420px;
}

.search-wrap {
  position: relative;
  flex: 1;
}

.search-input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.25rem;
  border: 1px solid rgba(0, 232, 255, 0.25);
  border-radius: var(--radius);
  background: var(--navy-800);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239aa8c7' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.65rem center;
}

.search-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px var(--cyan-glow);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--navy-800);
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  max-height: 280px;
  overflow-y: auto;
  z-index: 110;
}

.search-suggestions li button {
  width: 100%;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.search-suggestions li button:hover,
.search-suggestions li button:focus {
  background: rgba(0, 232, 255, 0.1);
  color: var(--cyan);
}

.search-suggestions .suggest-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.filter-toggle {
  padding: 0.55rem 1rem;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: transparent;
  color: var(--orange-warm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

.filter-toggle:hover,
.filter-toggle[aria-expanded="true"] {
  background: var(--orange);
  color: var(--navy-900);
}

/* Filter panel */
.filter-panel {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(320px, 100vw);
  height: calc(100vh - var(--header-h));
  z-index: 99;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 232, 255, 0.2);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.filter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.filter-panel.is-open {
  transform: translateX(0);
}

.filter-panel-inner {
  position: relative;
  padding: 1.5rem;
}

.filter-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.filter-form fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.filter-form legend {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.filter-form label {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-ghost {
  width: 100%;
  padding: 0.6rem;
  border: 1px dashed var(--text-muted);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  opacity: 0.35;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--navy-950) 35%, transparent 70%),
    linear-gradient(0deg, var(--navy-950) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 107, 44, 0.15) 0%, transparent 40%);
}

.hero-pixel-grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  mask-image: linear-gradient(90deg, black 20%, transparent 85%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-warm);
  margin: 0 0 0.75rem;
}

.hero-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-accent {
  color: var(--cyan);
  display: block;
}

.hero-game {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.hero-hook {
  max-width: 32rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: var(--navy-900);
  box-shadow: 0 0 24px var(--cyan-glow);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange-warm);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--navy-900);
}

.hero-scores {
  display: flex;
  gap: 0.75rem;
}

.score-pill {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius);
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.score-pill.editor strong {
  color: var(--cyan);
}

.score-pill.community strong {
  color: var(--orange-warm);
}

.hero-visual {
  margin: 0;
  position: relative;
}

.hero-cover {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 20% center;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 232, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), -8px 8px 0 var(--orange);
}

.hero-caption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Sections */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.section-lead {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.filter-empty {
  text-align: center;
  color: var(--orange-warm);
  padding: 2rem;
}

/* Trending Radar — staggered */
.radar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .radar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .radar-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .radar-card {
    grid-column: span 4;
  }

  .radar-card.offset-up {
    transform: translateY(-24px);
    grid-column: 1 / span 5;
  }

  .radar-card.offset-right {
    grid-column: 7 / span 5;
    transform: translateX(12px);
  }

  .radar-card.offset-down {
    grid-column: 2 / span 5;
    transform: translateY(20px);
  }

  .radar-card.offset-left {
    grid-column: 8 / span 4;
    transform: translateX(-16px);
  }
}

.radar-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(0, 232, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s;
}

.radar-card.is-hidden {
  display: none;
}

.radar-card:hover {
  border-color: rgba(0, 232, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 232, 255, 0.1);
}

.radar-media {
  height: 180px;
  overflow: hidden;
}

.radar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crop-tight img {
  object-position: 50% 20%;
  transform: scale(1.08);
}

.crop-wide img {
  object-position: 0% 50%;
}

.crop-center img {
  object-position: center 35%;
}

.crop-tall img {
  object-position: 60% top;
  transform: scale(1.12);
}

.crop-offset img {
  object-position: 80% 60%;
}

.radar-body {
  padding: 1.25rem;
}

.radar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.radar-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 232, 255, 0.1);
  color: var(--cyan);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.radar-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.radar-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.radar-link {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Collections */
.collection-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.collection-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--cyan);
  overflow: hidden;
}

.collection-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.25;
  pointer-events: none;
}

.collection-block.indie {
  border-left-color: var(--orange);
}

.collection-block.weekend {
  border-left-color: var(--cyan);
  background: linear-gradient(120deg, var(--navy-800), #152040);
}

@media (min-width: 768px) {
  .collection-block {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .collection-block.indie {
    grid-template-columns: 1.2fr 1fr;
  }

  .collection-block.indie .collection-visual {
    order: 2;
  }
}

.collection-visual {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 220px;
}

.collection-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.collection-visual.flip img {
  transform: scaleX(-1);
  object-position: 30% center;
}

.collection-copy h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.collection-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.collection-picks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.collection-picks li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
}

.collection-picks span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

/* Reviews */
.review-magazine {
  display: grid;
  gap: 2rem;
}

.review-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 107, 44, 0.2);
}

@media (min-width: 800px) {
  .review-feature {
    grid-template-columns: 1.1fr 1fr;
  }
}

.review-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 40% top;
}

.review-feature-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.review-feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.review-verdict {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.review-scores-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review-scores-row strong {
  color: var(--cyan);
  font-size: 1.25rem;
}

.review-cta {
  font-family: var(--font-display);
  font-weight: 700;
  align-self: flex-start;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 3px solid var(--cyan);
}

.review-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.review-card-body {
  padding: 1.25rem;
}

.review-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.review-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.article-previews {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(0, 232, 255, 0.2);
}

.article-preview {
  margin-bottom: 2rem;
  max-width: 720px;
}

.article-preview h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cyan);
}

.article-preview p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Launchpad */
.launchpad-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, var(--navy-800), var(--navy-900)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(0, 232, 255, 0.02) 12px,
      rgba(0, 232, 255, 0.02) 13px
    );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 232, 255, 0.15);
}

@media (min-width: 900px) {
  .launchpad-panel {
    grid-template-columns: 1fr 240px;
  }
}

.launchpad-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .launchpad-main {
    grid-template-columns: 200px 1fr;
  }
}

.launchpad-cover img {
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  object-fit: cover;
  height: 100%;
  min-height: 200px;
}

.launchpad-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.launchpad-blurb {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.launchpad-scores {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.launchpad-scores .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.launchpad-scores .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.editor-score {
  color: var(--cyan);
}

.community-score {
  color: var(--orange-warm);
}

.platform-availability {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.platform {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-transform: uppercase;
}

.platform.on {
  background: rgba(0, 232, 255, 0.15);
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.platform.off {
  background: transparent;
  color: var(--text-muted);
  border: 1px dashed var(--text-muted);
  opacity: 0.5;
}

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.partner-btn {
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy-900);
  transition: transform 0.15s, box-shadow 0.15s;
}

.partner-btn:hover {
  transform: translateY(-2px);
  color: var(--navy-900);
}

.partner-btn.steam {
  background: linear-gradient(135deg, #1b2838, #2a475e);
  color: #c7d5e0;
}

.partner-btn.epic {
  background: #2f2f2f;
  color: #fff;
}

.partner-btn.gog {
  background: #86328a;
  color: #fff;
}

.partner-btn.ps {
  background: linear-gradient(135deg, #003791, #0070d1);
  color: #fff;
}

.launchpad-related {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 44, 0.2);
}

.launchpad-related h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.launchpad-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.launchpad-related li {
  padding: 0.4rem 0;
}

/* Footer */
.site-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  border-top: 1px solid rgba(0, 232, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-domain {
  color: var(--cyan);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.affiliate-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 900px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Trailer modal */
.trailer-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 90vw;
  width: 720px;
}

.trailer-modal::backdrop {
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(6px);
}

.trailer-modal-inner {
  position: relative;
  background: var(--navy-800);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 40px var(--cyan-glow);
}

.trailer-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.trailer-embed {
  aspect-ratio: 16/9;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.trailer-placeholder {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

/* Cookie banner — glass neon */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  max-width: 380px;
  margin-left: auto;
  padding: 1rem 1.15rem;
  z-index: 200;
  background: rgba(10, 18, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 232, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 20px rgba(0, 232, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--cyan);
}

.cookie-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-btn.accept {
  background: var(--cyan);
  color: var(--navy-900);
  border-color: var(--cyan);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
  border-color: var(--orange);
  color: var(--orange-warm);
}

/* Responsive nav */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header-shell {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem;
  }

  .site-header {
    height: auto;
  }

  .header-tools {
    width: 100%;
    max-width: none;
    order: 3;
  }
}
