/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F5F0E8;
  --bg-dark: #EDE8DD;
  --text: #1A1A1A;
  --text-sub: #4A4A4A;
  --accent: #D42B2B;
  --accent-dark: #8B0000;
  --ink: #000000;
  --white: #FFFFFF;
  --footer-bg: #1A1A1A;
  --footer-text: #B0A898;
  --font: 'M PLUS Rounded 1c', sans-serif;
  --title-size: clamp(3.5rem, 10vw, 8rem);
  --subtitle-size: clamp(1rem, 2.5vw, 1.5rem);
  --slogan-size: clamp(1.2rem, 3vw, 2rem);
  --body-size: clamp(1rem, 1.8vw, 1.25rem);
  --small-size: 0.875rem;
  --section-padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 6rem);
  --gap: clamp(1rem, 3vw, 2rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image: url('../assets/textures/washi.jpg');
  background-size: 400px;
  background-repeat: repeat;
  background-blend-mode: soft-light;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== GLOBAL DECORATIVE ELEMENTS ===== */

/* Emotes scattered in sections */
.deco-emote {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}

.deco-emote:nth-child(odd) { animation-delay: -1.5s; }
.deco-emote:nth-child(3n) { animation-delay: -3s; }
.deco-emote:nth-child(4n) { animation-delay: -0.8s; }

/* Manga effect backgrounds */
.deco-effect {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Manga SVG decorations */
.deco-manga {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.deco-manga:nth-child(even) { animation-delay: -2s; }

/* Onomatopoeia text decorations */
.deco-ono {
  position: absolute;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.05em;
}

.deco-ono--large {
  font-size: clamp(2.5rem, 6vw, 5rem);
  opacity: 0.05;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--float-rotate, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--float-rotate, 0deg)); }
}

/* ===== SECTION BASE ===== */
section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
}

.lang-btn {
  padding: 0.4em 0.8em;
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--small-size);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-right: 2px solid var(--ink);
  color: var(--text);
}

.lang-btn:last-child { border-right: none; }

.lang-btn.active {
  background: var(--ink);
  color: var(--white);
}

.lang-btn:hover:not(.active) { background: var(--bg); }


/* ============================================
   1. HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Skewed background panel */
.hero::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  right: -5%;
  height: 40%;
  background: var(--bg-dark);
  transform: skewY(-3deg);
  z-index: 0;
}

/* Speed lines */
.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.speed-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(var(--ink) 0deg 0.5deg, transparent 0.5deg 6deg);
}

/* Hero background effects */
.hero__bg-effect {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-effect--1 {
  width: clamp(300px, 60vw, 700px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.04;
}

.hero__bg-effect--2 {
  width: clamp(150px, 25vw, 300px);
  top: 10%;
  right: 5%;
  opacity: 0.06;
  transform: rotate(15deg);
}

/* Hero emotes */
.hero__emote {
  position: absolute;
  width: clamp(30px, 5vw, 60px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.hero__emote--1 { top: 8%; left: 5%; animation-delay: 0s; }
.hero__emote--2 { top: 12%; right: 8%; animation-delay: 0.7s; }
.hero__emote--3 { top: 32%; left: 8%; animation-delay: 1.4s; }
.hero__emote--4 { top: 22%; right: 10%; animation-delay: 2.1s; }
.hero__emote--5 { bottom: 38%; left: 6%; animation-delay: 0.5s; }
.hero__emote--6 { bottom: 32%; right: 5%; animation-delay: 1.8s; }
.hero__emote--7 { top: 45%; left: 3%; animation-delay: 1.2s; width: clamp(25px, 4vw, 45px); }
.hero__emote--8 { top: 5%; left: 35%; animation-delay: 2.5s; width: clamp(25px, 4vw, 45px); }

/* Hero manga decorations */
.hero__manga-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__manga-deco--1 {
  width: clamp(40px, 6vw, 80px);
  top: 15%;
  left: 12%;
  opacity: 0.12;
  transform: rotate(-25deg);
}

.hero__manga-deco--2 {
  width: clamp(50px, 8vw, 100px);
  bottom: 40%;
  right: 8%;
  opacity: 0.08;
  transform: rotate(20deg);
}

.hero__manga-deco--3 {
  width: clamp(60px, 10vw, 120px);
  top: 40%;
  right: 3%;
  opacity: 0.06;
  transform: rotate(10deg);
}

/* Hero onomatopoeia */
.hero__ono {
  position: absolute;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.08em;
}

.hero__ono--1 { top: 18%; left: 2%; transform: rotate(-20deg); }
.hero__ono--2 { top: 50%; right: 2%; transform: rotate(12deg); }
.hero__ono--3 { bottom: 25%; left: 5%; transform: rotate(-5deg); }

/* Comic explosion behind title */
.hero__explosion {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* App icon */
.hero__icon {
  width: clamp(90px, 14vw, 160px);
  border-radius: 22%;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.25),
    4px 4px 0 var(--ink),
    -2px -2px 0 rgba(255,255,255,0.3);
  z-index: 2;
  position: relative;
  margin-bottom: 1.2rem;
}

/* Title -- IMPACTFUL */
.hero__title {
  font-size: var(--title-size);
  transform: rotate(-2deg);
  margin-bottom: 0.1em;
  z-index: 2;
  position: relative;
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.1;
}

.hero__title-zh {
  background: linear-gradient(180deg, #FF3333 0%, var(--accent) 40%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter:
    drop-shadow(3px 3px 0 var(--ink))
    drop-shadow(-2px -2px 0 var(--ink))
    drop-shadow(2px -2px 0 var(--ink))
    drop-shadow(-2px 2px 0 var(--ink))
    drop-shadow(0 5px 0 var(--ink));
  letter-spacing: 0.1em;
}

/* Subtitle */
.hero__subtitle {
  font-size: var(--subtitle-size);
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--text-sub);
  text-transform: uppercase;
  z-index: 2;
  position: relative;
  margin-bottom: 1em;
}

/* Slogan */
.hero__slogan {
  font-size: var(--slogan-size);
  font-weight: 700;
  color: var(--accent);
  z-index: 2;
  position: relative;
  margin-bottom: 2em;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* Character lineup */
.hero__characters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  z-index: 2;
  position: relative;
  margin-top: auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 950px;
}

.hero__characters img {
  width: clamp(80px, 12vw, 140px);
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.hero__characters img:hover {
  transform: translateY(-10px) scale(1.08);
}

.hero__characters img:nth-child(odd) {
  transform: translateY(-10px);
}

.hero__characters img:nth-child(4) {
  width: clamp(100px, 15vw, 180px);
}

.hero__characters img:nth-child(5) {
  width: clamp(100px, 15vw, 180px);
}


/* ============================================
   2. ABOUT
   ============================================ */
.about {
  background-color: var(--bg);
  /* Diagonal top edge */
  clip-path: polygon(0 clamp(30px, 5vw, 60px), 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
}

/* Skewed background shape */
.about__bg-shape {
  position: absolute;
  top: 20%;
  left: -10%;
  right: -10%;
  height: 60%;
  background: rgba(212, 43, 43, 0.03);
  transform: skewY(-3deg);
  z-index: 0;
  border-radius: 20px;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}

.about__text {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.9;
}

.about__image {
  border: 3px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--bg-dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-weight: 700;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.about__image:hover {
  transform: rotate(0deg);
}


/* ============================================
   3. CHARACTERS
   ============================================ */
.characters {
  background-color: var(--bg-dark);
  /* Diagonal transitions */
  clip-path: polygon(0 0, 100% clamp(30px, 5vw, 60px), 100% calc(100% - clamp(30px, 5vw, 60px)), 0 100%);
  padding-top: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
  padding-bottom: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
}

/* Tilted background shape */
.characters__bg-shape {
  position: absolute;
  top: 10%;
  left: -5%;
  right: -5%;
  height: 50%;
  background: rgba(0, 0, 0, 0.02);
  transform: skewY(2deg);
  z-index: 0;
  border-radius: 30px;
}

.characters__title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow:
    2px 2px 0 rgba(212, 43, 43, 0.1);
}

/* Featured character with speech bubble */
.characters__hero-card {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.characters__hero-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.characters__hero-img {
  width: clamp(200px, 35vw, 360px);
  filter: drop-shadow(3px 6px 10px rgba(0,0,0,0.2));
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

/* Speech bubble */
.speech-bubble {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 1em 1.4em;
  font-weight: 700;
  font-size: var(--body-size);
  max-width: 320px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(1deg);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 16px solid var(--ink);
}

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

/* Character grid: 4 columns */
.characters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* Character cards with slight random rotation */
.char-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

/* Random rotation per nth-child */
.char-card:nth-child(1)  { transform: rotate(-1deg); }
.char-card:nth-child(2)  { transform: rotate(0.5deg); }
.char-card:nth-child(3)  { transform: rotate(1.5deg); }
.char-card:nth-child(4)  { transform: rotate(-0.8deg); }
.char-card:nth-child(5)  { transform: rotate(1deg); }
.char-card:nth-child(6)  { transform: rotate(-1.2deg); }
.char-card:nth-child(7)  { transform: rotate(0.7deg); }
.char-card:nth-child(8)  { transform: rotate(-1.5deg); }
.char-card:nth-child(9)  { transform: rotate(1.2deg); }
.char-card:nth-child(10) { transform: rotate(-0.5deg); }
.char-card:nth-child(11) { transform: rotate(2deg); }
.char-card:nth-child(12) { transform: rotate(-1.8deg); }

.char-card:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: 4px 10px 0 var(--ink);
  z-index: 5;
}

.char-card__img {
  width: clamp(80px, 10vw, 130px);
  margin-bottom: 0.8rem;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15));
}

.char-card__name {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.char-card__quote {
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--text-sub);
  font-style: italic;
}

/* Mystery cards */
.char-card--mystery {
  background: var(--ink);
  border-color: #333;
  color: var(--white);
}

.char-card--mystery:hover {
  background: #1a1a1a;
}

.char-card--mystery .char-card__name {
  color: var(--footer-text);
}

.char-card--mystery .char-card__quote {
  color: #666;
}

.char-card__silhouette {
  width: clamp(80px, 10vw, 130px);
  height: clamp(80px, 10vw, 130px);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #444;
  background: radial-gradient(circle, #2a2a2a 0%, #111 100%);
  border-radius: 50%;
  text-shadow: 0 0 25px rgba(212, 43, 43, 0.3);
  border: 2px dashed #444;
}


/* ============================================
   4. GAMEPLAY
   ============================================ */
.gameplay {
  background: var(--bg);
  /* Diagonal top */
  clip-path: polygon(0 0, 100% clamp(30px, 5vw, 60px), 100% 100%, 0 calc(100% - clamp(30px, 5vw, 60px)));
  padding-top: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
  padding-bottom: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
}

/* Tilted background shape */
.gameplay__bg-shape {
  position: absolute;
  top: 30%;
  left: -8%;
  right: -8%;
  height: 40%;
  background: rgba(212, 43, 43, 0.03);
  transform: skewY(-2deg);
  z-index: 0;
  border-radius: 20px;
}

.gameplay__modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: start;
}

.mode-card { text-align: center; }

.mode-card__label {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.4em 1.2em;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.mode-card__label--party { background: var(--accent); }

.mode-card__text {
  font-size: var(--body-size);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mode-card__screenshot {
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--bg-dark);
  max-width: 240px;
  margin: 0 auto;
}

.mode-card__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Big stat number */
.gameplay__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1rem;
}

.gameplay__stat-number {
  font-family: var(--font);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow:
    3px 3px 0 var(--ink),
    -1px -1px 0 var(--ink),
    1px -1px 0 var(--ink),
    -1px 1px 0 var(--ink),
    0 4px 0 var(--ink);
  -webkit-text-fill-color: var(--accent);
  position: relative;
  z-index: 2;
}

.gameplay__stat-label {
  font-weight: 800;
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: var(--text-sub);
  position: relative;
  z-index: 2;
}

.gameplay__stat-explosion {
  position: absolute;
  width: clamp(150px, 25vw, 300px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Special character intrusion showcase */
.gameplay__subtitle {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin: 3rem 0 1.5rem;
  color: var(--accent);
}

.gameplay__specials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.gameplay__special-card {
  text-align: center;
}

.gameplay__special-card .mode-card__screenshot {
  aspect-ratio: 9/16;
  max-height: 350px;
  margin-bottom: 1rem;
}

.gameplay__special-text {
  font-size: var(--small-size);
  font-weight: 700;
  color: var(--text-sub);
  line-height: 1.5;
}


/* ============================================
   5. DOWNLOAD
   ============================================ */
.download {
  background: var(--bg-dark);
  text-align: center;
  /* Diagonal top */
  clip-path: polygon(0 clamp(30px, 5vw, 60px), 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(30px, 5vw, 60px) + clamp(5rem, 12vh, 10rem));
}

/* Tilted background shape */
.download__bg-shape {
  position: absolute;
  top: 15%;
  left: -5%;
  right: -5%;
  height: 70%;
  background: rgba(212, 43, 43, 0.04);
  transform: skewY(3deg);
  z-index: 0;
  border-radius: 20px;
}

.download__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--gap) * 3);
  position: relative;
  z-index: 2;
}

.download__text-area { text-align: left; }

.download__cta {
  font-size: var(--slogan-size);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-shadow:
    2px 2px 0 rgba(0,0,0,0.1);
}

.download__badge {
  display: inline-block;
  transition: transform 0.2s ease;
}

.download__badge:hover { transform: scale(1.08); }

.download__badge img,
.download__badge svg {
  height: 54px;
  width: auto;
}

.download__character {
  width: clamp(140px, 22vw, 260px);
  filter: drop-shadow(3px 6px 12px rgba(0,0,0,0.2));
  margin-top: -2rem;
  margin-bottom: -2rem;
  position: relative;
  z-index: 3;
}


/* ============================================
   6. FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: var(--small-size);
  position: relative;
}

.footer a {
  color: var(--footer-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer a:hover { color: var(--white); }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}


/* ============================================
   RESPONSIVE: TABLET (768-1024)
   ============================================ */
@media (max-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
    transform: rotate(0deg);
  }

  .characters__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gameplay__modes {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }

  .gameplay__stat {
    padding: 1rem;
  }

  .gameplay__stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .gameplay__specials {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (<768)
   ============================================ */
@media (max-width: 768px) {
  .hero__characters img {
    width: clamp(50px, 16vw, 90px);
  }

  .hero__characters img:nth-child(4),
  .hero__characters img:nth-child(5) {
    width: clamp(60px, 20vw, 110px);
  }

  .hero__characters img:nth-child(n+7) {
    display: none;
  }

  .characters__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .char-card {
    padding: 1rem 0.6rem;
  }

  /* Remove rotations on mobile for cleaner grid */
  .char-card:nth-child(n) {
    transform: rotate(0deg);
  }

  .char-card:hover {
    transform: translateY(-4px) rotate(0deg) !important;
  }

  .download__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: var(--gap);
  }

  .download__text-area {
    text-align: center;
  }

  .download__character {
    margin: 0;
    width: clamp(120px, 35vw, 200px);
  }

  .lang-switcher {
    top: 0.8rem;
    right: 0.8rem;
  }

  .lang-btn {
    padding: 0.3em 0.5em;
    font-size: 0.75rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .gameplay__specials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gameplay__special-card .mode-card__screenshot {
    max-height: 300px;
  }

  /* Reduce diagonal clip amounts on mobile */
  .about,
  .characters,
  .gameplay,
  .download {
    clip-path: none;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }

  /* Add simple top borders instead */
  .about::after,
  .characters::after,
  .gameplay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--ink);
    opacity: 0.15;
  }

  .gameplay__stat-number {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  /* Hide some decorative elements on mobile for performance */
  .hero__ono,
  .hero__manga-deco--3,
  .hero__bg-effect--2 {
    display: none;
  }

  .deco-ono {
    display: none;
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (<480)
   ============================================ */
@media (max-width: 480px) {
  .hero__emote--7,
  .hero__emote--8 {
    display: none;
  }

  .hero__icon {
    width: clamp(70px, 20vw, 100px);
  }

  .characters__hero-img {
    width: clamp(150px, 50vw, 250px);
  }
}
