/* ============================================================
   THE LOST GOSPEL OF ME!ME!ME!  —  STYLE.CSS
   Maximalist, hot pink, glitch, anime/Y2K aesthetic
   ============================================================ */

:root {
  --pink: #ff0080;
  --pink-hot: #ff1493;
  --pink-deep: #c4006a;
  --cyan: #00f0ff;
  --yellow: #fff700;
  --red: #ff0030;
  --black: #0a0506;
  --black-pure: #000;
  --white: #fffafc;
  --gray: #1a1014;
  --gray-2: #2a1820;

  --f-display: 'Zen Tokyo Zoo', 'Bebas Neue', sans-serif;
  --f-heading: 'Big Shoulders Display', 'Bebas Neue', sans-serif;
  --f-mono: 'Space Mono', 'Courier New', monospace;
  --f-jp: 'Reggae One', 'DotGothic16', sans-serif;
  --f-dot: 'DotGothic16', monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-mono);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------- Selection ---------- */
::selection { background: var(--pink); color: var(--black); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--pink); border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ============================================================
   GLOBAL OVERLAYS — scanlines, grain, vignette
   ============================================================ */
.scanlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0,
      rgba(0,0,0,0) 2px,
      rgba(0,0,0,0.12) 3px,
      rgba(0,0,0,0) 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.grain {
  position: fixed; inset: -50%;
  pointer-events: none;
  z-index: 9997;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px;
  opacity: 0.18;
  animation: grain 8s steps(8) infinite;
  mix-blend-mode: overlay;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}

.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9996;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--pink);
  color: var(--black);
  overflow: hidden;
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.05em;
  border-block: 3px solid var(--black);
  position: relative;
  z-index: 100;
}
.marquee-top { border-top: none; }
.marquee-bottom { border-bottom: none; }
.marquee-mid { background: var(--black); color: var(--pink); border-block: 3px solid var(--pink); }

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding: 10px 0;
  width: max-content;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-track span { padding-right: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 50px; /* below marquee */
  left: 0; right: 0;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: rgba(10, 5, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 0, 128, 0.3);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(255, 0, 128, 0.6);
}
.nav-logo:hover { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
.nav-links {
  display: flex;
  gap: clamp(8px, 2vw, 24px);
  font-family: var(--f-mono);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.nav-links a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .nav { padding: 10px 14px; }
  .nav-links { gap: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.3) contrast(1.1);
  animation: heroBgZoom 25s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15) translate(2%, -2%); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,5,6,0.4) 0%, rgba(10,5,6,0.85) 70%, rgba(10,5,6,1) 100%),
    linear-gradient(180deg, rgba(255,0,128,0.15) 0%, rgba(0,240,255,0.08) 50%, rgba(10,5,6,1) 100%);
}

.hero-content {
  text-align: center;
  max-width: 1100px;
  z-index: 2;
  padding: 20px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: clamp(20px, 4vh, 40px);
  padding: 8px 16px;
  border: 1px solid var(--cyan);
  background: rgba(0, 240, 255, 0.05);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}
.hero-kicker .dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
  text-shadow:
    0 0 40px rgba(255, 0, 128, 0.8),
    0 0 80px rgba(255, 0, 128, 0.5),
    0 0 120px rgba(255, 0, 128, 0.3);
  margin-bottom: clamp(20px, 4vh, 32px);
  animation: heroTitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Glitch effect on hero title */
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}
.hero-title::before {
  color: var(--cyan);
  z-index: -1;
  animation: glitchA 3s infinite linear alternate-reverse;
  mix-blend-mode: screen;
}
.hero-title::after {
  color: var(--pink);
  z-index: -1;
  animation: glitchB 2.6s infinite linear alternate-reverse;
  mix-blend-mode: screen;
}
@keyframes glitchA {
  0%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  20%  { transform: translate(-3px, 1px); clip-path: inset(40% 0 30% 0); }
  40%  { transform: translate(2px, -2px); clip-path: inset(10% 0 70% 0); }
  60%  { transform: translate(-2px, 3px); clip-path: inset(60% 0 10% 0); }
  80%  { transform: translate(3px, -1px); clip-path: inset(25% 0 50% 0); }
  100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}
@keyframes glitchB {
  0%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  20%  { transform: translate(2px, -1px); clip-path: inset(20% 0 60% 0); }
  40%  { transform: translate(-2px, 2px); clip-path: inset(50% 0 20% 0); }
  60%  { transform: translate(3px, -3px); clip-path: inset(5% 0 80% 0); }
  80%  { transform: translate(-3px, 1px); clip-path: inset(70% 0 5% 0); }
  100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); filter: blur(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

.hero-sub {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.5vw, 19px);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto clamp(28px, 5vh, 48px);
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  animation: fadeUp 1s 0.4s both;
}
.hero-sub em {
  font-style: normal;
  color: var(--pink);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 0, 128, 0.6);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 18px; color: var(--pink); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.side-jp {
  position: absolute;
  font-family: var(--f-jp);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.3em;
  color: rgba(255, 0, 128, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 1;
}
.side-jp-left { top: 140px; left: 16px; }
.side-jp-right { bottom: 80px; right: 16px; color: rgba(0, 240, 255, 0.5); }
@media (max-width: 720px) {
  .side-jp { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 2px solid var(--pink);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: var(--black);
  box-shadow: 0 0 0 0 var(--pink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 0, 128, 0.7);
  transform: translate(-2px, -2px);
}
.btn-primary::before { background: transparent; }
.btn-primary:hover::before { background: transparent; }

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-secondary::before { background: var(--cyan); }
.btn-secondary:hover {
  color: var(--black);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.7);
  transform: translate(-2px, -2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.btn-arrow {
  transition: transform 0.2s;
  display: inline-block;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 96px);
  padding: 0 20px;
}
.section-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 6px 14px;
  margin-bottom: 28px;
  background: rgba(0, 240, 255, 0.05);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
}
.section-sub {
  font-family: var(--f-mono);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
}
.hl {
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255, 0, 128, 0.6);
  position: relative;
}
.hl-big {
  display: inline-block;
  color: var(--pink);
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  text-shadow: 0 0 30px rgba(255, 0, 128, 0.7);
  letter-spacing: -0.01em;
  margin-top: 12px;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: clamp(80px, 14vh, 160px) clamp(16px, 4vw, 64px);
  background: linear-gradient(180deg, var(--black) 0%, #14080d 50%, var(--black) 100%);
  position: relative;
}

.video-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  padding: 4px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--cyan) 100%);
  box-shadow:
    0 0 60px rgba(255, 0, 128, 0.4),
    0 0 120px rgba(0, 240, 255, 0.15);
}
.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--black);
  display: block;
  object-fit: cover;
}
.video-corners span {
  position: absolute;
  width: 24px; height: 24px;
  border: 3px solid var(--yellow);
  z-index: 2;
  pointer-events: none;
}
.video-corners span:nth-child(1) { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.video-corners span:nth-child(2) { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.video-corners span:nth-child(3) { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.video-corners span:nth-child(4) { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.video-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: var(--pink);
  border: 1px solid var(--pink);
}
.video-meta > div {
  background: var(--black);
  padding: 14px 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-meta b {
  color: var(--pink);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.video-meta span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.video-meta .status {
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 247, 0, 0.6);
}

/* ============================================================
   REASONS / LORE
   ============================================================ */
.reasons-section {
  padding: clamp(80px, 14vh, 160px) clamp(16px, 4vw, 64px);
  background: var(--black);
  position: relative;
}
.reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 0, 128, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.reasons-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 72px);
  position: relative;
}

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 0, 128, 0.2);
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.03) 0%, transparent 60%);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.reason:hover {
  border-color: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--pink);
}

.reason-num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  text-stroke: 2px var(--pink);
  position: relative;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.reason-body h3 {
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.reason-body p {
  font-family: var(--f-mono);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 65ch;
}
.reason-body p b { color: var(--cyan); font-weight: 700; }
.reason-body p i { color: var(--pink); font-style: italic; font-weight: 700; }

/* Reasons with image */
.reason-with-img,
.reason-feature {
  grid-template-columns: auto 1fr auto;
}
.reason-with-img .reason-img,
.reason-feature .reason-img {
  width: clamp(160px, 18vw, 280px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--pink);
  position: relative;
  box-shadow: 6px 6px 0 var(--pink);
}
.reason-feature .reason-img {
  width: clamp(200px, 24vw, 380px);
  aspect-ratio: 4 / 5;
}
.reason-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.15) contrast(1.05);
}
.reason:hover .reason-img img {
  transform: scale(1.05);
}

/* Reverse layout */
.reason-reverse {
  direction: rtl;
}
.reason-reverse > * { direction: ltr; }

/* Final reason */
.reason-final {
  grid-template-columns: 1fr;
  text-align: center;
  border: 2px solid var(--pink);
  background:
    radial-gradient(ellipse at center, rgba(255, 0, 128, 0.12) 0%, transparent 70%),
    var(--black);
  padding: clamp(48px, 8vh, 96px) clamp(24px, 4vw, 48px);
}
.reason-final .reason-num {
  font-size: clamp(4rem, 12vw, 10rem);
  margin: 0 auto 24px;
}
.reason-final .final-q {
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.reason-final .final-a {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: none;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .reason, .reason-with-img, .reason-feature {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reason-reverse { direction: ltr; }
  .reason-img { margin: 0 auto; }
}

/* ============================================================
   VIRAL IMPACT
   ============================================================ */
.viral-section {
  padding: clamp(80px, 14vh, 160px) clamp(16px, 4vw, 64px);
  background:
    linear-gradient(180deg, var(--black) 0%, #1a0810 50%, var(--black) 100%);
}

.viral-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  grid-auto-rows: 320px;
}

.viral-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 128, 0.4);
  background: var(--gray);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  isolation: isolate;
}
.viral-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,5,6,0.85) 0%, rgba(10,5,6,0) 50%);
  z-index: 1;
  transition: opacity 0.3s;
}
.viral-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.viral-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow:
    0 12px 36px rgba(255, 0, 128, 0.35),
    0 0 0 1px var(--pink);
}
.viral-card:hover img {
  transform: scale(1.08);
}
.viral-card.v-big { grid-row: span 2; }
.viral-card.v-tall { grid-row: span 2; }

.viral-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.18em;
  color: var(--pink);
  text-shadow:
    0 0 12px rgba(0,0,0,0.9),
    0 0 4px rgba(255,0,128,0.5);
  background: rgba(10, 5, 6, 0.65);
  padding: 6px 10px;
  border-left: 3px solid var(--pink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 600px) {
  .viral-grid { grid-auto-rows: 240px; }
  .viral-card.v-big, .viral-card.v-tall { grid-row: span 1; }
}

.viral-extras {
  max-width: 1300px;
  margin: clamp(28px, 4vh, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.extra-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid var(--cyan);
  background: var(--gray);
  transition: transform 0.3s, box-shadow 0.3s;
}
.extra-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1);
}
.extra-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--cyan);
}
.extra-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, var(--black) 30%, transparent);
  padding: 24px 14px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

/* ============================================================
   DEEP CTA
   ============================================================ */
.deep-cta {
  padding: clamp(60px, 12vh, 140px) clamp(16px, 4vw, 64px);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .deep-cta { grid-template-columns: 1fr; }
}
.deep-cta-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 3px solid var(--pink);
  box-shadow: 12px 12px 0 var(--pink), 12px 12px 60px rgba(255, 0, 128, 0.3);
}
.deep-cta-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
}
.deep-cta-body .section-tag { margin-bottom: 20px; }
.deep-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
}
.deep-cta-body p {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 60ch;
}

/* ============================================================
   CONTRACT ADDRESS
   ============================================================ */
.contract-section {
  position: relative;
  padding: clamp(80px, 14vh, 160px) clamp(16px, 4vw, 64px);
  background:
    radial-gradient(ellipse at center, rgba(255, 0, 128, 0.15) 0%, var(--black) 70%),
    var(--black);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.contract-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.contract-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 6px 14px;
  margin-bottom: 28px;
  background: rgba(255, 247, 0, 0.05);
}
.contract-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.9;
  margin-bottom: 20px;
}
.contract-sub {
  font-family: var(--f-mono);
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(255,255,255,0.75);
  margin-bottom: clamp(40px, 6vh, 64px);
  max-width: 600px;
  margin-inline: auto;
}

.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  background: var(--black);
  border: 2px solid var(--pink);
  box-shadow:
    0 0 0 4px var(--black),
    0 0 0 5px var(--pink),
    0 0 60px rgba(255, 0, 128, 0.5);
  font-family: var(--f-mono);
  flex-wrap: wrap;
}
.ca-label {
  background: var(--pink);
  color: var(--black);
  padding: 14px 18px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.ca-value {
  padding: 14px 18px;
  font-size: clamp(11px, 1.3vw, 15px);
  color: var(--white);
  letter-spacing: 0.05em;
  word-break: break-all;
  font-weight: 700;
  min-width: 0;
  flex: 1;
}
.ca-copy {
  background: transparent;
  color: var(--cyan);
  border: none;
  border-left: 2px solid var(--pink);
  padding: 14px 22px;
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  min-width: 110px;
}
.ca-copy:hover { background: var(--cyan); color: var(--black); }
.ca-copy .ca-copy-done { display: none; }
.ca-copy.copied .ca-copy-default { display: none; }
.ca-copy.copied .ca-copy-done {
  display: inline;
  color: var(--yellow);
}
.ca-copy.copied { background: rgba(255, 247, 0, 0.1); }

.contract-cta {
  margin-top: clamp(36px, 6vh, 56px);
}

.contract-warning {
  margin-top: clamp(36px, 6vh, 56px);
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 24px 60px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid rgba(255, 0, 128, 0.2);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.footer-divider { color: var(--pink); }
.footer-jp {
  margin-top: 16px;
  font-family: var(--f-jp);
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0.15em;
  opacity: 0.6;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE TWEAKS
   ============================================================ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .hero-cta .btn { justify-content: center; }
  .ca-box { flex-direction: column; align-items: stretch; }
  .ca-copy { border-left: none; border-top: 2px solid var(--pink); }
}
