:root {
  --font-sans: "Noto Sans JP", "Noto Sans", sans-serif;
  --font-display: "Noto Sans JP", "Noto Sans", sans-serif;
  --black: #111;
  --dark: #222;
  --mid: #777;
  --line: #c8c8c8;
  --soft: #e8e8e8;
  --light: #f4f4f4;
  --white: #fff;
  --accent-pink: #ff0090;
  --accent-green: #2efd67;
  --accent-violet: #5831a2;
  --accent-white: #ffffff;
  --accent-purple: #913ed8;
  --accent-yellow: #e7e400;
  --accent-deep: #5831a2;
  --card-radius-soft: 22px 22px 30px 30px / 18px 18px 38px 38px;
  --page: 1440px;
  --content: 1120px;
  --gutter: clamp(20px, 4vw, 64px);
  --content-padding: max(var(--gutter), calc((100vw - var(--content)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--black);
  background: #ddd;
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}


a,
button,
.feature-card,
.artist-card,
.platform-grid > div,
.logo-card,
.map-visual,
.follow-widget {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    opacity 0.35s ease;
}

main,
.site-header,
.site-footer {
  width: 100%;
  background: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: none;
  min-height: 76px;
  margin-inline: 0;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.wordmark {
  width: max-content;
  color: var(--accent-deep);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.wordmark-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.wordmark-logo img {
  height: clamp(32px, 4.4vw, 42px);
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 48px);
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.text-links a:hover,
.footer-links a:hover {
  color: var(--accent-green);
  text-decoration: none;
}

.button:hover,
.map-tab:hover,
.step-overview a:hover {
  transform: translateY(-2px);
}

.custom-cursor-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.custom-cursor-layer.is-visible {
  opacity: 1;
}

.custom-cursor-trail {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.custom-cursor-arrow {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  --cursor-arrow-fill: var(--accent-green);
  background: transparent;
  clip-path: polygon(14% 8%, 14% 88%, 34% 66%, 45% 93%, 58% 88%, 47% 61%, 86% 61%);
  filter:
    drop-shadow(0 0 3px rgba(46, 253, 103, 0.56))
    drop-shadow(0 0 10px rgba(46, 253, 103, 0.22));
  transform: translate3d(-100px, -100px, 0);
  transform-origin: 14% 14%;
}

.custom-cursor-arrow::before,
.custom-cursor-arrow::after {
  position: absolute;
  inset: 0;
  content: "";
  clip-path: inherit;
  transform-origin: inherit;
}

.custom-cursor-arrow::before {
  inset: -10%;
  background: rgba(255, 255, 255, 0.96);
  z-index: 0;
}

.custom-cursor-arrow::after {
  inset: 8%;
  background: var(--cursor-arrow-fill);
  z-index: 1;
}

.custom-cursor-layer.is-dragging .custom-cursor-arrow {
  filter:
    drop-shadow(0 0 4px rgba(46, 253, 103, 0.72))
    drop-shadow(0 0 12px rgba(46, 253, 103, 0.3));
}

.custom-cursor-layer[data-trail-mode="purple"] .custom-cursor-arrow {
  --cursor-arrow-fill: var(--accent-violet);
  filter:
    drop-shadow(0 0 4px rgba(152, 94, 255, 0.8))
    drop-shadow(0 0 12px rgba(77, 31, 140, 0.58));
}

.button {
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
}

.header-inner > .button {
  justify-self: end;
}

.header-inner > .follow-link {
  justify-self: end;
  gap: 8px;
  padding-inline: 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--accent-green);
  border-color: transparent;
  box-shadow: none;
  font-size: 12px;
}

.follow-link {
  white-space: nowrap;
}

.site-header .header-inner > .follow-link.button-dark {
  color: var(--black);
  background: var(--accent-green);
  border-color: transparent;
}

.follow-link:hover {
  background: #4df36f;
  border-color: #4df36f;
  color: var(--black);
  transform: translateY(-1px);
}

.site-header .header-inner > .follow-link.button-dark:hover {
  color: var(--black);
  background: #4df36f;
  border-color: #4df36f;
}

.follow-link-text {
  letter-spacing: 0.08em;
}

.follow-link-icon {
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
}

.bgm-consent {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.bgm-consent.is-hiding {
  opacity: 0;
  transform: scale(0.99);
}

.bgm-consent-card {
  width: min(420px, 100%);
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.28);
}

.bgm-consent-eyebrow {
  margin: 0 0 8px;
  color: var(--accent-violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bgm-consent-card strong {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.bgm-consent-copy {
  margin: 10px 0 18px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.6;
}

.bgm-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bgm-consent-actions .button {
  flex: 1 1 0;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
}

.bgm-consent-actions .bgm-consent-on.button-dark {
  color: var(--white);
  background: linear-gradient(180deg, rgba(91, 49, 170, 0.98) 0%, rgba(76, 37, 143, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(88, 49, 162, 0.24);
}

.bgm-consent-actions .bgm-consent-on.button-dark:hover {
  color: var(--white);
  background: linear-gradient(180deg, rgba(102, 61, 181, 1) 0%, rgba(88, 49, 162, 1) 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  color: var(--white);
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.site-header .button-dark {
  color: var(--accent-deep);
  background: rgba(88, 49, 162, 0.08);
  border-color: transparent;
  border-radius: 999px;
}

.site-header .button-dark:hover,
.site-header .wordmark:hover {
  color: var(--accent-green);
}

.site-header .button-dark:hover {
  color: var(--white);
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  color: var(--accent-deep);
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #555;
  background:
    linear-gradient(to top right, transparent 49.8%, #aaa 50%, transparent 50.2%),
    linear-gradient(to bottom right, transparent 49.8%, #aaa 50%, transparent 50.2%),
    #d5d5d5;
  border: 0;
}

.asset-slot {
  position: relative;
  isolation: isolate;
}

.asset-slot > [data-asset-label] {
  position: relative;
  z-index: 2;
  word-break: break-word;
  text-align: center;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.paint-drip {
  display: none;
  position: absolute;
  top: 0;
  left: -8%;
  z-index: 2;
  width: min(66%, 640px);
  aspect-ratio: 1864 / 348;
  height: auto;
  pointer-events: none;
  background: var(--paint-color, #fff);
  opacity: 0.96;
  transform: translateY(-1px);
  -webkit-mask: url("assets/Paint.svg") top left / 100% 100% no-repeat;
  mask: url("assets/Paint.svg") top left / 100% 100% no-repeat;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
}

.asset-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.asset-slot[data-asset-fit="contain"] .asset-image {
  object-fit: contain;
  padding: 18px;
}

.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.asset-slot.is-loaded > [data-asset-label] {
  opacity: 0;
  pointer-events: none;
}

.asset-slot.is-loaded .asset-image {
  opacity: 1;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.placeholder-label,
.media-placeholder > span {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero {
  color: var(--white);
  border-inline: 0;
}

.hero-glitch,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero::after {
  content: "";
  background: rgba(0, 0, 0, 0.28);
}

.hero::before {
  position: absolute;
  inset: auto auto -16% -8%;
  width: 46%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 68%);
  filter: blur(16px);
  animation: drift 10s ease-in-out infinite;
}

.hero-glitch {
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 19, 146, 0.36), transparent 18%, transparent 82%, rgba(34, 255, 238, 0.34)),
    repeating-linear-gradient(
      90deg,
      rgba(226, 255, 0, 0.18) 0 28px,
      rgba(93, 0, 255, 0.22) 28px 54px,
      rgba(255, 0, 136, 0.16) 54px 82px,
      rgba(0, 247, 255, 0.22) 82px 124px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      rgba(0, 0, 0, 0.04) 2px 4px
    );
  mix-blend-mode: screen;
  filter: saturate(1.35) contrast(1.08);
}

.hero-glitch::before,
.hero-glitch::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
}

.hero-glitch::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 0, 157, 0.96) 0 48px,
      rgba(103, 0, 255, 0.92) 48px 92px,
      rgba(67, 250, 255, 0.92) 92px 144px,
      rgba(214, 255, 0, 0.92) 144px 196px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.14) 22px 30px,
      transparent 30px 64px,
      rgba(0, 0, 0, 0.18) 64px 72px
    );
  background-size:
    260px 78px,
    100% 100%;
  mix-blend-mode: lighten;
}

.hero-glitch::after {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 242, 0.7) 0 22px,
      rgba(255, 0, 153, 0.68) 22px 44px,
      rgba(217, 255, 0, 0.72) 44px 66px,
      rgba(103, 0, 255, 0.68) 66px 88px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.12));
  background-size:
    180px 42px,
    100% 100%;
  mix-blend-mode: screen;
}

.hero .placeholder-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  color: var(--black);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -22px;
  display: grid;
  justify-items: center;
  text-align: center;
  transform-origin: center top;
}

.hero-watermark {
  position: absolute;
  z-index: 2;
  top: clamp(18px, 2.6vw, 34px);
  left: clamp(18px, 2.6vw, 34px);
  width: min(24vw, 300px);
  min-width: 144px;
  aspect-ratio: 3.2 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-watermark.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.hero-watermark > [data-asset-label] {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(17, 17, 17, 0.2);
}

.hero-watermark .asset-image {
  object-fit: contain;
  object-position: left top;
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.16));
}

.hero-logo {
  position: relative;
  width: min(40vw, 720px);
  min-width: 420px;
  max-width: 92vw;
  aspect-ratio: 4.6 / 1;
  height: auto;
  margin: 0;
  background: transparent;
  border: 0;
  transform: translateY(-18px) scale(1.22);
  opacity: 0;
  filter: blur(8px);
}

.hero-logo[data-logo-shape="square"] {
  width: min(40vw, 520px);
  min-width: 340px;
  max-width: 76vw;
  aspect-ratio: 1 / 1;
}

.hero-logo.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.hero-logo > [data-asset-label] {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-logo .asset-image {
  object-fit: contain;
  object-position: center;
}

.hero-copy p {
  display: none;
  margin: 0;
  font-size: clamp(14px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(10px);
}

.hero-actions {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  left: clamp(18px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: hero-rise 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-intro-active .hero-glitch {
  animation: hero-glitch-flicker 0.66s steps(3, end) both;
}

.hero-intro-active .hero-glitch::before {
  animation: hero-glitch-slice-a 0.66s steps(3, end) both;
}

.hero-intro-active .hero-glitch::after {
  animation: hero-glitch-slice-b 0.66s steps(3, end) both;
}

.hero-intro-active > .asset-image,
.hero-intro-active > .placeholder-label {
  animation: hero-keyvisual-glitch 0.66s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-intro-active .hero-logo {
  animation: hero-stamp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.hero-intro-active .hero-logo .asset-image {
  filter:
    drop-shadow(-10px 0 0 rgba(255, 63, 129, 0.34))
    drop-shadow(10px 0 0 rgba(0, 247, 255, 0.3));
}

.hero-intro-active .hero-copy p {
  animation: hero-subtitle-rise 0.44s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.hero-intro-done .hero-logo {
  opacity: 1;
  filter: none;
  transform: none;
}

.hero-intro-done .hero-logo .asset-image {
  filter: none;
}

.hero-intro-done .hero-copy p {
  opacity: 1;
  transform: none;
}

.hero-code-band {
  --hero-code-gap: clamp(28px, 4vw, 56px);
  padding:
    var(--hero-code-gap)
    var(--content-padding)
    var(--hero-code-gap);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #62ED53 0%, #62ED53 100%);
}

.hero-code {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 24px);
  display: grid;
  justify-items: center;
  row-gap: 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
  text-align: center;
}

.hero-code span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-code-main {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-inline: auto;
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.8vw, 18px);
  border-radius: 999px;
  background: var(--accent-green);
  border: 0;
}

.hero-code strong {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

.hero-code-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
}

.hero-code .button {
  min-width: 132px;
  border-radius: 999px;
}

.hero-code .icon-button {
  grid-column: 3;
  justify-self: start;
  color: var(--accent-deep);
  background: var(--accent-green);
  border: 0;
  width: clamp(40px, 3.6vw, 50px);
  min-width: clamp(40px, 3.6vw, 50px);
  height: clamp(40px, 3.6vw, 50px);
  min-height: clamp(40px, 3.6vw, 50px);
}

.hero-code .icon-button:hover {
  color: var(--white);
  background: var(--accent-pink);
  border-color: transparent;
}

.hero-code .icon-button svg {
  width: clamp(19px, 1.8vw, 24px);
  height: clamp(19px, 1.8vw, 24px);
}

.icon-button {
  width: clamp(28px, 2.8vw, 36px);
  min-width: clamp(28px, 2.8vw, 36px);
  height: clamp(28px, 2.8vw, 36px);
  min-height: clamp(28px, 2.8vw, 36px);
  padding: 0;
  aspect-ratio: 1;
  flex: 0 0 auto;
  align-self: center;
  border-radius: 999px;
}

.icon-button svg {
  width: clamp(14px, 1.4vw, 17px);
  height: clamp(14px, 1.4vw, 17px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-play-button {
  min-width: 132px;
  min-height: 40px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-violet);
  border: 0;
}

.hero-play-button:hover {
  color: var(--white);
  background: var(--accent-pink);
  border-color: transparent;
}

.hero-code-feedback {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-code-feedback:empty {
  display: none;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.58);
}

.hero-scroll::after {
  width: 12px;
  height: 12px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  filter:
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.78))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.56));
  animation: nudge-down 1.4s ease-in-out infinite;
}

.section {
  padding: clamp(72px, 9vw, 132px) var(--content-padding);
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

#game {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.map-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  padding-bottom: clamp(280px, 22vw, 320px);
}

.map-section > *:not(.map-section-background) {
  position: relative;
  z-index: 1;
}

.map-section .section-heading {
  margin-bottom: clamp(42px, 4.8vw, 64px);
  display: grid;
  align-items: start;
  gap: 10px;
  padding-bottom: 12px;
  border-color: rgba(255, 255, 255, 0.3);
}

.map-section .section-heading > p,
.map-section .section-heading h2,
.map-section .group-label,
.map-section .map-tabs span {
  color: var(--white);
}

.map-section .section-heading span {
  color: #ffffff;
}

.map-section .map-intro {
  max-width: min(100%, 860px);
  margin: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.map-section .map-intro span {
  display: block;
}

.map-section .placeholder-label,
.map-section .media-placeholder > span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.42);
}

.map-section-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: #0d0d0d;
}

.map-section-background > [data-asset-label] {
  opacity: 0;
}

.map-section-background .asset-image {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(10px) saturate(0.95) brightness(0.7);
}

.map-section-background.is-refreshing .asset-image {
  animation: map-bg-refresh 0.52s ease;
}

.map-section-background.is-refreshing::after {
  animation: map-bg-scan 0.52s steps(3, end);
}

.map-section-background::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.5) 28%,
      rgba(0, 0, 0, 0.48) 72%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(110, 255, 237, 0) 30%,
      rgba(79, 255, 228, 0.12) 38%,
      rgba(255, 255, 255, 0.26) 44%,
      rgba(164, 255, 241, 0.42) 48%,
      rgba(255, 0, 144, 0.26) 53%,
      rgba(255, 255, 255, 0.08) 58%,
      rgba(255, 255, 255, 0) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 100% 100%, 100% 240%;
  background-position: 0 0, 0 170%;
  background-repeat: no-repeat;
  animation: map-crt-sweep 6.4s linear infinite;
}

.map-section-background::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0 2px,
      rgba(255, 255, 255, 0.06) 2px 3px,
      rgba(0, 0, 0, 0.12) 3px 8px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      rgba(0, 0, 0, 0) 1px 12px
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      transparent 18%,
      transparent 82%,
      rgba(255, 255, 255, 0.08)
    );
  mix-blend-mode: screen;
  opacity: 0.48;
  background-size: 100% 8px, 100% 16px, 100% 100%;
  animation: map-crt-idle 11s linear infinite;
}

.catchcopy.section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 10vw, 144px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #62ED53 0%, #62ED53 100%);
}

.catchcopy.section > *:not(.catch-collage) {
  position: relative;
  z-index: 2;
}

.catchcopy.section + .hero-code-band {
  margin-top: 0;
}

.hero-code-band + .pv {
  margin-top: 0;
}

.catchcopy {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(52px, 6vw, 84px);
  text-align: center;
}

.catch-collage {
  position: absolute;
  inset: clamp(-18px, -1vw, -8px) clamp(-8px, -0.5vw, 0px) clamp(0px, 0.5vw, 8px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: clamp(6px, 1vw, 14px);
  pointer-events: none;
}

.catch-collage-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform:
    translate3d(0, var(--catch-bob, 0px), 0)
    translateY(calc((1 - var(--catch-active, 0)) * 16px))
    rotate(var(--catch-tilt, 0deg))
    scale(calc(0.88 + (var(--catch-active, 0) * 0.14)));
  transition:
    opacity 0.18s linear,
    transform 0.18s linear;
}

.catch-collage-card.is-visible {
  opacity: 1;
}

.catch-collage-card.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.catch-collage-card > [data-asset-label] {
  background: rgba(255, 255, 255, 0.72);
}

.catch-collage-card .asset-image {
  padding: 0;
  object-fit: cover;
}

.catch-collage-card::before {
  display: none;
}

.catch-collage-card::after {
  display: none;
}

.catch-collage-card[data-asset-base="catch-grid-01"] { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-02"] { grid-column: 10 / span 3; grid-row: 1 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-03"] { grid-column: 2 / span 2; grid-row: 3 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-04"] { grid-column: 10 / span 2; grid-row: 3 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-05"] { grid-column: 1 / span 2; grid-row: 5 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-06"] { grid-column: 11 / span 2; grid-row: 5 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-07"] { grid-column: 3 / span 3; grid-row: 6 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-08"] { grid-column: 8 / span 3; grid-row: 6 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-09"] { grid-column: 4 / span 2; grid-row: 2 / span 2; }
.catch-collage-card[data-asset-base="catch-grid-10"] { grid-column: 8 / span 2; grid-row: 2 / span 2; }

.catch-collage-card[data-asset-base="catch-grid-01"],
.catch-collage-card[data-asset-base="catch-grid-03"],
.catch-collage-card[data-asset-base="catch-grid-05"],
.catch-collage-card[data-asset-base="catch-grid-07"],
.catch-collage-card[data-asset-base="catch-grid-09"] {
  justify-self: start;
}

.catch-collage-card[data-asset-base="catch-grid-02"],
.catch-collage-card[data-asset-base="catch-grid-04"],
.catch-collage-card[data-asset-base="catch-grid-06"],
.catch-collage-card[data-asset-base="catch-grid-08"],
.catch-collage-card[data-asset-base="catch-grid-10"] {
  justify-self: end;
}

.catch-top-gif {
  width: min(100%, 180px);
  aspect-ratio: 256 / 355;
  min-height: 0;
  margin: 0 auto clamp(2px, 0.8vw, 8px);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  pointer-events: none;
}

.catch-top-gif.asset-slot.is-loaded {
  background: transparent !important;
  border-color: transparent;
  box-shadow: none;
}

.catch-top-gif > [data-asset-label] {
  background: rgba(255, 255, 255, 0.82);
}

.catch-top-gif.asset-slot[data-asset-fit="contain"] .asset-image {
  object-fit: contain;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.catch-large-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: clamp(360px, 42vw, 620px);
}

.catchcopy-insert {
  width: min(100%, 1020px);
  min-height: clamp(240px, 30vw, 460px);
  margin: 0 auto;
  position: absolute;
  inset: clamp(12px, 1.6vw, 24px) auto auto 50%;
  background: transparent;
  box-shadow: none;
  border: 0;
  overflow: visible;
  z-index: 1;
  transform: translateX(-50%);
}

.catchcopy .catchcopy-insert.asset-slot.is-loaded,
.catchcopy .catch-top-gif.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.catchcopy .catchcopy-insert.asset-slot[data-asset-fit="contain"] .asset-image,
.catchcopy .catch-top-gif.asset-slot[data-asset-fit="contain"] .asset-image {
  padding: 0;
  object-fit: contain;
}

.catchcopy-insert.asset-slot.is-loaded {
  background: transparent;
}

.catchcopy-insert > [data-asset-label] {
  background: transparent;
}

.catchcopy-insert.asset-slot[data-asset-fit="contain"] .asset-image {
  padding: 0;
  object-position: center center;
  transform: translateX(-3.5%);
}

.catchcopy p {
  margin: 0;
  color: inherit;
  line-height: 1.42;
  text-shadow: none;
}

.catchcopy span,
.section-heading span,
.step-card h3 span {
  color: var(--mid);
  font-weight: 400;
}

.catchcopy span {
  color: inherit;
  display: inline-block;
  margin-top: 0.28em;
  font-size: 0.76em;
  font-weight: 650;
  line-height: 1.52;
}

.catch-small {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--accent-pink);
}

.catch-medium {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--accent-purple);
}

.catch-small span,
.catch-medium span {
  font-size: inherit;
}

.catch-large {
  position: relative;
  z-index: 3;
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.04em;
  white-space: normal;
  padding:
    clamp(228px, 24vw, 356px)
    clamp(12px, 2vw, 20px)
    0;
}

.catch-glitch {
  position: relative;
  font-weight: 850;
  animation: catch-glitch-shift 2.8s steps(1, end) infinite;
}

.catch-glitch,
.catch-glitch span {
  color: var(--accent-pink);
  font-weight: 850;
  text-shadow:
    -0.035em 0 0 rgba(46, 253, 103, 0.9),
    0.035em 0 0 rgba(145, 62, 216, 0.82);
}

.catch-glitch span {
  display: block;
  color: var(--white);
}

.catch-glitch .catch-large-en {
  margin-top: 0.08em;
  font-size: 0.34em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-shadow: none;
  opacity: 0.96;
}

.pv {
  position: relative;
  margin-bottom: 0;
  border-inline: 0;
  padding: clamp(72px, 9vw, 132px) var(--content-padding);
  padding-bottom: clamp(92px, 10vw, 144px);
  background-color: #000;
  overflow: hidden;
  isolation: isolate;
}

.pv > * {
  position: relative;
  z-index: 1;
}

.pv-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pv-stage-wrap {
  position: relative;
  z-index: 4;
  width: min(100%, var(--content));
  margin: clamp(28px, 4vw, 48px) auto 0;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2vw, 24px);
}

.pv-heading {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.pv-heading > p {
  margin: 0;
  color: #2efd67;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pv-heading h2 {
  margin: 0;
  padding-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-align: center;
}

.pv-heading span {
  color: var(--white);
  font-family: inherit;
  font-weight: inherit;
}

.pv-paint-layer {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  pointer-events: none;
  overflow: visible;
}

.pv-paint-layer.media-placeholder,
.pv-paint-layer.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.pv-paint-layer > [data-asset-label] {
  display: none;
}

.pv-paint-layer .asset-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: initial;
  object-position: top center;
  opacity: 0.96;
  transform: none;
}

.pv-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: none;
  background: transparent;
}

.pv-description {
  width: min(100%, 1080px);
  margin: clamp(14px, 2vw, 24px) auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
  text-wrap: pretty;
}

.pv-stage .pv-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pv-stage .pv-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: clamp(24px, 4vw, 44px);
  display: none;
  align-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82));
}

.pv-fallback-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.pv-fallback strong {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pv-fallback small {
  max-width: 38ch;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.pv.is-fallback .pv-embed {
  display: none;
}

.pv.is-fallback .pv-fallback {
  display: grid;
}

.pv + .map-section {
  padding-top: clamp(104px, 11vw, 172px);
}

.section-heading {
  margin-bottom: clamp(40px, 5vw, 72px);
  display: grid;
  justify-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--accent-deep);
  text-align: center;
}

.section-heading > p {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  order: 0;
}

.section-heading h2 {
  margin: 0;
  padding-bottom: 18px;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading span {
  color: #000;
  font-family: inherit;
  font-weight: inherit;
}

.section-dark .section-heading h2,
.section-dark .section-heading span {
  color: var(--white);
}

.section-dark .section-heading > p {
  color: #2efd67;
}

#game .section-heading h2,
#game .section-heading span {
  color: var(--accent-green);
}

#game .section-heading {
  border-color: transparent;
  margin-bottom: clamp(56px, 6vw, 84px);
  padding-top: 4px;
}

#game {
  --game-poken-progress: 0;
  --game-poken-left-progress: 0;
  --game-poken-right-progress: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #eb348b 0%, #eb348b 100%);
}

#game > *:not(.game-poken-layer):not(.game-paint-layer) {
  position: relative;
  z-index: 3;
}

#game .section-heading h2,
#game .section-heading span,
#game .group-label {
  color: var(--white);
}

#game .section-heading > p {
  color: var(--accent-yellow);
}

#game .group-label {
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.game-paint-layer {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  pointer-events: none;
  overflow: visible;
}

.game-paint-layer.media-placeholder,
.game-paint-layer.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.game-paint-layer > [data-asset-label] {
  display: none;
}

.game-paint-layer .asset-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: initial;
  object-position: top center;
  opacity: 0.96;
  transform: none;
}

#artists {
  position: relative;
  overflow: hidden;
}

#artists > *:not(.artist-paint-layer) {
  position: relative;
  z-index: 3;
}

.artist-paint-layer {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  pointer-events: none;
  overflow: visible;
}

.artist-paint-layer.media-placeholder,
.artist-paint-layer.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.artist-paint-layer.asset-slot[data-asset-fit="contain"] .asset-image {
  padding: 0;
  object-fit: contain;
}

.artist-paint-layer > [data-asset-label] {
  display: none;
}

.artist-paint-layer .asset-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: initial;
  object-position: top center;
  opacity: 0.96;
  transform: none;
}

.game-poken-layer {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.game-poken {
  position: fixed;
  top: 56%;
  z-index: 0;
  width: clamp(372px, 40vw, 720px);
  aspect-ratio: 1 / 1.08;
  opacity: calc(0.02 + var(--poken-progress, 0) * 0.98);
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  filter: blur(calc((1 - var(--poken-progress, 0)) * 6px));
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

.game-poken.media-placeholder {
  background: transparent;
  overflow: visible;
}

.game-poken > [data-asset-label] {
  display: none;
}

.game-poken .asset-image {
  position: absolute;
  inset: 0;
  padding: 0;
  object-fit: contain;
  transform-origin: center center;
}

.game-poken-left .asset-image {
  object-position: left top;
  transform-origin: left top;
  animation: game-poken-tilt-left 4.2s ease-in-out infinite;
}

.game-poken-right .asset-image {
  object-position: left bottom;
  animation: game-poken-sway 3.6s ease-in-out infinite -1.8s;
}

.game-poken-left {
  left: clamp(-28px, -1.2vw, -10px);
  top: 48%;
  width: clamp(300px, 32vw, 560px);
  --poken-progress: var(--game-poken-left-progress, 0);
  transform: translate3d(calc((-112% + (112% * var(--poken-progress, 0)))), -50%, 0);
}

.game-poken-right {
  right: clamp(8px, 1.8vw, 24px);
  top: 68%;
  width: clamp(180px, 20vw, 360px);
  --poken-progress: var(--game-poken-right-progress, 0);
  transform: translate3d(calc((112% - (74% * var(--poken-progress, 0)))), -50%, 0);
}

.game-poken-float {
  position: absolute;
  inset: 0;
}

#artists .section-heading h2,
#artists .section-heading span {
  color: var(--accent-violet);
}

#artists .section-heading {
  border-color: var(--accent-deep);
  justify-items: center;
  text-align: center;
}

#artists .section-heading h2 {
  width: 100%;
}

#artists .section-heading > p {
  color: var(--accent-pink);
}

.platforms {
  color: var(--white);
  background: #5831a2;
  padding-top: clamp(0px, 1vw, 8px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.platforms .section-heading h2,
.platforms .section-heading span {
  color: var(--white);
}

.platforms .section-heading {
  margin-bottom: clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.platforms .section-heading h2 {
  padding-bottom: 14px;
}

.platform-summary {
  margin-top: clamp(24px, 4vw, 58px);
}

#how-to-play::after {
  content: "";
  display: block;
  width: 100%;
  margin: clamp(4px, 1vw, 12px) auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

@media (max-width: 1180px) {
  #how-to-play {
    padding-bottom: clamp(48px, 5vw, 76px);
  }

  #how-to-play::after {
    margin-top: 0;
  }

  .platforms {
    padding-top: clamp(48px, 5vw, 76px);
  }
}

.platforms .section-heading > p {
  color: var(--accent-green);
}

#faq .section-heading h2,
#faq .section-heading span {
  color: var(--accent-purple);
  font-weight: 900;
}

#faq .section-heading {
  border-color: var(--accent-deep);
}

#faq .section-heading > p {
  color: var(--accent-yellow);
}

.logo-showcase .section-heading h2,
.logo-showcase .section-heading span {
  color: var(--accent-purple);
}

.logo-showcase .section-heading {
  border-color: var(--accent-deep);
}

.logo-showcase .section-heading > p {
  color: var(--accent-pink);
}

.logo-showcase .section-heading {
  align-items: center;
  flex-wrap: wrap;
}

.logo-grid-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.logo-card-brand {
  min-height: 170px;
  padding: 24px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.logo-card-brand.media-placeholder,
.logo-card-brand.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.logo-card-brand-image {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  display: block;
}

.map-tv {
  position: relative;
  width: calc(100% + (var(--content-padding) * 2));
  margin-top: clamp(24px, 2.5vw, 28px);
  margin-inline: calc(var(--content-padding) * -1);
  overflow: visible;
}

.map-tv .map-tv-screen {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content));
  margin: 0 auto;
}

.map-tv-screen .map-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  margin: 0;
}

.map-tv .map-tabs {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  width: min(100%, var(--content));
  padding: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  overflow: visible;
  flex-wrap: nowrap;
  scroll-padding-inline: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  transform: none;
  margin: 0 auto 12px;
}

.map-design-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.map-design-overlay-below {
  z-index: 1;
}

.map-design-overlay-above {
  z-index: 3;
}

.map-design-card {
  position: absolute;
  top: clamp(-18px, -1.2vw, -8px);
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 4 / 3;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: none;
  opacity: 0;
  transform: translateY(12px) rotate(0deg) scale(0.94);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.map-design-card::before,
.map-design-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.map-design-card::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(46, 253, 103, 0.22), rgba(46, 253, 103, 0.04) 28%, transparent 60%),
    linear-gradient(90deg, rgba(46, 253, 103, 0.08), transparent 18%, transparent 82%, rgba(46, 253, 103, 0.12)),
    repeating-linear-gradient(
      90deg,
      rgba(46, 253, 103, 0.2) 0 1px,
      transparent 1px 12px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(46, 253, 103, 0.18) 0 1px,
      transparent 1px 10px
    );
  mix-blend-mode: screen;
  opacity: 0.72;
  background-size:
    100% 100%,
    100% 100%,
    18px 100%,
    100% 16px;
  animation:
    map-scan-pan 4.8s linear infinite,
    map-scan-shift 3.2s ease-in-out infinite;
}

.map-design-card::after {
  z-index: 3;
  inset: -8% 0 auto;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(46, 253, 103, 0.5), transparent);
  opacity: 0.8;
  transform: translateY(22%);
  animation: map-scan-beam 2.6s linear infinite;
}

.map-design-card.asset-slot.is-loaded {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 255, 255, 0.94);
}

.map-design-card {
  animation: map-corner-float 5.8s ease-in-out infinite;
}

.map-design-card[data-corner="tl"] { animation-delay: 0s; }
.map-design-card[data-corner="tr"] { animation-delay: 0.45s; }
.map-design-card[data-corner="bl"] { animation-delay: 0.9s; }
.map-design-card[data-corner="br"] { animation-delay: 1.35s; }

.map-design-overlay.is-visible .map-design-card {
  opacity: 1;
}

.map-design-overlay[data-layout="corners"] .map-design-slot {
  display: none;
}

.map-design-overlay[data-layout="single"] .map-design-corner-slot {
  display: none;
}

.map-design-overlay-below[data-layout="corners"] .map-design-corner-slot,
.map-design-overlay-above[data-layout="corners"] .map-design-corner-slot {
  z-index: 0;
}

.map-design-overlay[data-side="left"] .map-design-card {
  left: clamp(-28px, -1.8vw, -8px);
  transform: translateY(0) rotate(-5deg) scale(1);
}

.map-design-overlay[data-side="right"] .map-design-card {
  right: clamp(-28px, -1.8vw, -8px);
  transform: translateY(0) rotate(5deg) scale(1);
}

.map-design-card[data-asset-base="map-design-zone-e"] {
  top: clamp(-16px, -1vw, -4px);
  width: clamp(180px, 19vw, 310px);
  aspect-ratio: 512 / 1075;
}

.map-design-overlay[data-side="left"] .map-design-card[data-asset-base="map-design-zone-e"] {
  left: clamp(-44px, -2.8vw, -14px);
  transform: translateY(0) rotate(-4deg) scale(1);
  width: clamp(124px, 12.5vw, 190px);
}

.map-design-overlay[data-side="right"] .map-design-card[data-asset-base="map-design-zone-e"] {
  right: clamp(-40px, -2.4vw, -12px);
  transform: translateY(0) rotate(4deg) scale(1);
  width: clamp(140px, 14vw, 210px);
}

.map-design-card .asset-image {
  object-fit: cover;
  transform: none;
  opacity: 1;
}

.map-design-card[data-asset-base="map-design-zone-e"] .asset-image {
  object-fit: contain;
  padding: 0;
}

.map-design-corner-slot {
  width: clamp(150px, 14.5vw, 240px);
  aspect-ratio: 4 / 3;
}

.map-design-overlay-below .map-design-corner-slot[data-corner="tr"] {
  right: clamp(-124px, -8.6vw, -44px);
  top: clamp(-92px, -6.4vw, -38px);
  width: clamp(330px, 30vw, 500px);
  transform: rotate(5deg);
}

.map-design-overlay-below .map-design-corner-slot[data-corner="bl"] {
  left: clamp(-128px, -8.8vw, -46px);
  bottom: clamp(-108px, -7vw, -44px);
  top: auto;
  width: clamp(330px, 30vw, 500px);
  transform: rotate(4deg);
}

.map-design-overlay-above .map-design-corner-slot[data-corner="tl"] {
  left: clamp(-92px, -6.4vw, -34px);
  top: clamp(-62px, -4.6vw, -26px);
  transform: rotate(-6deg);
}

.map-design-overlay-above .map-design-corner-slot[data-corner="br"] {
  right: clamp(-128px, -8.8vw, -46px);
  bottom: clamp(-108px, -7vw, -44px);
  top: auto;
  z-index: 5;
  transform: rotate(-5deg);
}

@keyframes map-corner-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -6px;
  }
}

@keyframes map-scan-pan {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 18px 0, 0 0;
  }
}

@keyframes map-scan-shift {
  0%,
  100% {
    opacity: 0.58;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes map-scan-beam {
  0% {
    transform: translateY(-140%);
  }
  100% {
    transform: translateY(260%);
  }
}

@keyframes catch-scan-pan {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 18px 0, 0 0;
  }
}

@keyframes catch-scan-shift {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes catch-scan-beam {
  0% {
    transform: translateY(-140%);
  }
  100% {
    transform: translateY(260%);
  }
}

#how-to-play {
  position: relative;
  overflow: hidden;
}

#how-to-play > *:not(.howto-paint-layer) {
  position: relative;
  z-index: 3;
}

#how-to-play .section-heading {
  margin-bottom: clamp(24px, 2.4vw, 32px);
}

#how-to-play .section-heading h2,
#how-to-play .section-heading span {
  color: var(--accent-green);
  font-weight: 900;
}

#how-to-play .step-overview a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
}

#how-to-play .step-overview b,
#how-to-play .step-overview span,
#how-to-play .step-overview small,
#how-to-play .step-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-synthesis: none;
}

#how-to-play .step-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
}

#faq .section-heading h2,
#faq .section-heading span {
  color: var(--accent-purple);
}

.howto-paint-layer {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  pointer-events: none;
  overflow: visible;
}

.howto-paint-layer.media-placeholder,
.howto-paint-layer.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.howto-paint-layer > [data-asset-label] {
  display: none;
}

.howto-paint-layer .asset-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: initial;
  object-position: top center;
  opacity: 0.96;
  transform: none;
}

.map-tabs::-webkit-scrollbar {
  height: 4px;
}

.map-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.map-tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.map-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}

.map-tabs span {
  height: 22px;
  margin-inline: 3px;
  border-left: 1px solid var(--black);
}

.map-section .map-tabs span {
  border-left-color: rgba(255, 255, 255, 0.28);
}

.map-tab {
  position: relative;
  z-index: 0;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 9px 14px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 7px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transform-origin: center center;
  transform: translateY(0);
  will-change: transform, box-shadow, background-color, color;
}

.map-tab:hover {
  z-index: 2;
  color: #111;
  background: var(--accent-pink);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(255, 0, 144, 0.24);
}

.map-tab[data-map="all"]:hover {
  color: #111;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 22px rgba(255, 255, 255, 0.24);
}

.map-tab[data-map="lobby"]:hover,
.map-tab[data-map="c"]:hover {
  color: #111;
  background: var(--accent-green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(46, 253, 103, 0.24);
}

.map-tab[data-map="a"]:hover {
  color: #111;
  background: var(--accent-yellow);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(231, 228, 0, 0.28);
}

.map-tab[data-map="b"]:hover {
  color: #fff;
  background: var(--accent-pink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(255, 0, 144, 0.28);
}

.map-tab[data-map="d"]:hover {
  color: #fff;
  background: var(--accent-purple);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(145, 62, 216, 0.28);
}

.map-tab[data-map="e"]:hover {
  color: #fff;
  background: var(--accent-violet);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(88, 49, 162, 0.28);
}

.map-tab.is-active {
  color: #111;
  background: var(--accent-pink);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 20px rgba(17, 17, 17, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.map-tab[data-map="lobby"].is-active {
  background: var(--accent-green);
}

.map-tab[data-map="all"].is-active {
  background: #ffffff;
  color: #111;
}

.map-tab[data-map="a"].is-active {
  background: var(--accent-yellow);
  color: #111;
}

.map-tab[data-map="b"].is-active {
  background: var(--accent-pink);
  color: #fff;
}

.map-tab[data-map="c"].is-active {
  background: var(--accent-green);
  color: #111;
}

.map-tab[data-map="d"].is-active {
  background: var(--accent-purple);
  color: #fff;
}

.map-tab[data-map="e"].is-active {
  background: var(--accent-violet);
  color: #fff;
}

.map-tab-secret {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 7px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.map-tab::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
  border-radius: inherit;
}

.map-tab > * {
  position: relative;
  z-index: 1;
}

.map-tab:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 4px 10px rgba(0, 0, 0, 0.12);
}

.map-secret-count {
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 3;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.map-secret-count.is-unlocked {
  background: var(--accent-green);
  color: #111;
}

.map-tab-secret:hover,
.map-tab-secret.is-active {
  color: #fff;
  background: var(--accent-purple);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 22px rgba(145, 62, 216, 0.28);
}

.map-visual {
  --map-parallax-x: 0px;
  --map-parallax-y: 0px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-color: rgba(15, 15, 15, 0.5);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 42px rgba(255, 255, 255, 0.07),
    inset 0 0 28px rgba(255, 0, 144, 0.08),
    inset 0 0 24px rgba(46, 253, 103, 0.05);
}

.map-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  border-radius: inherit;
}

.map-visual::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 0, 149, 0.9) 0 36px,
      rgba(84, 0, 255, 0.9) 36px 74px,
      rgba(44, 244, 255, 0.88) 74px 126px,
      rgba(217, 255, 0, 0.9) 126px 170px
    );
  mix-blend-mode: screen;
  opacity: 0;
}

.map-visual::after {
  background:
    linear-gradient(90deg, rgba(255, 0, 144, 0.16), transparent 12%, transparent 88%, rgba(46, 253, 103, 0.16)),
    linear-gradient(180deg, rgba(88, 49, 162, 0.14), transparent 14%, transparent 86%, rgba(231, 228, 0, 0.12)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0 2px,
      rgba(0, 0, 0, 0) 2px 6px
    ),
    linear-gradient(90deg, rgba(0, 255, 240, 0.18), transparent 24%, transparent 76%, rgba(255, 0, 136, 0.16));
  opacity: 0.38;
  filter: blur(10px);
}

.map-visual .asset-image {
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 60%,
    rgba(0, 0, 0, 0.98) 72%,
    rgba(0, 0, 0, 0.88) 82%,
    rgba(0, 0, 0, 0.55) 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 60%,
    rgba(0, 0, 0, 0.98) 72%,
    rgba(0, 0, 0, 0.88) 82%,
    rgba(0, 0, 0, 0.55) 92%,
    transparent 100%
  );
}

.map-visual.is-loaded .asset-image {
  animation: map-breathe 18s ease-in-out infinite;
}

.map-section.is-switching {
  animation: map-ui-shake 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-visual.is-switching .asset-image {
  animation: map-visual-glitch 0.52s steps(3, end), map-breathe 18s ease-in-out 0.52s infinite;
}

.map-visual.is-switching::before {
  animation: map-visual-blocks 0.52s steps(3, end);
}

.map-visual.is-switching::after {
  animation: map-visual-scan 0.52s steps(3, end);
}

.map-visual .placeholder-label {
  z-index: 2;
}

.map-visual .paint-drip {
  z-index: 3;
  left: -6%;
  width: min(62%, 820px);
  --paint-color: #ffffff;
}

.map-burst-title {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}

.map-burst-half {
  flex: 0 0 50%;
  display: flex;
  overflow: hidden;
}

.map-burst-half-left {
  justify-content: flex-end;
}

.map-burst-half-right {
  justify-content: flex-start;
}

.map-burst-text {
  display: inline-block;
  color: #fff;
  font-size: clamp(34px, 7.8vw, 132px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-transform: none;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.16),
    0 0 36px rgba(255, 255, 255, 0.1);
  filter: blur(0);
  opacity: 0;
  will-change: transform, opacity, filter;
}

.map-burst-half-left .map-burst-text {
  transform: translateX(50%);
}

.map-burst-half-right .map-burst-text {
  transform: translateX(-50%);
}

.map-visual.is-title-burst .map-burst-title {
  opacity: 1;
}

.map-visual.is-title-burst .map-burst-half-left .map-burst-text {
  animation: map-title-burst-left 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.map-visual.is-title-burst .map-burst-half-right .map-burst-text {
  animation: map-title-burst-right 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.map-caption {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  padding: clamp(24px, 4vw, 58px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.map-caption h3 {
  margin: 2px 0 6px;
  font-size: clamp(26px, 3vw, 44px);
}

.map-caption p {
  margin: 0;
}

.map-caption .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

#map-description {
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow,
.group-label,
.step-number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-muted {
  background: var(--light);
}

.group-label {
  margin: 0 0 14px;
  color: var(--accent-deep);
  text-align: center;
  width: 100%;
}

.secondary-label {
  margin-top: 70px;
}

.pv-heading {
  justify-items: center;
  text-align: center;
}

.pv-heading h2 {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-grid:not(.feature-grid-main) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid:not(.feature-grid-main) .feature-card .card-body h3 i {
  display: none;
}

.feature-grid:not(.feature-grid-main) .feature-card .card-body {
  padding: 12px 14px 14px;
}

.feature-grid:not(.feature-grid-main) .feature-card .card-body h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.feature-grid:not(.feature-grid-main) .feature-card .card-body p {
  display: none;
}

.more-feature-preview {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(100%, var(--content));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 366px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: none;
}

.more-feature-preview > * {
  min-width: 0;
}

.more-feature-preview-visual {
  position: relative;
  z-index: 1;
  min-height: 366px;
  border: 0;
  overflow: hidden;
  background: transparent;
}

.more-feature-preview-visual .asset-image {
  object-fit: cover;
  object-position: 58% center !important;
  transform: scale(1.12) translateX(-6%);
  transform-origin: center center;
}

.more-feature-preview-visual[data-asset-base="feature-06-bgm"] .asset-image {
  object-position: 58% center !important;
  transform: scale(1.12) translateX(-6%);
  transform-origin: center center;
}

.more-feature-preview-body {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(24px, 3vw, 42px);
  display: grid;
  align-content: center;
  gap: 10px;
  color: var(--accent-deep);
  background:
    linear-gradient(135deg, rgba(46, 253, 103, 0.2), rgba(255, 255, 255, 0.98) 42%),
    var(--white);
}

.more-feature-preview-body .eyebrow,
.more-feature-preview-body h3,
.more-feature-preview-body p {
  margin: 0;
}

.more-feature-preview-body .eyebrow {
  color: var(--accent-pink);
}

.more-feature-preview-body h3 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.15;
}

.more-feature-preview-body p {
  color: rgba(88, 49, 162, 0.78);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.more-feature-preview-body .en {
  color: rgba(88, 49, 162, 0.58);
  font-size: clamp(12px, 1vw, 15px);
}

.more-feature-preview-body .jp {
  color: rgba(88, 49, 162, 0.72);
  font-size: clamp(12px, 1.02vw, 15px);
}

@media (max-width: 1180px) {
  .more-feature-preview {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  }

  .more-feature-preview-visual {
    min-height: clamp(320px, 34vw, 420px);
  }

  .more-feature-preview-body {
    min-width: 0;
    padding: clamp(22px, 2.4vw, 34px);
  }

  .map-tv .map-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    padding-inline: 4px;
    padding-bottom: 10px;
    scroll-padding-inline: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .map-tv .map-tabs span {
    display: none;
  }

  .map-tv .map-tabs .map-tab {
    flex: 1 1 auto;
    min-width: min(30%, 170px);
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .more-feature-preview {
    grid-template-columns: 1fr;
  }

  .more-feature-preview-visual {
    min-height: clamp(260px, 54vw, 380px);
  }
}

@media (max-width: 1080px) {
  .more-feature-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .more-feature-preview-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 801px) {
  .feature-grid:not(.feature-grid-main) {
    display: grid;
    align-items: stretch;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    min-height: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-grid:not(.feature-grid-main) .feature-card {
    display: grid;
    grid-template-rows: 104px auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
    transition:
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.38s ease,
      filter 0.38s ease,
      opacity 0.32s ease;
    will-change: transform, filter, opacity;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .media-placeholder {
    height: 104px;
    min-height: 104px;
    aspect-ratio: auto;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .media-placeholder .asset-image {
    object-fit: cover;
    object-position: center center;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .card-body {
    display: grid;
    align-content: start;
    grid-template-rows: auto;
    gap: 0;
    min-height: 0;
    overflow: visible;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .card-body h3 {
    min-height: 38px;
  }

  .feature-grid:not(.feature-grid-main)[data-hovered] .feature-card:not(.is-active) {
    filter: saturate(0.86) brightness(0.94);
    opacity: 0.82;
    transform: translateY(2px) scale(0.99);
  }

.feature-grid:not(.feature-grid-main) .feature-card.is-active,
.feature-grid:not(.feature-grid-main) .feature-card:hover {
  filter: saturate(1);
  opacity: 1;
  transform: translateY(-4px) scale(1.012);
}

.feature-grid:not(.feature-grid-main) .feature-card.is-active {
  box-shadow:
    0 0 0 2px rgba(46, 253, 103, 0.9),
    0 0 0 8px rgba(46, 253, 103, 0.22),
    0 18px 32px rgba(46, 253, 103, 0.18);
}

.feature-grid:not(.feature-grid-main) .feature-card.is-active .card-body {
  background:
    linear-gradient(180deg, rgba(46, 253, 103, 0.12), rgba(255, 255, 255, 0) 62%),
    var(--white);
}

.feature-grid:not(.feature-grid-main) .feature-card.is-active .card-body h3 {
  color: #2aa84d;
}

.feature-grid:not(.feature-grid-main) .feature-card.is-active .media-placeholder {
  box-shadow:
    inset 0 0 0 2px rgba(46, 253, 103, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.34);
}

  .feature-grid:not(.feature-grid-main) .feature-card .media-placeholder,
  .feature-grid:not(.feature-grid-main) .feature-card .card-body {
    transition:
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .media-placeholder .asset-image {
    object-fit: cover;
    object-position: center center;
  }

  .feature-grid:not(.feature-grid-main) .feature-card .card-body {
    padding-inline: 24px;
  }

  .feature-grid:not(.feature-grid-main) .feature-card.is-active .media-placeholder,
  .feature-grid:not(.feature-grid-main) .feature-card:hover .media-placeholder {
    transform: scale(1.012);
  }
}

.feature-card {
  background: var(--white);
  border: 0;
  border-radius: var(--card-radius-soft);
  overflow: hidden;
}

#game .feature-card {
  border-color: transparent;
}

.game-overview {
  position: relative;
  z-index: 3;
  width: min(100%, var(--content));
  margin: 0 auto clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
}

.game-overview-visual {
  min-height: clamp(320px, 46vw, 620px);
  border: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(180deg, #0f0f0f, #050505);
}

.game-overview-visual .asset-image {
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.03);
}

.game-overview-visual.is-flip .asset-image {
  opacity: 1;
  animation: go-sheen 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-overview-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.34) 50%, transparent 66%);
  mix-blend-mode: screen;
  opacity: 0;
}

.game-overview-visual.is-flip::before {
  animation: go-sheen-overlay 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes go-sheen {
  0% {
    filter: brightness(1.18) saturate(1.18) contrast(1.06);
    transform: scale(1.045) translateX(-1.8%);
  }
  36% {
    filter: brightness(1.06) saturate(1.08) contrast(1.02);
    transform: scale(1.015) translateX(0.8%);
  }
  100% {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.01) translateX(0);
  }
}

@keyframes go-sheen-overlay {
  0% {
    opacity: 0;
    transform: translateX(-8%);
  }
  22% {
    opacity: 0.7;
  }
  55% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: translateX(8%);
  }
}

.game-overview-visual .paint-drip {
  display: block;
  --paint-color: #2efd67;
  width: min(58%, 720px);
}

.game-overview-caption {
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3.6vw, 46px);
  display: grid;
  gap: 8px;
  color: var(--accent-deep);
  background:
    linear-gradient(90deg, rgba(46, 253, 103, 0.24), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.game-overview-caption .eyebrow {
  margin: 0;
  color: var(--accent-pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.game-overview-caption h3 {
  position: relative;
  overflow: hidden;
  margin: 0;
  font-size: clamp(24px, 2.95vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  color: #111;
  text-shadow:
    0 0 0 rgba(255, 255, 255, 0),
    0 0 14px rgba(46, 253, 103, 0.12);
}

.game-overview-caption h3::after {
  content: "";
  position: absolute;
  inset: -0.08em -0.14em;
  z-index: 1;
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0) 68%,
    transparent 82%
  );
  filter: blur(4px);
  transform: translateX(-145%) skewX(-18deg);
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: go-title-shine 4.2s linear infinite;
}

@keyframes go-title-shine {
  0% {
    transform: translateX(-145%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.7;
  }
  46% {
    transform: translateX(145%) skewX(-18deg);
    opacity: 1;
  }
  58% {
    opacity: 0;
  }
  100% {
    transform: translateX(145%) skewX(-18deg);
    opacity: 0;
  }
}

.game-overview-caption p:last-child {
  margin: 0;
  color: rgba(88, 49, 162, 0.72);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
}

.feature-grid-main {
  perspective: 1400px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid-main .feature-card {
  position: relative;
  padding-bottom: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  isolation: isolate;
  --main-card-tilt: 0deg;
  --main-card-radius: var(--card-radius-soft);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.feature-grid-main .feature-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #fff;
  border-radius: var(--main-card-radius);
  box-shadow:
    0 22px 34px rgba(35, 10, 66, 0.12),
    inset 0 -7px 0 rgba(255, 255, 255, 0.4);
  transform: perspective(1200px) rotateX(1.8deg) rotateZ(var(--main-card-tilt));
  transition:
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.35s ease;
}

.feature-grid-main .feature-card::after {
  content: none;
}

.feature-grid-main .feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-grid-main .feature-card:nth-child(1) {
  --main-card-tilt: -0.55deg;
  --main-card-radius: 24px 20px 30px 32px / 18px 18px 38px 36px;
}

.feature-grid-main .feature-card:nth-child(2) {
  --main-card-tilt: 0deg;
  --main-card-radius: 22px 22px 32px 32px / 18px 18px 40px 40px;
}

.feature-grid-main .feature-card:nth-child(3) {
  --main-card-tilt: 0.55deg;
  --main-card-radius: 20px 24px 32px 30px / 18px 18px 36px 38px;
}

.feature-grid-main .feature-card .media-placeholder {
  border: 0;
  border-radius: 18px 18px 14px 14px / 16px 16px 12px 12px;
}

.feature-grid-main .feature-card .card-body {
  padding: 26px 28px 28px;
  background: transparent;
}

.feature-grid-main .feature-card .card-body h3 {
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.22;
}

.feature-grid-main .feature-card .card-body p {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 800;
  line-height: 1.65;
}

.feature-grid-main .feature-card .card-body .en {
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
}

.feature-grid-main .feature-card:hover {
  box-shadow: none;
}

.feature-grid-main .feature-card:hover::before {
  box-shadow:
    0 30px 42px rgba(35, 10, 66, 0.16),
    inset 0 -7px 0 rgba(255, 255, 255, 0.42);
  transform: perspective(1200px) rotateX(1.8deg) rotateZ(var(--main-card-tilt)) translateY(-3px);
}

.feature-grid-main .feature-card:hover::after {
  transform: none;
  filter: none;
}

.feature-grid-main .feature-card:nth-child(1) .paint-drip {
  --paint-color: #ff0090;
}

.feature-grid-main .feature-card:nth-child(2) .paint-drip {
  --paint-color: #2efd67;
}

.feature-grid-main .feature-card:nth-child(3) .paint-drip {
  --paint-color: #5831a2;
}

.feature-grid-main .feature-card .card-body h3 {
  color: var(--accent-deep);
}

.feature-grid:not(.feature-grid-main) .feature-card:nth-child(1) .card-body h3 {
  color: var(--accent-pink);
}

.feature-grid:not(.feature-grid-main) .feature-card:nth-child(2) .card-body h3 {
  color: var(--accent-green);
}

.feature-grid:not(.feature-grid-main) .feature-card:nth-child(3) .card-body h3 {
  color: var(--accent-violet);
}

.feature-grid:not(.feature-grid-main) .feature-card:nth-child(4) .card-body h3 {
  color: var(--accent-purple);
}

.js-ready .feature-grid-main.feature-sequence-ready .feature-card {
  opacity: 0;
  filter: blur(18px);
}

.js-ready .feature-grid-main.feature-sequence-ready .feature-card:nth-child(1) {
  transform: translate3d(-90px, 28px, 0) rotate(-9deg) scale(0.88);
}

.js-ready .feature-grid-main.feature-sequence-ready .feature-card:nth-child(2) {
  transform: translate3d(0, 64px, 0) rotate(-2deg) scale(0.82);
}

.js-ready .feature-grid-main.feature-sequence-ready .feature-card:nth-child(3) {
  transform: translate3d(90px, 28px, 0) rotate(9deg) scale(0.88);
}

.feature-grid-main.feature-sequence-ready.is-visible .feature-card:nth-child(1) {
  animation: feature-slam-left 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-grid-main.feature-sequence-ready.is-visible .feature-card:nth-child(2) {
  animation: feature-slam-center 0.76s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.feature-grid-main.feature-sequence-ready.is-visible .feature-card:nth-child(3) {
  animation: feature-slam-right 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.feature-card:hover,
.platform-grid > div:hover,
.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.1);
}

.artist-card:hover {
  transform: none;
  box-shadow: none;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
}

.card-body h3 i {
  margin-right: 10px;
  display: inline-block;
  color: currentColor;
  background: transparent;
  font-size: 0.82em;
  font-weight: 900;
  font-style: normal;
  vertical-align: middle;
}

.card-body p {
  margin: 0;
  font-size: 14px;
}

.en {
  color: var(--accent-deep);
}

.artist-list {
  border-top: 0;
}

.artist-member-list > .artist-card:last-child {
  border-bottom: 0;
}

.artist-group-heading {
  margin: clamp(44px, 6vw, 78px) 0 clamp(18px, 2.6vw, 30px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--accent-deep);
  display: grid;
  justify-items: center;
  text-align: center;
}

.artist-group-heading + .artist-guest-list {
  margin-top: clamp(40px, 4.8vw, 62px);
}

.artist-group-heading h3 {
  margin: 0;
  color: var(--accent-pink);
  font-size: clamp(27px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.artist-group-heading span {
  color: var(--accent-pink);
  font-weight: 900;
}

.artist-guest-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 24px);
}

.artist-list .artist-card.artist-guest-card {
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  gap: 14px;
  border-bottom: 0;
  text-align: center;
}

.artist-list .artist-card.artist-guest-card .artist-photo {
  max-width: min(100%, 280px);
  width: min(100%, 280px);
  justify-self: center;
}

.artist-list .artist-card.artist-guest-card .artist-info {
  max-width: none;
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.artist-list .artist-card.artist-guest-card .artist-info h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.artist-list .artist-card.artist-guest-card .artist-info > p {
  max-width: none;
  margin-inline: auto;
  font-size: 13px;
  line-height: 1.55;
}

@media (min-width: 1181px) {
  .artist-list .artist-card.artist-guest-card .artist-info > p:last-of-type {
    min-height: 8.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.artist-list .artist-card.artist-guest-card .text-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 2px;
  font-size: 12px;
}

.artist-list .artist-card.artist-guest-card .eyebrow {
  font-size: 10px;
}

.artist-guest-list .artist-guest-card:last-child .artist-photo {
  max-width: min(100%, 280px);
}

.artist-guest-list .artist-guest-card:last-child .artist-info h3 {
  color: var(--accent-deep);
}

@media (max-width: 1180px) {
  .artist-guest-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-guest-list .artist-guest-card:last-child {
    grid-column: 1 / -1;
    max-width: min(100%, 320px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .artist-guest-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .artist-guest-list .artist-guest-card,
  .artist-guest-list .artist-guest-card:last-child {
    grid-column: auto;
    max-width: min(100%, 320px);
    justify-self: center;
  }
}

.artist-list .artist-card:nth-of-type(1) .artist-info h3 {
  color: var(--accent-pink);
}

.artist-list .artist-card:nth-of-type(2) .artist-info h3 {
  color: var(--accent-green);
}

.artist-list .artist-card:nth-of-type(3) .artist-info h3 {
  color: var(--accent-violet);
}

.artist-card {
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(180px, 30%) 1fr;
  gap: clamp(30px, 5vw, 76px);
  border-radius: 0;
  border-bottom: 1px solid var(--accent-deep);
  box-shadow: none;
  transition: none;
}

.artist-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--card-radius-soft);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    filter 0.34s ease;
}

.artist-photo:hover,
.gallery > div:hover {
  filter: saturate(1.04);
}

.artist-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(35, 10, 66, 0.16);
}

.gallery > div:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 26px rgba(35, 10, 66, 0.12),
    0 4px 10px rgba(35, 10, 66, 0.08);
}

.artist-info {
  align-self: center;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artist-info h3 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.artist-name-ja {
  display: block;
}

.artist-name-en {
  display: block;
  margin-top: 0.18em;
  font-size: 0.42em;
  line-height: 1;
  letter-spacing: 0.08em;
}

.artist-info > p {
  margin: 0;
  max-width: 670px;
}

.affiliation {
  margin: 0;
  color: var(--accent-deep);
  font-weight: 700;
}

.text-links {
  margin-top: 4px;
  display: flex;
  gap: 26px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
}

.artist-info .eyebrow {
  margin: 0;
}

/* メンバーの一言コメント（名前の後ろのバッジ + 吹き出し） */
.artist-comment {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: fit-content;
  margin: 0 0 0 12px;
}

.comment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent-violet);
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(88, 49, 162, 0.3);
  animation: comment-badge-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.comment-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.comment-badge:hover,
.comment-badge:focus-visible {
  background: var(--accent-pink);
  transform: translateY(-2px) scale(1.06);
}

@keyframes comment-badge-pulse {
  0%,
  100% {
    box-shadow: 0 4px 10px rgba(88, 49, 162, 0.3), 0 0 0 0 rgba(145, 62, 216, 0.5);
  }
  50% {
    box-shadow: 0 4px 10px rgba(88, 49, 162, 0.3), 0 0 0 8px rgba(145, 62, 216, 0);
  }
}

.comment-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  z-index: 9999;
  width: max-content;
  max-width: min(320px, 76vw);
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  background: #fff;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: left;
  white-space: normal;
  border: 2px solid var(--accent-violet);
  box-shadow: 0 14px 30px rgba(35, 10, 66, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.comment-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: var(--accent-violet);
}

.artist-comment:hover .comment-bubble,
.artist-comment:focus-within .comment-bubble,
.artist-comment.is-open .comment-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ゲスト（中央寄せ）カードの吹き出しはバッジ中心から開き、
   JS の --bubble-x でビューポート内に収める（矢印はバッジを指したまま） */
.artist-guest-card .comment-bubble {
  max-width: min(286px, 82vw);
  padding: 12px 13px;
  font-size: 12px;
  line-height: 1.56;
  transform: translate(calc(-50% + var(--bubble-x, 0px)), 6px);
}

.artist-guest-card .artist-comment {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
}

.artist-guest-card .artist-comment:hover .comment-bubble,
.artist-guest-card .artist-comment:focus-within .comment-bubble,
.artist-guest-card .artist-comment.is-open .comment-bubble {
  transform: translate(calc(-50% + var(--bubble-x, 0px)), 0);
}

.artist-guest-card .comment-bubble::after {
  left: calc(50% - var(--bubble-x, 0px));
  margin-left: -8px;
}

@media (prefers-reduced-motion: reduce) {
  .comment-badge {
    animation: none;
  }
}

.emil-card {
  grid-template-rows: auto auto;
}

.gallery {
  grid-column: 1 / -1;
  margin-block: -10px -22px;
  padding: 16px 0 38px;
  display: grid;
  grid-auto-columns: minmax(260px, 30%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: visible;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery > div {
  aspect-ratio: 4 / 3;
  pointer-events: auto;
  border-radius: var(--card-radius-soft);
  box-shadow: 0 10px 20px rgba(35, 10, 66, 0);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    filter 0.34s ease;
}

.section-dark {
  color: var(--white);
  background: #5831a2;
}

.section-dark .section-heading {
  border-color: rgba(255, 255, 255, 0.36);
}

.step-overview {
  position: sticky;
  z-index: 10;
  top: 76px;
  margin-bottom: clamp(88px, 7vw, 116px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(28, 10, 76, 0.78);
  border-radius: 22px 22px 22px 22px / 18px 18px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.step-overview a {
  min-height: 96px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.step-overview a:last-child {
  border-right: 0;
}

.step-overview a.is-active {
  color: #111;
  background: #2efd67;
}

.step-overview a:hover {
  color: #111;
  background: var(--accent-green);
}

.step-overview b {
  font-size: 12px;
}

.step-overview span {
  line-height: 1.25;
  font-weight: 800;
}

.step-overview small {
  color: rgba(226, 255, 236, 0.9);
  font-weight: 400;
}

.step-overview a:hover small,
.step-overview a.is-active small {
  color: rgba(17, 17, 17, 0.72);
}

.step-list {
  display: grid;
  gap: 36px;
}

.step-card {
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.step-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-card > .media-placeholder {
  width: 100%;
  height: clamp(250px, 29vw, 390px);
  min-height: clamp(250px, 29vw, 390px);
  aspect-ratio: auto;
  align-self: start;
  justify-self: stretch;
  border-radius: var(--card-radius-soft);
}

.step-card > div:last-child {
  padding-right: 5%;
  min-height: clamp(250px, 29vw, 390px);
  min-width: 0;
  display: grid;
  align-content: center;
}

.step-number {
  margin: 0 0 12px;
  color: #2efd67;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  font-synthesis: none;
}

.step-card h3 {
  margin: 0;
  color: #fff;
  display: grid;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.95vw, 42px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  font-synthesis: none;
  font-variation-settings: "wght" 900;
}

.step-card h3 span {
  display: block;
}

.step-card h3 .step-title-ja {
  margin: 6px 0 4px;
}

.step-card h3 .step-title-en {
  margin: 0 0 24px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 0.94;
  letter-spacing: inherit;
  font-variation-settings: inherit;
  font-synthesis: inherit;
}

#step-1 h3 {
  color: #fff;
}

#step-1 h3 span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.section-dark .step-card h3 span {
  color: inherit;
}

.step-card p {
  margin: 4px 0;
}

.step-card p.en {
  margin-bottom: 12px;
}

.section-dark .step-card p,
.section-dark .step-card .en {
  color: rgba(255, 255, 255, 0.9);
}

.step-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.step-actions .button {
  border-radius: 999px;
  border: 1px solid rgba(46, 253, 103, 0.34);
  background: transparent;
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
}

.step-actions .button:hover {
  color: #111;
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.step-actions .button:hover {
  color: var(--accent-deep);
}

.island-code-inline {
  width: min(100%, 560px);
  max-width: 100%;
  margin: 10px 0 18px;
  padding: 10px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  position: relative;
}

.island-code-inline strong {
  width: 100%;
  font-size: clamp(16px, 2.2vw, 24px);
  font-family: inherit;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.island-code-inline .button-light {
  min-height: 36px;
  padding-inline: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 253, 103, 0.34);
  flex: 0 0 auto;
}

.island-code-copy {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46, 253, 103, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.island-code-copy:hover {
  color: #111;
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.island-code-copy svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.step-card #island-code {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.island-code-inline .button-light:hover {
  color: #111;
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.platform-summary {
  margin: 0 auto;
  margin-top: clamp(24px, 4vw, 58px);
  max-width: 720px;
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--accent-green);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.platform-summary p {
  margin: 0;
  line-height: 1.5;
}

.platform-cat {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(46, 253, 103, 0.16);
  color: var(--accent-green);
  font-size: 0.78em;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0;
}

.platform-card {
  min-height: 0;
  padding: 3px 1px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  text-align: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.platform-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.platform-icon svg {
  width: 42px;
  height: 42px;
  color: var(--accent-green);
  fill: currentColor;
}

.platform-name {
  max-width: 9ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-list {
  border-top: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--accent-deep);
}

.faq-list summary {
  position: relative;
  padding: 26px 64px 26px 0;
  display: grid;
  gap: 3px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 800;
}

.faq-list summary small,
.faq-answer p:last-child {
  color: var(--accent-deep);
}

.faq-answer {
  max-width: 780px;
  padding: 0 64px 30px 0;
}

.faq-answer p {
  margin: 4px 0;
}

.faq-button-row {
  margin-top: 12px;
}

.faq-guidelines-button {
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.faq-guidelines-button .button-arrow {
  font-size: 0.9em;
  line-height: 1;
}

.faq-note {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--accent-deep);
}

.faq-note a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 2px;
}

.faq-note a:hover {
  text-decoration-thickness: 3px;
}

.logo-showcase {
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.05), transparent 36%),
    var(--white);
}

.logo-intro {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(16px, 1.6vw, 22px);
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.logo-card {
  width: min(300px, 80vw);
  min-height: 150px;
  padding: 20px;
  border-radius: var(--card-radius-soft);
}

.site-footer {
  padding: clamp(42px, 5vw, 72px) var(--content-padding) 18px;
  color: var(--white);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 34%),
    #5831a2;
}

.site-footer .wordmark {
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  text-align: center;
}

.footer-top p {
  margin: 0;
}

.footer-top > .wordmark {
  flex: 0 0 100%;
  margin-bottom: 2px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.footer-meta p,
.footer-meta a,
.footer-links a {
  margin: 0;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 16px auto 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  align-items: start;
  gap: 12px;
  color: #aaa;
  font-size: 12px;
  text-align: center;
  line-height: 1.65;
}

.footer-bottom p {
  margin: 0;
  max-width: 100%;
}

.follow-widget {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  overflow: visible;
  isolation: isolate;
  width: min(258px, calc(100vw - 40px));
  padding: 14px 18px 14px 18px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 22px;
}

.follow-widget::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: #1c1c22;
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.follow-widget > :not(.follow-widget-record) {
  position: relative;
  z-index: 3;
}

.follow-widget-record {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  right: auto;
  width: 48%;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  transform: translate(-50%, -58%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.follow-widget-record.asset-slot.is-loaded {
  background: transparent;
  border-color: transparent;
}

.follow-widget-record > [data-asset-label] {
  display: none;
}

.follow-widget-record .asset-image {
  object-fit: contain;
  object-position: center;
  animation: follow-record-spin 15s linear infinite;
}

.follow-widget span,
.follow-widget a {
  display: block;
  line-height: 1.2;
}

.follow-widget span {
  color: var(--accent-green);
  font-size: 11px;
  margin: 0 0 4px;
}

.follow-widget a {
  font-weight: 800;
  font-size: 0;
}

.follow-widget a::before {
  content: "@alche_studio ↗";
  font-size: 18px;
  line-height: 1.2;
}

.follow-widget-player {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 22px;
  background: #1c1c22;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.follow-widget-track {
  overflow: hidden;
  display: grid;
  gap: 6px;
  padding: 8px 10px 7px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  justify-items: center;
  width: 100%;
  box-sizing: border-box;
}

.follow-widget-track-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  justify-self: center;
}

.follow-widget-track-credits {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.follow-widget-track-credits-marquee {
  display: inline-flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  color: var(--accent-green);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  animation: follow-track-credits-marquee 14s linear infinite;
  will-change: transform;
}

.follow-widget-track-credits span {
  flex: 0 0 auto;
  color: inherit;
}

@keyframes follow-track-credits-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.follow-widget-toggle {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding-inline: 16px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.follow-widget-toggle:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
}

.widget-close {
  display: none;
}

.follow-widget a::before {
  content: "@alche_studio ↗";
}

@keyframes follow-record-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 視界外のセクションは装飾アニメ（スキャンライン/CRT 等）を停止して GPU 負荷を抑える */
.js-ready .anim-paused,
.js-ready .anim-paused *,
.js-ready .anim-paused *::before,
.js-ready .anim-paused *::after {
  animation-play-state: paused !important;
}

.js-ready .reveal-up {
  opacity: 0;
  filter: blur(var(--reveal-blur, 8px));
  transform: translate3d(0, var(--reveal-offset, 28px), 0) scale(var(--reveal-scale, 0.978));
}

.catchcopy p.reveal-up {
  --reveal-opacity-duration: 0.72s;
  --reveal-transform-duration: 0.9s;
  --reveal-filter-duration: 0.72s;
  --reveal-offset: 38px;
  --reveal-blur: 10px;
}

.catchcopy .catch-large.reveal-up {
  --reveal-opacity-duration: 0.84s;
  --reveal-transform-duration: 1.04s;
  --reveal-filter-duration: 0.84s;
  --reveal-offset: 44px;
  --reveal-blur: 12px;
}

.hero-code-band.reveal-up {
  --reveal-opacity-duration: 0.64s;
  --reveal-transform-duration: 0.82s;
  --reveal-filter-duration: 0.64s;
  --reveal-offset: 42px;
  --reveal-blur: 10px;
}

.scramble-fragment {
  display: inline-block;
  white-space: pre;
  transition:
    color 0.18s ease,
    text-shadow 0.18s ease,
    filter 0.18s ease;
}

.scramble-fragment.is-scrambling {
  color: #f6fbff;
  text-shadow:
    -0.05em 0 0 rgba(0, 234, 255, 0.72),
    0.05em 0 0 rgba(255, 38, 120, 0.62);
  filter: saturate(1.3);
}

.js-ready .reveal-up.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--reveal-opacity-duration, 0.56s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-transform-duration, 0.68s) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--reveal-filter-duration, 0.56s) ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
  transition-delay: var(--delay, 0s);
}

.js-ready .reveal-right {
  opacity: 0;
  filter: blur(var(--reveal-blur, 6px));
  transform: translate3d(var(--reveal-offset-x, 56px), 0, 0) scale(var(--reveal-scale, 0.96));
}

.js-ready .reveal-right.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--reveal-opacity-duration, 0.42s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-transform-duration, 0.72s) cubic-bezier(0.34, 1.56, 0.64, 1),
    filter var(--reveal-filter-duration, 0.42s) ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
  transition-delay: var(--delay, 0s);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes catch-glitch-shift {
  0%,
  100% {
    filter: none;
    transform: translate3d(0, 0, 0) skewX(0deg);
    text-shadow:
      -0.035em 0 0 rgba(46, 253, 103, 0.82),
      0.035em 0 0 rgba(255, 0, 144, 0.78);
  }

  6% {
    filter: saturate(1.18);
    transform: translate3d(-2px, 0, 0) skewX(-3deg);
    text-shadow:
      -0.07em 0 0 rgba(46, 253, 103, 0.96),
      0.08em 0 0 rgba(255, 0, 144, 0.86);
  }

  8% {
    transform: translate3d(2px, 0, 0) skewX(2deg);
  }

  10% {
    filter: none;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  28% {
    filter: contrast(1.08) saturate(1.12);
    transform: translate3d(1px, 0, 0) skewX(1deg);
    text-shadow:
      -0.055em 0 0 rgba(46, 253, 103, 0.92),
      0.06em 0 0 rgba(255, 0, 144, 0.82);
  }

  30% {
    transform: translate3d(-1px, 0, 0) skewX(-1deg);
  }

  32% {
    filter: none;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  62% {
    filter: saturate(1.14);
    transform: translate3d(-1px, 0, 0) skewX(-2deg);
    text-shadow:
      -0.06em 0 0 rgba(46, 253, 103, 0.94),
      0.075em 0 0 rgba(255, 0, 144, 0.88);
  }

  65% {
    transform: translate3d(1px, 0, 0) skewX(2deg);
  }

  68% {
    filter: none;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes hero-keyvisual-glitch {
  0% {
    filter: hue-rotate(0deg) saturate(1) contrast(1);
    transform: translate3d(0, 0, 0) scale(1);
  }

  10% {
    filter: hue-rotate(74deg) saturate(1.85) contrast(1.32);
    transform: translate3d(-16px, 2px, 0) scale(1.03);
  }

  18% {
    filter: hue-rotate(-52deg) saturate(2) contrast(1.38);
    transform: translate3d(14px, -5px, 0) scale(1.045);
  }

  30% {
    filter: hue-rotate(28deg) saturate(1.65) contrast(1.2);
    transform: translate3d(-10px, 4px, 0) scale(1.025);
  }

  46% {
    filter: hue-rotate(-22deg) saturate(1.35) contrast(1.12);
    transform: translate3d(6px, -2px, 0) scale(1.016);
  }

  100% {
    filter: hue-rotate(0deg) saturate(1) contrast(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-glitch-flicker {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  14%,
  24%,
  36%,
  44%,
  58%,
  66% {
    opacity: 1;
  }

  18%,
  32%,
  48%,
  62% {
    opacity: 0.35;
  }
}

@keyframes hero-glitch-slice-a {
  0% {
    opacity: 0;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  16% {
    opacity: 0.96;
    background-position: 24px 0, 0 0;
    transform: translate3d(26px, -6px, 0) skewX(-8deg);
  }

  28% {
    opacity: 0.82;
    background-position: -18px 12px, 0 0;
    transform: translate3d(-18px, 8px, 0) skewX(6deg);
  }

  46% {
    opacity: 0.56;
    background-position: 16px -8px, 0 0;
    transform: translate3d(12px, -4px, 0) skewX(-4deg);
  }

  100% {
    opacity: 0;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes hero-glitch-slice-b {
  0% {
    opacity: 0;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  12% {
    opacity: 0.78;
    background-position: -20px 0, 0 0;
    transform: translate3d(-22px, 4px, 0) skewX(7deg);
  }

  24% {
    opacity: 0.88;
    background-position: 18px -10px, 0 0;
    transform: translate3d(18px, -7px, 0) skewX(-9deg);
  }

  40% {
    opacity: 0.45;
    background-position: -12px 10px, 0 0;
    transform: translate3d(-10px, 6px, 0) skewX(4deg);
  }

  100% {
    opacity: 0;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes hero-stamp {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-38px) scale(1.42) rotate(-6deg);
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(6px) scale(0.94) rotate(1deg);
  }

  78% {
    transform: translateY(-3px) scale(1.03) rotate(-0.5deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes hero-logo-ghost {
  0% {
    opacity: 0;
  }

  28% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hero-subtitle-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes map-bg-refresh {
  0% {
    filter: blur(26px) saturate(1.2) brightness(0.58);
    transform: scale(1.12) translateY(-4px);
  }

  35% {
    filter: blur(10px) saturate(1.05) brightness(0.68);
    transform: scale(1.09) translateY(2px);
  }

  100% {
    filter: blur(10px) saturate(0.95) brightness(0.7);
    transform: scale(1.08) translateY(0);
  }
}

@keyframes map-bg-scan {
  0% {
    opacity: 0.52;
    transform: translateY(-14px);
  }

  40% {
    opacity: 0.4;
    transform: translateY(8px);
  }

  100% {
    opacity: 0.32;
    transform: translateY(0);
  }
}

@keyframes map-crt-idle {
  0% {
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.42;
  }

  50% {
    background-position: 0 -10px, 0 -6px, 0 0;
    opacity: 0.5;
  }

  100% {
    background-position: 0 -20px, 0 -12px, 0 0;
    opacity: 0.42;
  }
}

@keyframes map-crt-sweep {
  0% {
    background-position: 0 0, 0 170%;
  }

  38% {
    background-position: 0 0, 0 170%;
  }

  58% {
    background-position: 0 0, 0 -110%;
  }

  100% {
    background-position: 0 0, 0 -110%;
  }
}

@keyframes map-visual-glitch {
  0% {
    filter: hue-rotate(0deg) saturate(1) contrast(1);
    transform: translate3d(calc(var(--map-parallax-x) * -1), calc(var(--map-parallax-y) * -1), 0) scale(1.08);
  }

  16% {
    filter: hue-rotate(78deg) saturate(1.9) contrast(1.35);
    transform: translate3d(calc(var(--map-parallax-x) * -1 - 14px), calc(var(--map-parallax-y) * -1 + 3px), 0)
      scale(1.12);
  }

  32% {
    filter: hue-rotate(-56deg) saturate(2.05) contrast(1.42);
    transform: translate3d(calc(var(--map-parallax-x) * -1 + 12px), calc(var(--map-parallax-y) * -1 - 6px), 0)
      scale(1.1);
  }

  54% {
    filter: hue-rotate(22deg) saturate(1.5) contrast(1.18);
    transform: translate3d(calc(var(--map-parallax-x) * -1 - 7px), calc(var(--map-parallax-y) * -1 + 2px), 0)
      scale(1.095);
  }

  100% {
    filter: none;
    transform: translate3d(calc(var(--map-parallax-x) * -1), calc(var(--map-parallax-y) * -1), 0) scale(1.08);
  }
}

@keyframes map-visual-blocks {
  0% {
    opacity: 0;
    background-position: 0 0;
    transform: translate3d(0, 0, 0);
  }

  18% {
    opacity: 0.82;
    background-position: 36px 0;
    transform: translate3d(16px, -3px, 0);
  }

  34% {
    opacity: 0.94;
    background-position: -28px 8px;
    transform: translate3d(-12px, 5px, 0);
  }

  56% {
    opacity: 0.52;
    background-position: 20px -10px;
    transform: translate3d(8px, -4px, 0);
  }

  100% {
    opacity: 0;
    background-position: 0 0;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes map-visual-scan {
  0% {
    opacity: 0;
    transform: translateY(-14px);
  }

  22% {
    opacity: 0.58;
    transform: translateY(9px);
  }

  42% {
    opacity: 0.4;
    transform: translateY(-5px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes map-ui-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  14% {
    transform: translate3d(-8px, 1px, 0);
  }

  28% {
    transform: translate3d(9px, -2px, 0);
  }

  44% {
    transform: translate3d(-6px, 2px, 0);
  }

  60% {
    transform: translate3d(5px, -1px, 0);
  }

  76% {
    transform: translate3d(-3px, 1px, 0);
  }
}

@keyframes map-title-burst-left {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(50%) scaleX(0.94);
  }

  18% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(50%) scaleX(1);
  }

  100% {
    opacity: 0;
    filter: blur(7px);
    transform: translateX(-18%) scaleX(1.02);
  }
}

@keyframes map-title-burst-right {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50%) scaleX(0.94);
  }

  18% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    opacity: 0;
    filter: blur(7px);
    transform: translateX(18%) scaleX(1.02);
  }
}

@keyframes game-poken-sway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.8deg);
  }

  50% {
    transform: translate3d(8px, 0, 0) rotate(1.8deg);
  }
}

@keyframes game-poken-tilt-left {
  0%,
  100% {
    transform: perspective(1200px) rotate(-4.6deg);
  }

  50% {
    transform: perspective(1200px) rotate(4.6deg);
  }
}

@keyframes feature-slam-left {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(-90px, 28px, 0) rotate(-9deg) scale(0.88);
  }

  68% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(8px, -8px, 0) rotate(2deg) scale(1.04);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes feature-slam-center {
  0% {
    opacity: 0;
    filter: blur(22px);
    transform: translate3d(0, 64px, 0) rotate(-2deg) scale(0.82);
  }

  60% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -12px, 0) rotate(1deg) scale(1.06);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes feature-slam-right {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(90px, 28px, 0) rotate(9deg) scale(0.88);
  }

  68% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-8px, -8px, 0) rotate(-2deg) scale(1.04);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes nudge-down {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, -18px, 0) scale(1.06);
  }
}

@keyframes map-breathe {
  0%,
  100% {
    transform: translate3d(calc(var(--map-parallax-x) * -1), calc(var(--map-parallax-y) * -1), 0)
      scale(1.08);
  }

  50% {
    transform: translate3d(calc(var(--map-parallax-x) * -1), calc(var(--map-parallax-y) * -1), 0)
      scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-visual.is-loaded .asset-image {
    animation: none;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .map-section.is-switching,
  .map-visual.is-switching .asset-image,
  .map-visual.is-switching::before,
  .map-visual.is-switching::after,
  .map-visual.is-title-burst .map-burst-text,
  .game-poken-float,
  .map-section-background.is-refreshing .asset-image,
  .map-section-background::before,
  .map-section-background.is-refreshing::after,
  .map-section-background::after,
  .catch-glitch {
    animation: none;
  }

  .hero-logo,
  .hero-copy p,
  .hero-intro-active .asset-image,
  .hero-intro-active .placeholder-label,
  .hero-intro-active .hero-glitch,
  .hero-intro-active .hero-glitch::before,
  .hero-intro-active .hero-glitch::after {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }

}

@media (max-width: 1440px) {
  :root {
    --gutter: clamp(18px, 2.8vw, 44px);
  }

  .header-inner {
    gap: clamp(20px, 3vw, 48px);
  }

  .section {
    padding-block: clamp(64px, 8vw, 120px);
  }

  .pv {
    padding-block: clamp(64px, 8vw, 120px);
  }

  .pv-stage-wrap {
    width: min(100%, 1040px);
    margin-top: clamp(22px, 3vw, 40px);
  }

  .pv-heading h2 {
    font-size: clamp(24px, 2.6vw, 38px);
  }

  .pv-stage {
    width: min(100%, 1040px);
  }

  .pv-description {
    width: min(100%, 1040px);
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.65;
  }

  .pv + .map-section {
    padding-top: clamp(88px, 10vw, 148px);
  }

  .map-section {
    padding-bottom: clamp(240px, 18vw, 300px);
  }

  .map-section .section-heading {
    margin-bottom: clamp(60px, 6vw, 84px);
  }

  .map-section .map-intro {
    max-width: min(100%, 760px);
  }

  .map-tab {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 70svh;
    aspect-ratio: auto;
  }

  .hero-actions {
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    margin-top: -14px;
  }

  .game-poken {
    display: none;
  }

  .game-overview {
    border-radius: 18px;
  }

  .game-overview-visual {
    min-height: clamp(220px, 60vw, 420px);
  }

  .more-feature-preview {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }

  .more-feature-preview-visual {
    min-height: clamp(200px, 56vw, 360px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid:not(.feature-grid-main) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-card {
    grid-template-columns: 1fr;
  }

  .artist-photo {
    max-width: 360px;
  }

  .gallery {
    grid-auto-columns: 78%;
  }

  .step-overview {
    top: 68px;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card > .media-placeholder,
  .step-card > div:last-child {
    min-height: 0;
    height: auto;
  }

  .step-card > .media-placeholder {
    aspect-ratio: 16 / 9;
  }

  .map-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .map-section .section-heading {
    margin-bottom: clamp(32px, 5vw, 44px);
  }

  .map-tv {
    margin-top: 0;
  }

  .map-tv .map-tabs {
    margin-bottom: clamp(32px, 5vw, 44px);
  }

  .map-design-card {
    top: clamp(-10px, -0.8vw, -4px);
    width: clamp(150px, 38vw, 220px);
  }

  .platform-grid {
    grid-template-columns: repeat(9, minmax(54px, 1fr));
    overflow-x: auto;
    gap: 0;
    padding-bottom: 4px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 16px;
  }

  .footer-bottom {
    max-width: 48ch;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .follow-widget {
    display: none;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 66px;
  }

  .header-inner > .button {
    min-height: 38px;
    padding: 7px 14px;
  }

  .hero-logo {
    width: min(84vw, 540px);
    min-width: 0;
    aspect-ratio: 4.6 / 1;
    height: auto;
  }

  .hero-logo[data-logo-shape="square"] {
    width: min(72vw, 420px);
    max-width: 72vw;
    aspect-ratio: 1 / 1;
  }

  .hero-copy {
    margin-top: -8px;
  }

  .hero-code {
    margin-top: 0;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-code-main {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto minmax(40px, 1fr);
    justify-content: space-between;
    gap: 10px;
  }

  .hero-code strong {
    font-size: clamp(18px, 6vw, 28px);
  }

  .hero-code-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-code .button,
  .hero-scroll {
    width: 100%;
    justify-content: center;
  }

  .hero-code .icon-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    aspect-ratio: 1;
  }

  .hero-code .hero-play-button {
    width: auto;
  }

  .catchcopy {
    gap: 46px;
  }

  .catchcopy-insert {
    width: min(100%, 760px);
    min-height: clamp(180px, 36vw, 300px);
  }

  .catch-large {
    padding:
      clamp(168px, 30vw, 230px)
      clamp(10px, 2vw, 16px)
      0;
  }

  .map-caption p:last-child {
    font-size: 12px;
  }

  .map-visual {
    min-height: 440px;
    aspect-ratio: auto;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 span {
    display: block;
    margin-top: 6px;
    font-size: 0.55em;
  }

  .island-code-inline {
    width: 100%;
    align-items: center;
    padding-inline: 62px;
  }

  .island-code-inline strong {
    font-size: clamp(18px, 6vw, 28px);
  }

  .island-code-copy {
    width: 40px;
    min-width: 40px;
    right: 10px;
  }

  .island-code-copy svg {
    width: 22px;
    height: 22px;
  }

  .platform-grid {
    grid-template-columns: repeat(9, minmax(52px, 1fr));
    gap: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .platform-card {
    padding: 3px 1px;
    gap: 2px;
  }

  .platform-icon {
    width: 38px;
    height: 38px;
  }

  .platform-icon svg {
    width: 34px;
    height: 34px;
  }

  .platform-name {
    font-size: 9px;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   スマホ最適化（中央寄せ / 見出し拡大 / 折りたたみ紹介文 /
   横スクロールの見切れ対策 / 安全パディング）
   ========================================================= */
@media (max-width: 640px) {
  :root {
    --gutter: clamp(18px, 5.4vw, 26px);
  }

  /* --- 見出しを中央寄せ＆相対的に拡大 --- */
  .section-heading {
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    gap: 6px;
  }

  .section-heading > p,
  .section-heading .map-intro,
  .map-intro {
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(31px, 8.8vw, 46px);
    padding-bottom: 12px;
  }

  .section-heading h2 span {
    display: block;
    margin-top: 6px;
    font-size: 0.56em;
  }

  /* --- サブ見出し「アーティスト / Artist」も中央寄せ＆拡大 --- */
  .artist-group-heading {
    text-align: center;
  }

  .artist-group-heading h3 {
    font-size: clamp(16px, 4.6vw, 22px);
  }

  /* --- メンバー／アーティストカードを中央寄せ、写真も中央に --- */
  .artist-card {
    justify-items: center;
    text-align: center;
  }

  .artist-card .artist-photo {
    max-width: 320px;
    margin-inline: auto;
  }

  .artist-info {
    justify-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .artist-info .text-links {
    justify-content: center;
  }

  /* Emil のギャラリーも横スクロールを見やすく */
  .emil-card .gallery {
    justify-content: start;
  }

  /* --- スマホではコメント吹き出し（バッジ）を非表示 --- */
  .artist-comment {
    display: none;
  }

  /* --- 紹介文を数行で折りたたみ、タップで展開 --- */
  .artist-info > p.is-clampable {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* デスクトップ用の min-height 対策（この幅では効かないが念のため） */
    min-height: 0;
  }

  .artist-info > p.is-clampable.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .read-more-toggle {
    margin-top: 8px;
    padding: 2px 4px;
    border: 0;
    background: none;
    color: var(--accent-deep);
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .section-dark .read-more-toggle,
  #artists .read-more-toggle {
    color: var(--accent-violet);
  }

  .artist-list .artist-card:nth-of-type(2) .read-more-toggle {
    color: var(--accent-green);
  }

  /* --- 横スクロール領域（Map タブ / 遊び方ステップ）の見切れ対策 ---
     ※ .map-tv .map-tabs が overflow:visible を指定しているため、
        同等の詳細度でスクロール可能に上書きする（これがないとタブが
        見切れたまま横スクロールできず、ZoneC 以降に到達できない）。 */
  .map-tv .map-tabs,
  .step-overview {
    overflow-x: auto;
    overflow-y: hidden;
    --edge-l: 0px;
    --edge-r: 0px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 var(--edge-l),
      #000 calc(100% - var(--edge-r)),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 var(--edge-l),
      #000 calc(100% - var(--edge-r)),
      transparent 100%
    );
  }

  .map-tv .map-tabs {
    scroll-padding-inline: 4px;
  }

  .map-tabs::-webkit-scrollbar,
  .step-overview::-webkit-scrollbar {
    display: none;
  }

  .map-tab,
  .step-overview a {
    scroll-snap-align: start;
  }

  .map-tv .map-tabs {
    gap: 8px;
    min-width: 0;
  }

  .map-tv .map-tabs .map-tab {
    min-width: min(44%, 154px);
  }

  /* スクロールできることを示すヒント */
  .h-scroll-hint {
    margin: 10px auto 0;
    color: currentColor;
    opacity: 0.72;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .h-scroll-hint.is-hidden {
    display: none;
  }

  /* --- 遊び方ステップの内容も中央寄せ --- */
  .step-card > div:last-child {
    text-align: center;
  }

  .step-actions {
    justify-content: center;
  }

  /* --- 安全パディング / フォント微調整 --- */
  .hero-copy {
    text-align: center;
  }

  .faq-item {
    text-align: left;
  }
}

/* =========================================================
   追加調整
   ========================================================= */

/* STEP 02 見出しの行間: scramble 断片がブロック化され、元の <br> が
   余分な空行を生むため、#step-2 のみ <br> を無効化して行間を是正 */
#step-2 .step-title-ja .scramble-fragment {
  display: block;
}
#step-2 .step-title-ja br {
  display: none;
}

/* 制作・開発ロゴ: 2つともホバー可能に。Alche はクリックでサイトを開く */
.logo-card-brand {
  transition: transform 0.25s ease;
}
.logo-card-brand .logo-card-brand-image,
.logo-card-brand .asset-image {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.logo-card-brand:hover {
  transform: translateY(-4px);
  box-shadow: none;
}
.logo-card-brand:hover .logo-card-brand-image,
.logo-card-brand:hover .asset-image {
  transform: scale(1.06);
  filter: brightness(1.12);
}
.logo-card-link {
  cursor: pointer;
  text-decoration: none;
}

/* スマホ幅: 4ステップを 2x2 で全表示 / Fortniteロゴ拡大 / シークレット数字を内側へ */
@media (max-width: 640px) {
  .hero-watermark {
    width: min(56vw, 216px);
    min-width: 0;
  }

  .step-overview {
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: none;
  }
  .step-overview a {
    scroll-snap-align: none;
  }
  .step-overview a:nth-child(1),
  .step-overview a:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .step-overview a:nth-child(2),
  .step-overview a:nth-child(4) {
    border-right: 0;
  }

  /* シークレットタブの数字バッジ: ≤1180 で span が非表示にされるため復活させ、
     さらに横スクロール領域で切れないようタブ内側へ配置する */
  .map-tv .map-tabs .map-tab-secret .map-secret-count {
    display: inline-flex;
    top: 4px;
    right: 6px;
  }
}

/* スマホ: MAPのタブを等幅の2カラムに */
@media (max-width: 640px) {
  .map-tv .map-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .map-tv .map-tabs .map-tab {
    flex: none;
    min-width: 0;
    width: auto;
  }
}

/* スマホ: コメントはバッジ（名前の下）に置き、押す/ホバーで「バッジ直下・中央」に
   オーバーレイ表示して本文の上に重ねる。外側タップで閉じる（JS側で対応済み） */
@media (max-width: 640px) {
  .artist-comment {
    display: block;
    width: fit-content;
    margin: 10px auto 0;
  }
  .comment-bubble {
    position: absolute;
    top: calc(100% + 12px);
    bottom: auto;
    left: 50%;
    width: max-content;
    max-width: min(320px, 82vw);
    margin: 0;
    z-index: 9999;
    transform: translate(calc(-50% + var(--bubble-x, 0px)), 6px);
  }
  /* コメントを開いたカードを最前面に出し、吹き出しが他要素に隠れないようにする
     （:has() に依存せず JS が付与する .comment-open で制御） */
  .artist-card.comment-open {
    position: relative;
    z-index: 60;
  }
  /* #artists 直下の各リスト/見出しは position:relative;z-index:3 で層を作るため、
     コメントを開いたリスト自体を持ち上げて見出しやゲストカードより前面にする
     （#artists > * 由来の z-index:3 に勝つ特異性が必要） */
  #artists > .artist-list.comment-open {
    z-index: 20;
  }
  /* 根本対策: reveal の transform が各カードに stacking context を作り、吹き出しの
     高い z-index をカード内に閉じ込めてしまう。transform を解除して吹き出しを
     リスト階層まで浮かせる（:has や JS クラスに依存しない純 CSS） */
  .artist-card.reveal-up.is-visible {
    transform: none;
    filter: none;
    will-change: auto;
  }
  /* 開いたコメント自体を持ち上げる。トリガーは .is-open（古い JS でも付与される）
     なので新クラスや :has に依存しない。カードの transform を消してあるため、
     これがリスト階層まで浮き上がり、隣のカードより前面になる */
  .artist-comment.is-open {
    z-index: 9999;
  }
  /* メンバーリストを見出し/ゲストリストより前面に固定（Jamil等、末尾カードの
     吹き出しが下の見出し・カードに隠れないように） */
  #artists > .artist-member-list {
    z-index: 5;
  }
  .artist-comment:hover .comment-bubble,
  .artist-comment:focus-within .comment-bubble,
  .artist-comment.is-open .comment-bubble {
    transform: translate(calc(-50% + var(--bubble-x, 0px)), 0);
  }
  .comment-bubble::after {
    top: auto;
    bottom: 100%;
    left: calc(50% - var(--bubble-x, 0px));
    margin-left: -8px;
    border-top-color: transparent;
    border-bottom-color: var(--accent-violet);
  }
}

/* シェアボタン（BGMスイッチの下に X / Instagram） */
.follow-widget-share {
  display: flex;
  gap: 8px;
}
.share-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.share-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.follow-widget .share-btn-label {
  display: none;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(10px);
  z-index: 9998;
  max-width: min(88vw, 420px);
  padding: 10px 18px;
  border-radius: 999px;
  background: #1c1c22;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.share-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* スマホ: フローティングウィジェットは X シェアのみ（BGM/CD等は非表示） */
@media (max-width: 640px) {
  .follow-widget {
    display: block;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 0;
  }
  /* 黒い外枠（カード背景）をなくす */
  .follow-widget::before {
    display: none;
  }
  .follow-widget-record,
  .follow-widget .widget-close,
  .follow-widget-track,
  .follow-widget-toggle {
    display: none;
  }
  .follow-widget-player {
    margin-top: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .follow-widget-share {
    width: auto;
  }
  .follow-widget-share .share-btn {
    flex: none;
    width: 54px;
    height: auto;
    flex-direction: column;
    gap: 3px;
    padding: 7px 4px;
    background: rgba(0, 0, 0, 0.6); /* ボタン自体を黒60% */
    border: 0;
    transform: none; /* 揺れ・浮きをなくす */
  }
  .follow-widget-share .share-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: none;
  }
  .follow-widget-share .share-btn-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
}

/* ゲーム内楽曲: Shuya紹介の下、横長のフレーム画像＋曲目注釈 */
.ingame-tracks {
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
}
.ingame-tracks-media {
  display: block;
  width: 100%;
  height: auto;
  padding: 24px 64px;
  box-sizing: border-box;
}
.ingame-tracks-caption {
  padding: 16px 20px 0;
}
.ingame-tracks-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--black);
}
.ingame-tracks-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ingame-tracks-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}
.ingame-tracks-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ingame-tracks-list li span {
  flex: none;
  color: var(--mid);
  font-weight: 600;
  font-size: 12px;
}

/* タイプライターのカーソル */
.tw-caret::after {
  content: "▍";
  margin-left: 2px;
  color: var(--accent-green);
  animation: tw-blink 0.9s steps(1, end) infinite;
}
@keyframes tw-blink {
  50% {
    opacity: 0;
  }
}

/* 汎用トースト（コピー完了などの通知） */
.app-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(10px);
  z-index: 10000;
  max-width: min(88vw, 420px);
  padding: 12px 22px;
  border-radius: 999px;
  background: #1c1c22;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.app-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
