:root {
  --brand-red: #e10600;
  --bg-soft: #0f0f10;
  --paper: #f5f1eb;
  --paper-line: rgba(24, 21, 18, 0.08);
  --paper-text: #181512;
  --paper-muted: #5f5953;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(225, 6, 0, 0.12), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0b0b0c 45%, #050505 100%);
  font-family: "Manrope", sans-serif;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 22rem;
  height: 22rem;
  left: -6rem;
  top: -5rem;
  background: #ffffff;
}

.page-shell::after {
  width: 20rem;
  height: 20rem;
  right: -6rem;
  bottom: 8rem;
  background: #e10600;
}

.noise-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.28;
}

.site-header {
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.display-title {
  font-family: "League Spartan", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12 !important;
  word-spacing: 0.02em;
}

.kicker {
  letter-spacing: 0.28em;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.cinematic-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.cinematic-card-light {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 21, 18, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.shadow-cinematic {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.news-cover::after,
.story-cover::after,
.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.news-cover-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.section {
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 84px;
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), rgba(225, 6, 0, 0));
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: var(--brand-red);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #bfb8af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tag-chip {
  background: rgba(225, 6, 0, 0.12);
  color: #ffd7d5;
  border: 1px solid rgba(225, 6, 0, 0.24);
}

.paper-tag {
  background: rgba(225, 6, 0, 0.1);
  color: #7b110d;
  border: 1px solid rgba(225, 6, 0, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-red);
  color: #ffffff;
  border: 1px solid rgba(225, 6, 0, 0.65);
}

.btn-primary:hover {
  background: #bf0c08;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 22s linear infinite;
}

.marquee-track span::after {
  content: "•";
  margin-left: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.article-copy p {
  color: var(--paper-muted);
  line-height: 2;
}

.article-copy p + p {
  margin-top: 1.25rem;
}

.article-copy strong {
  color: var(--paper-text);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .page-shell::before,
  .page-shell::after {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .btn {
    width: 100%;
  }

  .marquee-track {
    animation-duration: 28s;
  }
}
