:root {
  --mk-black: #0a0a0a;
  --mk-red: #CC0000;
  --mk-white: #f0ece4;
  --mk-gold: #F5C518;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--mk-black);
  color: var(--mk-white);
  overflow-x: hidden;
}

/* ============================================
   BACKGROUND COLLAGE (tiled static)
   ============================================ */
.bg-collage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('images/collage-bg.jpg') repeat;
  background-size: 512px auto;
  opacity: 0.05;
  filter: grayscale(1);
  will-change: transform;
}

/* ============================================
   MANGA PANEL COLLAGE BACKGROUND (JS-generated)
   ============================================ */
.manga-collage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
}

.panel {
  position: absolute;
  border: 3px solid #fff;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 1px at 4px 4px, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.5;
}

.panel-text {
  font-family: 'Dela Gothic One', sans-serif;
  color: #fff;
  font-size: 14px;
  z-index: 1;
  text-align: center;
  line-height: 1.3;
  padding: 6px;
}

.panel-sfx {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  color: #fff;
  font-size: 28px;
  z-index: 1;
  transform: rotate(-8deg);
  text-shadow: 2px 2px 0 #000;
}

.panel.speed-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 4px,
    rgba(255,255,255,0.15) 4px, rgba(255,255,255,0.15) 5px
  );
}

.panel.radial::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-conic-gradient(
    transparent 0deg, transparent 4deg,
    rgba(255,255,255,0.08) 4deg, rgba(255,255,255,0.08) 5deg
  );
}

.panel.diagonal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px, transparent 6px,
    rgba(255,255,255,0.1) 6px, rgba(255,255,255,0.1) 7px
  );
}

.panel.screentone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 2px at 5px 5px, rgba(255,255,255,0.4) 2px, transparent 2px);
  background-size: 10px 10px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--mk-red);
}

.nav-logo {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 20px;
  color: var(--mk-red);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 12px;
  color: var(--mk-white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--mk-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mk-red);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buy {
  background: var(--mk-red);
  color: #fff !important;
  padding: 8px 18px;
  transition: background 0.2s !important;
}

.nav-buy:hover {
  background: #ff1a1a !important;
}

.nav-buy::after {
  display: none !important;
}

.nav-socials {
  display: flex;
  gap: 10px;
}

.nav-socials a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--mk-white);
  color: var(--mk-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: all 0.2s;
}

.nav-socials a:hover {
  background: var(--mk-red);
  color: #fff;
  transform: scale(1.1);
}

/* ============================================
   CONTRACT ADDRESS
   ============================================ */
.contract-address {
  position: fixed;
  top: 58px;
  left: 28px;
  z-index: 999;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(240, 236, 228, 0.35);
  cursor: pointer;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.contract-address:hover {
  color: var(--mk-red);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('images/hero-collage.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(64px, 14vw, 180px);
  color: var(--mk-red);
  line-height: 0.95;
  text-shadow:
    4px 4px 0 #000,
    8px 8px 0 rgba(0, 0, 0, 0.5);
}

.hero-title span {
  display: block;
  font-size: clamp(32px, 6vw, 80px);
  color: var(--mk-white);
  letter-spacing: 0.2em;
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(240, 236, 228, 0.55);
  margin-top: 28px;
  letter-spacing: 3px;
}

.cta-hero-btn {
  display: inline-block;
  margin-top: 36px;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--mk-red);
  padding: 18px 52px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

.cta-hero-btn:hover {
  background: #ff1a1a;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(204, 0, 0, 0.5);
}

.hero-ca {
  margin-top: 16px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: rgba(240, 236, 228, 0.4);
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s;
}

.hero-ca:hover {
  color: var(--mk-red);
}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 236, 228, 0.3);
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

/* ============================================
   MARQUEE / TICKERS
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll var(--speed, 22s) linear infinite;
  will-change: transform;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ticker: Red */
.ticker-red {
  background: var(--mk-red);
  padding: 12px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.ticker-red .marquee-item {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 14px;
  color: #fff;
  padding: 0 24px;
  text-transform: uppercase;
}

.ticker-red .marquee-item .sep {
  color: var(--mk-gold);
  padding: 0 8px;
  font-size: 16px;
  opacity: 1;
}

/* Ticker: Gold */
.ticker-gold {
  background: var(--mk-gold);
  padding: 10px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.ticker-gold .marquee-item {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 14px;
  color: var(--mk-black);
  padding: 0 20px;
  text-transform: uppercase;
}

.ticker-gold .marquee-item .sep {
  color: var(--mk-red);
  padding: 0 8px;
}

/* Ticker: Black */
.ticker-black {
  background: var(--mk-black);
  padding: 10px 0;
  border-top: 3px solid var(--mk-red);
  border-bottom: 3px solid var(--mk-red);
}

.ticker-black .marquee-item {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--mk-white);
  padding: 0 24px;
}

.ticker-black .marquee-item .sep {
  color: var(--mk-red);
  padding: 0 10px;
}

/* ============================================
   SECTION STRUCTURE
   ============================================ */
.section {
  position: relative;
  z-index: 5;
  padding: 80px 20px;
}

/* Existing section-header (gallery, episodes) */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .en {
  display: block;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mk-red);
  margin-bottom: 8px;
}

.section-header .jp {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--mk-white);
}

/* New section-title used by About, Genres, Steps, CTA */
.section-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  width: 100%;
  color: var(--mk-white);
}

.section-title .en {
  display: block;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mk-red);
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(240, 236, 228, 0.6);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 16px;
  padding: 16px 40px;
  background: var(--mk-red);
  color: #fff;
  border: 3px solid #000;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
  box-shadow: 4px 4px 0 #000;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  background: #ff1a1a;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,0.1) 3px, rgba(255,255,255,0.1) 4px
  );
}

.btn-secondary {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 16px;
  padding: 16px 40px;
  background: transparent;
  color: var(--mk-white);
  border: 3px solid var(--mk-white);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
  box-shadow: 4px 4px 0 var(--mk-white);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--mk-white);
  color: var(--mk-black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(240, 236, 228, 0.4);
}

/* ============================================
   FLOATING SFX (hero decorative)
   ============================================ */
.floating-sfx {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}

.sfx-1 { top: 15%; left: 5%; font-size: 80px; color: var(--mk-red); transform: rotate(-15deg); animation: float-sfx 6s ease-in-out infinite; }
.sfx-2 { top: 25%; right: 8%; font-size: 60px; color: var(--mk-gold); transform: rotate(10deg); animation: float-sfx 5s 1s ease-in-out infinite; }
.sfx-3 { bottom: 20%; left: 10%; font-size: 70px; color: var(--mk-red); transform: rotate(-8deg); animation: float-sfx 7s 2s ease-in-out infinite; }
.sfx-4 { bottom: 30%; right: 5%; font-size: 55px; color: var(--mk-red); transform: rotate(12deg); animation: float-sfx 4s 0.5s ease-in-out infinite; }
.sfx-5 { top: 50%; left: 3%; font-size: 45px; color: #fff; transform: rotate(-20deg); animation: float-sfx 8s 3s ease-in-out infinite; }

@keyframes float-sfx {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: #FFF8F0;
  color: var(--mk-black);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 1px at 6px 6px, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.about-section .section-title {
  color: var(--mk-black);
}

.about-section .section-sub {
  color: rgba(10,10,10,0.55);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.about-text {
  font-size: 17px;
  line-height: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(10,10,10,0.8);
}

.about-text strong {
  color: var(--mk-red);
  font-weight: 900;
}

/* Speech bubble */
.speech-bubble {
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  padding: 24px 32px;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  box-shadow: 4px 4px 0 #000;
  color: var(--mk-black);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #000;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 17px solid #fff;
  z-index: 1;
}

/* ============================================
   STATS CIRCLES
   ============================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--mk-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.3s;
}

.stat-circle:hover {
  transform: scale(1.08) rotate(-3deg);
}

.stat-circle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle 1px at 4px 4px, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 8px 8px;
}

.stat-num {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  color: var(--mk-red);
  position: relative;
  z-index: 1;
}

.stat-label {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 11px;
  color: var(--mk-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 100px;
  line-height: 1.3;
  margin-top: 4px;
}

/* ============================================
   GENRE CARDS
   ============================================ */
.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.genre-card {
  background: #1a1a1a;
  border: 3px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.genre-card:hover {
  border-color: var(--mk-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(204, 0, 0, 0.2);
}

.genre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mk-red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.genre-card:hover::before {
  transform: scaleX(1);
}

.genre-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 1px at 5px 5px, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.genre-num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: -5px;
  right: 10px;
  line-height: 1;
}

.genre-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.genre-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--mk-white);
  margin-bottom: 4px;
}

.genre-en {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 11px;
  color: var(--mk-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.genre-desc {
  font-size: 13px;
  color: rgba(240, 236, 228, 0.5);
  line-height: 1.6;
}

/* ============================================
   HOW TO BUY — STEPS
   ============================================ */
.steps-section {
  background: var(--mk-black);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--mk-red);
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 24px;
  color: #fff;
  box-shadow: 3px 3px 0 #000;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px, transparent 2px,
    rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 3px
  );
}

.step-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--mk-gold);
}

.step-content p {
  font-size: 14px;
  color: rgba(240, 236, 228, 0.6);
  line-height: 1.7;
}

.step-line {
  position: absolute;
  left: 28px;
  top: 59px;
  width: 3px;
  height: calc(100% - 16px);
  background: repeating-linear-gradient(
    to bottom,
    var(--mk-red) 0px, var(--mk-red) 6px,
    transparent 6px, transparent 12px
  );
}

/* CA Box in How to Buy */
.ca-box-wrap {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
}

.ca-box {
  background: #111;
  border: 3px solid var(--mk-red);
  padding: 20px 24px;
  position: relative;
  box-shadow: 4px 4px 0 #000;
}

.ca-box-label {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 11px;
  color: var(--mk-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ca-box-addr {
  font-family: monospace;
  font-size: 14px;
  color: var(--mk-white);
  word-break: break-all;
  margin-bottom: 12px;
}

.ca-copy-btn {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 13px;
  padding: 8px 24px;
  background: var(--mk-red);
  color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  letter-spacing: 2px;
  box-shadow: 3px 3px 0 #000;
  transition: background 0.2s;
}

.ca-copy-btn:hover {
  background: #ff1a1a;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1024 / 1456;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.8);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RED LINE DIVIDER
   ============================================ */
.red-line {
  height: 3px;
  background: var(--mk-red);
  box-shadow: 0 0 24px rgba(200, 0, 0, 0.4);
  position: relative;
  z-index: 5;
}

/* ============================================
   EPISODES GRID
   ============================================ */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1000px;
  margin: 0 auto;
}

.episode-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

.episode-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  transition: filter 0.3s;
}

.episode-card:hover img {
  filter: brightness(0.5);
}

.episode-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  transition: border-color 0.3s, color 0.3s;
}

.episode-card:hover .play-btn {
  border-color: var(--mk-red);
  color: var(--mk-red);
}

.episode-num {
  font-family: 'Dela Gothic One', sans-serif;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.episode-badge {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mk-red);
  border: 1px solid var(--mk-red);
  padding: 2px 10px;
}

/* ============================================
   CTA SECTION (enhanced)
   ============================================ */
.cta-section {
  background: var(--mk-red);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    transparent 0deg, transparent 3deg,
    rgba(0,0,0,0.04) 3deg, rgba(0,0,0,0.04) 4deg
  );
  background-position: center;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 2px at 8px 8px, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 16px 16px;
}

.cta-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--mk-red);
  border-color: #000;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: var(--mk-gold);
  color: #000;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.manga-border-top {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--mk-red) 0px, var(--mk-red) 20px,
    var(--mk-gold) 20px, var(--mk-gold) 40px,
    var(--mk-black) 40px, var(--mk-black) 60px
  );
  position: relative;
  z-index: 10;
}

.deco-sfx {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  color: rgba(0,0,0,0.08);
}

/* ============================================
   FOOTER (enhanced)
   ============================================ */
.footer {
  background: var(--mk-black);
  border-top: 3px solid rgba(255,255,255,0.1);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-logo {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  color: var(--mk-white);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--mk-red);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(240, 236, 228, 0.5);
  text-decoration: none;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mk-red);
}

.footer-copy {
  font-size: 12px;
  color: rgba(240, 236, 228, 0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links a:not(.nav-buy) {
    display: none;
  }

  .nav-socials {
    display: none;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 120px);
  }

  .hero-title span {
    font-size: clamp(24px, 6vw, 48px);
  }

  .cta-hero-btn {
    font-size: 14px;
    padding: 14px 36px;
  }

  .contract-address {
    font-size: 9px;
    top: 54px;
    left: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticker-red .marquee-item,
  .ticker-gold .marquee-item,
  .ticker-black .marquee-item {
    font-size: 12px;
  }

  .stats-row {
    gap: 20px;
  }

  .stat-circle {
    width: 120px;
    height: 120px;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 9px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-line {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
