
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #0A0A0A;
  overflow-x: hidden;
}
:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --orange: #FF6B00;
  --grey: #f5f5f5;
  --border: 3px solid #0A0A0A;
  --border-thick: 4px solid #0A0A0A;
}

/* ===== FONTS ===== */
.font-bangers { font-family: 'Bangers', cursive; letter-spacing: 0.03em; }
.font-space { font-family: 'Space Mono', monospace; }
.font-inter { font-family: 'Inter', sans-serif; }

/* ===== PANEL ANIMATION ===== */
.panel-slam {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.panel-slam.from-right {
  transform: translateX(100%);
}
.panel-slam.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SPEED LINES MIXIN ===== */
.speed-lines::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 8.9deg,
    rgba(255,107,0,0.13) 8.9deg,
    rgba(255,107,0,0.13) 9deg
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.speed-lines-white::before {
  content: '';
  position: absolute;
  inset: -80px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 8.9deg,
    rgba(255,255,255,0.08) 8.9deg,
    rgba(255,255,255,0.08) 9deg
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 2px solid #0A0A0A;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0A0A0A;
}
.nav-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #0A0A0A;
  object-fit: cover;
  display: block;
}
.nav-logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #0A0A0A;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  font-family: 'Bangers', cursive;
  font-size: 14px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-title {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #0A0A0A;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0A0A0A;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FF6B00; }
.btn-nav-shop {
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 0.05em;
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  padding: 8px 18px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #0A0A0A;
}
.btn-nav-shop:hover { background: #0A0A0A; color: #FF6B00; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: #0A0A0A;
  display: block;
  transition: all 0.3s;
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0A0A0A;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: 'Bangers', cursive;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: #FF6B00; }
.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 36px;
  cursor: pointer;
  font-family: 'Bangers', cursive;
  letter-spacing: 0.03em;
}

/* ===== HERO — PANEL 1 ===== */
#hero {
  min-height: 100vh;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-panel-wrap {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 40px auto;
  border: 4px solid #0A0A0A;
  transform: rotate(-0.5deg);
  padding: 60px 64px;
  position: relative;
  background: #FFFFFF;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-speedlines {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 8.9deg,
    rgba(255,107,0,0.13) 8.9deg,
    rgba(255,107,0,0.13) 9.3deg
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-headline-line1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 12vw, 160px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: #0A0A0A;
  display: block;
}
.hero-headline-anime {
  font-family: 'Bangers', cursive;
  font-size: clamp(120px, 18vw, 240px);
  letter-spacing: 0.03em;
  line-height: 0.85;
  color: #FF6B00;
  display: block;
}
.hero-headline-line3 {
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 12vw, 160px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: #0A0A0A;
  display: block;
}
.hero-sfx {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #FF6B00;
  transform: rotate(12deg);
  z-index: 2;
  text-shadow: 2px 2px 0 #0A0A0A;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 14px 32px;
  border: 2px solid #0A0A0A;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #FF6B00; border-color: #FF6B00; color: #FFFFFF; }
.btn-secondary {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: #FFFFFF;
  color: #0A0A0A;
  padding: 14px 32px;
  border: 2px solid #0A0A0A;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: #FF6B00; border-color: #FF6B00; color: #FFFFFF; }

/* ===== TICKER ===== */
.ticker {
  background: #0A0A0A;
  padding: 3px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(255,107,0,0.3);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  padding: 0 20px;
  opacity: 0.8;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #FF6B00;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.section-headline {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: #0A0A0A;
  margin-bottom: 48px;
}

/* ===== MERCH — PANEL 2 ===== */
#merch {
  background: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}
.merch-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  border: var(--border);
  transform: rotate(0.3deg);
  background: #FFFFFF;
  position: relative;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.merch-card {
  border: 3px solid #0A0A0A;
  padding: 28px 24px;
  background: #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.merch-card:hover {
  transform: translateY(-8px);
  border-color: #FF6B00;
  box-shadow: 0 12px 40px rgba(255,107,0,0.3), 4px 4px 0 #0A0A0A;
}
.merch-card-series {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: #0A0A0A;
  margin-bottom: 8px;
  line-height: 1;
}
.merch-card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #FF6B00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.merch-card-cta {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #0A0A0A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.merch-card-cta:hover { color: #FF6B00; border-bottom-color: #FF6B00; }
.merch-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

/* ===== GENRES — PANEL 3 ===== */
#genres {
  background: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}
.genres-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  border: 1px solid #EEEEEE;
  transform: rotate(-0.5deg);
  background: #FFFFFF;
}
.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.genre-card {
  background: #0A0A0A;
  border: 4px solid #0A0A0A;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.genre-card:hover {
  transform: scale(1.02) rotate(1deg);
}
.genre-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255,107,0,0.9);
  transition: height 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.genre-card:hover::after { height: 100%; }
.genre-name {
  font-family: 'Bangers', cursive;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.05em;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  text-align: center;
  transition: color 0.2s;
}
.genre-card:hover .genre-name { color: #0A0A0A; }

/* ===== BLOG — PANEL 4 ===== */
#blog {
  background: #FFFFFF;
  padding: 40px 0;
  overflow: hidden;
}
.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  border: var(--border);
  transform: rotate(0.4deg);
  background: #FFFFFF;
}
.blog-spread {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.blog-card {
  border: 3px solid #0A0A0A;
  padding: 36px 28px;
  background: #FFFFFF;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover {
  box-shadow: 6px 6px 0 #0A0A0A;
  transform: translate(-3px, -3px);
}
.blog-card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #FF6B00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: 'Bangers', cursive;
  letter-spacing: 0.03em;
  color: #0A0A0A;
  line-height: 1;
}
.blog-card-title.large { font-size: clamp(28px, 4vw, 48px); }
.blog-card-title.small { font-size: clamp(22px, 3vw, 32px); }
.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.blog-card-date {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #888;
  margin-top: auto;
}
.blog-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== QUIZ CTA — PANEL 5 ===== */
#quiz-cta {
  background: #0A0A0A;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quiz-speedlines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 8.9deg,
    rgba(255,255,255,0.06) 8.9deg,
    rgba(255,255,255,0.06) 9.2deg
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.quiz-content { position: relative; z-index: 1; }
.quiz-line1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.03em;
  color: #FFFFFF;
  display: block;
  line-height: 1;
}
.quiz-line2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 14vw, 160px);
  letter-spacing: 0.03em;
  color: #FF6B00;
  display: block;
  line-height: 0.9;
}
.quiz-line3 {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.03em;
  color: #FFFFFF;
  display: block;
  line-height: 1;
  margin-bottom: 48px;
}
.btn-quiz-cta {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 0.05em;
  background: #FF6B00;
  color: #FFFFFF;
  padding: 18px 48px;
  border: 3px solid #FF6B00;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-quiz-cta:hover { background: #FFFFFF; color: #0A0A0A; border-color: #FFFFFF; }

/* ===== NEWSLETTER — PANEL 6 ===== */
#newsletter {
  background: #FFFFFF;
  padding: 40px 0;
  overflow: hidden;
}
.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 60px;
  border: var(--border);
  transform: rotate(-0.3deg);
  background: #FFFFFF;
  text-align: center;
}
.newsletter-headline {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.03em;
  color: #0A0A0A;
  margin-bottom: 16px;
}
.newsletter-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 3px solid #0A0A0A;
}
.newsletter-input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: none;
  outline: none;
  background: #FFFFFF;
  color: #0A0A0A;
}
.newsletter-input::placeholder { color: #aaa; }
.newsletter-btn {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 0.05em;
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  border-left: 3px solid #0A0A0A;
  transition: background 0.2s;
  border-radius: 0;
}
.newsletter-btn:hover { background: #0A0A0A; }

/* ===== FOOTER ===== */
footer {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 60px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand {
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FF6B00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FF6B00; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.footer-amazon-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  max-width: 500px;
  line-height: 1.5;
}

/* ===== FLOAT STACK ===== */
.float-stack {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
  align-items: center;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid #0A0A0A;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 22px;
  box-shadow: 3px 3px 0 #0A0A0A;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 5px 5px 0 #0A0A0A; }
.float-whatsapp { background: #25D366; }
.float-top { background: #FF6B00; color: #FFFFFF; font-family: 'Bangers', cursive; font-size: 20px; cursor: pointer; }
.float-translate {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 0 16px;
  height: 38px;
  width: auto;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ===== SECTION WRAPPER (for padding on outer sections) ===== */
.section-padded {
  padding: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .hero-panel-wrap {
    width: calc(100% - 32px);
    padding: 40px 28px;
    transform: rotate(-0.2deg);
    min-height: auto;
  }
  .hero-sfx { font-size: 22px; top: 12px; right: 16px; }
  .hero-ctas { gap: 12px; }
  .btn-primary, .btn-secondary { font-size: 18px; padding: 12px 24px; }
  
  .merch-inner, .genres-inner, .blog-inner, .newsletter-inner {
    padding: 32px 24px;
    transform: none;
  }
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .genres-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-spread { grid-template-columns: 1fr; }
  .blog-right { flex-direction: column; }
  
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 32px; }
  
  .quiz-line1 { font-size: 42px; }
  .quiz-line2 { font-size: 80px; }
  .quiz-line3 { font-size: 42px; }
}
@media (max-width: 600px) {
  .merch-grid { grid-template-columns: 1fr; }
  .genres-grid { grid-template-columns: 1fr 1fr; }
  .section-padded { padding: 20px; }
  .merch-inner, .genres-inner, .blog-inner { padding: 24px 16px; }
  .newsletter-inner { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; border: none; gap: 0; }
  .newsletter-input { border: 3px solid #0A0A0A; border-bottom: none; }
  .newsletter-btn { border: 3px solid #0A0A0A; border-left: 3px solid #0A0A0A; }
}

/* ===== KANJI FLOATING DECORATIONS ===== */
@keyframes floatKanji {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.07; }
  33%       { transform: translateY(-18px) rotate(3deg); opacity: 0.12; }
  66%       { transform: translateY(-8px) rotate(-2deg); opacity: 0.09; }
}
@keyframes floatKanji2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
  50%       { transform: translateY(-22px) rotate(-4deg); opacity: 0.11; }
}
@keyframes floatKanji3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.05; }
  40%       { transform: translateY(-14px) rotate(5deg); opacity: 0.10; }
  80%       { transform: translateY(-6px) rotate(-3deg); opacity: 0.08; }
}
.kanji {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 12rem;
  color: #FF6B00;
  pointer-events: none;
  user-select: none;
  opacity: 0.07;
  z-index: 0;
}
.kanji-1 { top: 5%; left: 3%; font-size: 14rem; animation: floatKanji 7s ease-in-out infinite; }
.kanji-2 { top: 10%; right: 5%; font-size: 10rem; animation: floatKanji2 9s ease-in-out infinite; animation-delay: -2s; }
.kanji-3 { bottom: 15%; left: 8%; font-size: 8rem; animation: floatKanji3 11s ease-in-out infinite; animation-delay: -4s; }
.kanji-4 { bottom: 10%; right: 3%; font-size: 13rem; animation: floatKanji 8s ease-in-out infinite; animation-delay: -6s; }
.kanji-5 { top: 40%; left: 1%; font-size: 6rem; animation: floatKanji2 10s ease-in-out infinite; animation-delay: -1s; }
.kanji-6 { top: 30%; right: 2%; font-size: 9rem; animation: floatKanji3 12s ease-in-out infinite; animation-delay: -3s; }



/* ===== COMPREHENSIVE DARK MODE (GOLD STANDARD) ===== */
body.dark-mode {
  background: #000000 !important;
  color: #FFFFFF !important;
}

body.dark-mode nav {
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid #222 !important;
}

body.dark-mode .nav-brand,
body.dark-mode .nav-title,
body.dark-mode .nav-links a,
body.dark-mode .nav-brand span:nth-child(2) {
  color: #FFFFFF !important;
}

body.dark-mode .hamburger span {
  background: #FFFFFF !important;
}

/* Sections & Panels */
body.dark-mode section,
body.dark-mode #hero,
body.dark-mode #merch,
body.dark-mode #genres,
body.dark-mode #blog,
body.dark-mode #newsletter,
body.dark-mode #community,
body.dark-mode #youtube-anime,
body.dark-mode #clip-of-the-week,
body.dark-mode #latest-videos,
body.dark-mode #events,
body.dark-mode #read-manga,
body.dark-mode #watch-anime {
  background: #000000 !important;
  border-color: #222 !important;
}

body.dark-mode .hero-panel-wrap,
body.dark-mode .merch-inner,
body.dark-mode .genres-inner,
body.dark-mode .blog-inner,
body.dark-mode .newsletter-inner,
body.dark-mode .shop-inner {
  background: #0A0A0A !important;
  border-color: #222 !important;
}

body.dark-mode .section-headline,
body.dark-mode .hero-headline-line1,
body.dark-mode .hero-headline-line3,
body.dark-mode .newsletter-headline,
body.dark-mode .blog-card-title,
body.dark-mode .merch-card-series,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 {
  color: #FFFFFF !important;
}

body.dark-mode .hero-global-tagline,
body.dark-mode .blog-card-excerpt,
body.dark-mode .newsletter-sub,
body.dark-mode .footer-tagline,
body.dark-mode p,
body.dark-mode li,
body.dark-mode span:not(.hero-headline-anime) {
  color: #AAAAAA !important;
}

/* Cards & Interactables */
body.dark-mode .merch-card,
body.dark-mode .blog-card,
body.dark-mode .product-card,
body.dark-mode .card,
body.dark-mode .manga-card,
body.dark-mode .event-card,
body.dark-mode .genre-card {
  background: #111111 !important;
  border-color: #222 !important;
}

body.dark-mode .merch-card:hover,
body.dark-mode .blog-card:hover,
body.dark-mode .product-card:hover,
body.dark-mode .manga-card:hover {
  border-color: #FF6B00 !important;
  box-shadow: 0 10px 30px rgba(255,107,0,0.2) !important;
}

/* Form Inputs */
body.dark-mode .newsletter-input,
body.dark-mode input,
body.dark-mode textarea {
  background: #111111 !important;
  color: #FFFFFF !important;
  border: 1px solid #222 !important;
}

body.dark-mode .newsletter-form {
  border-color: #222 !important;
}

/* Buttons */
body.dark-mode .btn-secondary {
  background: #111111 !important;
  color: #FFFFFF !important;
  border-color: #222 !important;
}

body.dark-mode .btn-secondary:hover {
  background: #FF6B00 !important;
  border-color: #FF6B00 !important;
}

/* Footer */
body.dark-mode footer {
  background: #000000 !important;
  border-top: 1px solid #222 !important;
}

/* Float Stack */
body.dark-mode .float-translate {
  background: #111111 !important;
  color: #FFFFFF !important;
  border-color: #222 !important;
}

/* Kanji visibility */
body.dark-mode .kanji {
  opacity: 0.1 !important;
  color: #FFFFFF !important;
}

/* Specific Fixes for "everything visible" */
body.dark-mode .nav-logo {
  border-color: #222 !important;
}

body.dark-mode .hero-speedlines {
  opacity: 0.5;
}

body.dark-mode .hero-content span {
    color: #fff !important;
}

body.dark-mode .hero-content .hero-headline-anime {
    color: #FF6B00 !important;
}

body.dark-mode #trend-ticker {
    background: #111 !important;
    color: #FF6B00 !important;
    border-color: #222 !important;
}

body.dark-mode .hero-global-tagline {
    color: #eee !important;
}

/* Fix for any hardcoded white backgrounds in components */
body.dark-mode div[style*="background:#FFFFFF"],
body.dark-mode div[style*="background: #FFFFFF"],
body.dark-mode div[style*="background:white"],
body.dark-mode div[style*="background: white"] {
    background: #0A0A0A !important;
}

body.dark-mode a[style*="color:#0A0A0A"],
body.dark-mode a[style*="color: #0A0A0A"],
body.dark-mode span[style*="color:#0A0A0A"],
body.dark-mode span[style*="color: #0A0A0A"] {
    color: #FFFFFF !important;
}
