@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg-0:         #06080d;
  --bg-1:         #0b0f18;
  --bg-2:         #101620;
  --bg-3:         #162030;
  --border:       #1c2b3c;
  --border-light: #253d52;
  --silver:       #bccad8;
  --silver-mid:   #7a8ea4;
  --silver-dim:   #2e4055;
  --blue:         #3872c8;
  --blue-bright:  #5a96e2;
  --blue-glow:    rgba(56, 114, 200, 0.12);
  --text-1:       #d4e4f0;
  --text-2:       #7a8fa6;
  --text-3:       #3f5060;
  --red:          #c83232;
  --gold:         #c4a830;
  --green:        #2eaa6a;
  --radius:       8px;
  --radius-lg:    16px;
  --nav-h:        72px;
  --max-w:        1200px;
  --shadow:       0 2px 20px rgba(0,0,0,0.55);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.75);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── BASE ─── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p { color: var(--text-2); font-size: 1rem; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue-bright);
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(90,150,226,0.3), var(--shadow);
}
.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 0 1px rgba(90,150,226,0.5), 0 4px 24px rgba(56,114,200,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--silver);
  box-shadow: 0 0 0 1px var(--border-light);
}
.btn-secondary:hover {
  background: var(--bg-3);
  box-shadow: 0 0 0 1px var(--silver-dim);
  color: var(--text-1);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 10px 18px;
}
.btn-ghost:hover { color: var(--text-1); background: var(--bg-2); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── TAGS / BADGES ─── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag-marvel   { background: rgba(200,50,50,0.15);  color: #e06060; border: 1px solid rgba(200,50,50,0.25); }
.tag-dc       { background: rgba(56,114,200,0.15); color: #7aacee; border: 1px solid rgba(56,114,200,0.25); }
.tag-image    { background: rgba(46,170,106,0.15); color: #4ecc88; border: 1px solid rgba(46,170,106,0.25); }
.tag-manga    { background: rgba(196,168,48,0.15); color: #d4b840; border: 1px solid rgba(196,168,48,0.25); }
.tag-indie    { background: rgba(140,80,200,0.15); color: #b880ee; border: 1px solid rgba(140,80,200,0.25); }
.tag-deep     { background: rgba(188,202,216,0.12); color: var(--silver); border: 1px solid var(--border-light); }
.tag-overview { background: rgba(56,114,200,0.1);  color: var(--blue-bright); border: 1px solid rgba(56,114,200,0.2); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 15, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-1);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--text-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-1);
  background: var(--bg-2);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-0);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text-1); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-0);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(188,202,216,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(56,114,200,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(188,202,216,0.04) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,114,200,0.1);
  border: 1px solid rgba(56,114,200,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: pulse 2s infinite;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-headline .line-silver { color: var(--silver); }
.hero-headline .line-dim    { color: var(--silver-dim); }
.hero-headline .line-blue   { color: var(--blue-bright); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-1);
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.hero-panel-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(56,114,200,0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-0) 100%);
}
.hero-panel-logo {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: 0 0 48px rgba(56,114,200,0.2), var(--shadow-lg);
}
.hero-panel-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel-name {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-panel-name h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text-1);
}
.hero-panel-name p {
  font-size: 0.75rem;
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-panel-universes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0 24px;
}
.hero-panel-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--green), var(--gold), #8840cc);
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
}

/* ─── ABOUT STRIP ─── */
.about {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-img-placeholder-inner svg { width: 48px; height: 48px; opacity: 0.3; }
.about-accent-bar {
  position: absolute;
  left: -1px; top: 40px; bottom: 40px;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  border-radius: 4px;
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-2);
}
.about-bio strong { color: var(--text-1); font-weight: 600; }
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.about-pill {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

/* ─── YOUTUBE SECTION ─── */
.youtube-section { background: var(--bg-0); }
.youtube-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.youtube-header-left { display: flex; flex-direction: column; gap: 12px; }
.yt-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.yt-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.yt-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
}
.yt-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.yt-card:hover .yt-play {
  background: rgba(255,0,0,0.7);
  transform: scale(1.08);
}
.yt-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.yt-card-body { padding: 18px; }
.yt-card-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
  line-height: 1.35;
}
.yt-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-3);
}
.yt-meta .sep { opacity: 0.4; }
.yt-side { display: flex; flex-direction: column; gap: 12px; }
.yt-side .yt-card { display: flex; flex-direction: row; }
.yt-side .yt-thumb {
  width: 130px;
  flex-shrink: 0;
  aspect-ratio: 16/9;
}
.yt-side .yt-play { width: 36px; height: 36px; }
.yt-side .yt-play svg { width: 14px; height: 14px; }
.yt-side .yt-card-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; }
.yt-thumb-gradient-1 { background: linear-gradient(135deg, #1a0a0a 0%, #3d1212 50%, #1a0a0a 100%); }
.yt-thumb-gradient-2 { background: linear-gradient(135deg, #0a0a1a 0%, #12123d 50%, #0a0a1a 100%); }
.yt-thumb-gradient-3 { background: linear-gradient(135deg, #0a1a0a 0%, #12321a 50%, #0a1a0a 100%); }
.yt-thumb-gradient-4 { background: linear-gradient(135deg, #1a1a0a 0%, #2e2a10 50%, #1a1a0a 100%); }
.yt-channel-cta {
  margin-top: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.yt-channel-info { display: flex; align-items: center; gap: 16px; }
.yt-channel-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
}
.yt-channel-logo img { width: 100%; height: 100%; object-fit: cover; }
.yt-channel-name { font-size: 1rem; font-weight: 600; color: var(--text-1); }
.yt-channel-sub { font-size: 0.8rem; color: var(--text-2); margin-top: 2px; }

/* ─── BLOG SECTION ─── */
.blog-section { background: var(--bg-1); }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card a { display: block; }
.blog-card-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.blog-card-body { padding: 20px; }
.blog-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--blue-bright); }
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-3);
}
.blog-card-footer .read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-footer svg { width: 13px; height: 13px; }

/* ─── BLOG INDEX PAGE ─── */
.blog-hero {
  background: var(--bg-0);
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { margin-top: 12px; }
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--text-2);
  background: transparent;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-load-more {
  text-align: center;
  margin-top: 48px;
}

/* ─── SINGLE POST ─── */
.post-hero {
  background: var(--bg-0);
  padding: 120px 0 0;
  border-bottom: 1px solid var(--border);
}
.post-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 16px;
}
.post-breadcrumb a:hover { color: var(--blue-bright); }
.post-breadcrumb svg { width: 12px; height: 12px; }
.post-hero-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.post-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-3);
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.post-meta .sep { opacity: 0.4; }
.post-meta strong { color: var(--silver-mid); }
.post-cover {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}
.post-cover-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-cover-inner svg { width: 40px; height: 40px; opacity: 0.25; }
.post-body-wrap {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-2);
}
.post-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--text-1);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.post-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--text-1);
  margin: 32px 0 12px;
}
.post-content p { margin-bottom: 20px; }
.post-content strong { color: var(--text-1); font-weight: 600; }
.post-content em { color: var(--silver-mid); font-style: italic; }
.post-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--silver-mid);
}
.post-content .chapter-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.post-content .chapter-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
}
.post-content .chapter-box p { margin: 0; color: var(--text-2); font-size: 0.95rem; }
.post-content .verdict {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}
.post-content .verdict h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.post-content .rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.rating-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--silver);
  line-height: 1;
}
.rating-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}
.sidebar-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.sidebar-stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.sidebar-stat:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-stat-label { color: var(--text-2); }
.sidebar-stat-val { color: var(--text-1); font-weight: 600; }
.toc-link {
  display: block;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.toc-link:last-child { border-bottom: none; }
.toc-link:hover { color: var(--blue-bright); }
.toc-link.active { color: var(--blue-bright); }

/* ─── UNIVERSES ─── */
.universes-section { background: var(--bg-0); }
.universe-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.universe-tile {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.universe-tile:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.universe-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.universe-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ─── PARTNERSHIP CTA ─── */
.partnership-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.partnership-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partnership-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(56,114,200,0.07) 0%, transparent 70%);
}
.partnership-inner h2 { position: relative; margin: 12px 0 16px; }
.partnership-inner p { position: relative; max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.partnership-inner .btn { position: relative; }
.partnership-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
}
.partnership-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.partnership-item-icon {
  width: 48px; height: 48px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.partnership-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ─── MEDIA / PRESS PAGE ─── */
.press-hero {
  background: var(--bg-0);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
}
.press-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.press-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.press-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--silver);
  letter-spacing: 0.04em;
}
.press-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}
.press-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.press-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.press-pillar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.press-pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.press-pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.press-pillar-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }
.press-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-1);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,114,200,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.press-kit-banner {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
}
.press-kit-info h3 { margin-bottom: 6px; }
.press-kit-info p { font-size: 0.9rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-1);
}
.footer-brand-tagline {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--bg-3);
  color: var(--text-1);
  border-color: var(--border-light);
}
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-2); }

/* ─── ANIMATIONS ─── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .about-inner          { grid-template-columns: 1fr; }
  .about-img-wrap       { max-width: 360px; width: 100%; margin: 0 auto; }
  .about-img-placeholder { aspect-ratio: 3/4; max-height: 320px; }
  .yt-featured          { grid-template-columns: 1fr; }
  .yt-side              { display: grid; grid-template-columns: 1fr 1fr; }
  .universe-grid        { grid-template-columns: repeat(3, 1fr); }
  .blog-grid            { grid-template-columns: repeat(2, 1fr); }
  .blog-full-grid       { grid-template-columns: repeat(2, 1fr); }
  .press-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .press-content-grid   { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .post-hero-inner      { grid-template-columns: 1fr; }
  .post-cover           { max-width: 400px; aspect-ratio: 16/9; }
  .post-body-wrap       { grid-template-columns: 1fr; }
  .post-sidebar         { display: none; }
  .partnership-inner    { padding: 40px 24px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .section              { padding: 64px 0; }
  .blog-grid            { grid-template-columns: 1fr; }
  .blog-full-grid       { grid-template-columns: 1fr; }
  .universe-grid        { grid-template-columns: repeat(2, 1fr); }
  .press-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline        { font-size: clamp(3.5rem, 14vw, 5rem); }
  .hero-stats           { gap: 24px; }
  .yt-side              { grid-template-columns: 1fr; }
  .yt-channel-cta       { flex-direction: column; text-align: center; }
  .press-kit-banner     { flex-direction: column; text-align: center; }
  .blog-header          { flex-direction: column; align-items: flex-start; gap: 16px; }
  .youtube-header       { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partnership-items    { gap: 24px; }
  .form-row             { grid-template-columns: 1fr; }
}
