:root {
  --bg: #07070b;
  --panel: #151217;
  --panel-soft: #221626;
  --text: #fff7fb;
  --ink: #fff7fb;
  --muted: #c9aebd;
  --line: rgba(255, 111, 189, 0.28);
  --accent: #ff6fbd;
  --accent-2: #ff9ad6;
  --accent-3: #ffd166;
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 251, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-actions,
.language-switch,
.share-button,
.site-footer,
.hero-actions,
.age-actions,
.item-actions {
  display: flex;
  align-items: center;
}

.brand {
  order: 1;
  min-width: 0;
  gap: 18px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(120px, 16vw, 188px);
  height: auto;
  flex: 0 0 auto;
}

.brand-subtitle {
  color: rgba(52, 36, 44, 0.55);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.nav {
  order: 3;
  margin-left: auto;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
}

.nav a {
  border-radius: 999px;
  padding: 7px 13px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav a[aria-current="page"] {
  background: rgba(255, 111, 189, 0.88);
  box-shadow: 0 10px 24px rgba(219, 80, 136, 0.18);
  color: #ffffff;
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent-2);
}

.nav a[aria-current="page"]:hover {
  color: #ffffff;
}

.header-actions {
  order: 2;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 0;
  margin-right: clamp(18px, 5vw, 92px);
}

.language-switch {
  flex: 0 0 auto;
  gap: 2px;
  border: 1px solid rgba(255, 124, 202, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 3px;
  box-shadow: 0 10px 24px rgba(219, 80, 136, 0.08);
}

.language-option {
  display: inline-flex;
  min-width: 40px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(52, 36, 44, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-option[aria-pressed="true"] {
  background: rgba(255, 111, 189, 0.88);
  box-shadow: 0 8px 18px rgba(219, 80, 136, 0.18);
  color: #ffffff;
}

.language-option:hover {
  color: var(--accent-2);
}

.language-option[aria-pressed="true"]:hover {
  color: #ffffff;
}

.share-button {
  min-height: 42px;
  gap: 7px;
  border: 1px solid rgba(255, 124, 202, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(219, 80, 136, 0.08);
  color: rgba(52, 36, 44, 0.64);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 3px 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.share-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.share-button:hover,
.share-button.is-copied {
  border-color: rgba(255, 154, 214, 0.68);
  background: rgba(255, 111, 189, 0.88);
  color: #ffffff;
  transform: translateY(-1px);
}

.share-modal[hidden] {
  display: none;
}

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 7, 0.66);
  backdrop-filter: blur(3px);
}

.share-dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(500px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  color: #1f1f26;
  padding: clamp(26px, 5vw, 34px);
}

.share-dialog:focus {
  outline: none;
}

.share-dialog h2 {
  margin: 0 34px 22px 0;
  color: #171720;
  font-size: clamp(20px, 4.8vw, 24px);
  line-height: 1.35;
}

.share-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #62656f;
  cursor: pointer;
  font: inherit;
  font-size: 30px;
  line-height: 1;
}

.share-close:hover {
  background: rgba(20, 20, 28, 0.06);
  color: #191923;
}

.share-dialog-title {
  margin: 0 0 8px;
  color: #20202a;
  font-size: clamp(16px, 3.8vw, 18px);
  font-weight: 900;
  line-height: 1.55;
}

.share-dialog-url {
  overflow: hidden;
  margin: 0 0 24px;
  color: #71747e;
  font-size: 15px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.share-action {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(22, 22, 28, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #5f626c;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.share-action:hover,
.share-action.is-copied {
  border-color: rgba(255, 111, 189, 0.36);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  color: #2b2b35;
  transform: translateY(-2px);
}

.share-action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.share-action-x {
  background: #000000;
}

.share-action-line {
  background: #06c755;
  font-size: 11px;
}

.share-action-copy {
  background: #757985;
}

.share-action-copy svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.language-option:focus-visible {
  outline: 2px solid rgba(255, 91, 186, 0.4);
  outline-offset: 2px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 156px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.booth-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 92, 138, 0.18), rgba(73, 211, 180, 0.12));
}

.booth-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.booth-strip strong {
  margin-right: 10px;
  color: var(--accent-3);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow,
.tag {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.35;
}

p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
}

.hero-actions,
.age-actions,
.item-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #ffffff;
}

.button.secondary,
.button.ghost {
  background: rgba(255, 111, 189, 0.08);
}

.button.compact {
  min-height: 38px;
  padding: 8px 14px;
  background: rgba(255, 111, 189, 0.08);
}

.hero-art {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 111, 189, 0.28), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(255, 209, 102, 0.28), transparent 24%),
    linear-gradient(145deg, #ffffff, #fff0f6 56%, #ffe3ef);
  box-shadow: var(--shadow);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 91, 186, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(255, 91, 186, 0.08) 11% 12%, transparent 12% 24%) 0 0 / 120px 100%,
    linear-gradient(180deg, rgba(255, 111, 189, 0.22), rgba(255, 209, 102, 0.14));
  animation: scan 8s linear infinite;
}

.hero-art span {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.8;
}

.hero-art span:nth-child(1) {
  width: 42%;
  height: 16px;
  left: 16%;
  top: 28%;
  animation: floatBar 3.4s ease-in-out infinite;
}

.hero-art span:nth-child(2) {
  width: 28%;
  height: 16px;
  right: 16%;
  top: 50%;
  background: var(--accent-2);
  animation: floatBar 3.4s ease-in-out 0.3s infinite;
}

.hero-art span:nth-child(3) {
  width: 54%;
  height: 16px;
  left: 22%;
  bottom: 28%;
  background: var(--accent-3);
  animation: floatBar 3.4s ease-in-out 0.6s infinite;
}

.section,
.sub-hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff0f6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.free-section .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 36px);
}

.section-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.55vw, 17px);
  font-weight: 750;
  line-height: 1.7;
}

.free-section {
  padding-top: clamp(26px, 4vw, 48px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 240, 246, 0.72)),
    #fff7fb;
}

.free-panel {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(219, 80, 136, 0.12);
  padding: clamp(22px, 4vw, 44px);
  backdrop-filter: blur(18px);
}

.character-free-compact {
  padding-top: clamp(18px, 2.6vw, 32px);
  padding-bottom: clamp(24px, 3.4vw, 42px);
}

.character-free-compact .free-panel {
  padding: clamp(14px, 2.4vw, 24px);
}

.character-free-compact .section-heading {
  margin-bottom: 12px;
}

.character-free-compact .section-heading h2 {
  font-size: clamp(20px, 2.2vw, 28px);
}

.character-free-compact .material-slider {
  grid-auto-columns: minmax(150px, calc((100% - 56px) / 5));
  grid-template-rows: none;
  gap: 14px;
  padding: 2px 4px 8px;
}

.free-section .material-card,
.free-section .thumb.has-image {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255, 111, 189, 0.16), transparent 42%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 111, 189, 0.1) 46%, rgba(255, 255, 255, 0.06)),
    rgba(18, 15, 22, 0.62);
}

.free-section .material-card {
  border-color: rgba(255, 111, 189, 0.28);
  border-radius: 18px;
  padding: clamp(6px, 0.75vw, 10px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 111, 189, 0.12),
    inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.free-section .thumb.has-image {
  border-radius: 12px;
}

.character-free-compact .standing-thumb img {
  padding: 8px;
}

.text-link {
  color: var(--accent-2);
  font-weight: 800;
}

.material-grid,
.product-row {
  display: grid;
  gap: 18px;
}

.material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.material-slider {
  display: grid;
  grid-auto-columns: minmax(260px, calc((100% - 48px) / 3));
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 6px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.material-slider::-webkit-scrollbar {
  display: none;
}

.material-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.material-card,
.product-card,
.age-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.material-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  scroll-snap-align: start;
}

.js-reveal-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.material-slider.is-dragging .material-card {
  pointer-events: none;
}

.thumb,
.product-cover {
  display: block;
  min-height: 190px;
  overflow: hidden;
  background: #fff0f6;
}

.thumb.has-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: #fff0f6;
}

.thumb.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.standing-thumb img {
  box-sizing: border-box;
  object-fit: contain;
  padding: 12px;
}

.thumb.has-image::before {
  display: none;
}

.material-card .card-body {
  display: none;
}

.product-cover {
  aspect-ratio: 1 / 1;
  max-height: clamp(150px, 20vw, 260px);
  min-height: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.thumb::before,
.product-cover::before {
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.6) 20% 22%, transparent 22% 38%),
    radial-gradient(circle at 35% 45%, var(--accent), transparent 20%),
    radial-gradient(circle at 70% 38%, var(--accent-2), transparent 18%);
  animation: previewMotion 5s linear infinite;
}

.motion-two::before {
  background:
    conic-gradient(from 120deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.motion-three::before {
  background:
    linear-gradient(135deg, rgba(255, 92, 138, 0.9), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 8px, transparent 8px 22px),
    radial-gradient(circle at 60% 55%, var(--accent-2), transparent 25%);
}

.sales-band {
  background: #fff7fb;
}

.sales-band-top {
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(18px, 3vw, 30px);
}

.sales-band-top h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.slider-shell {
  position: relative;
}

.mobile-heading-break {
  display: none;
}

.product-slider {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 6px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-slide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  scroll-snap-align: start;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.product-card {
  overflow: hidden;
  -webkit-user-drag: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.product-card img,
.material-card img {
  -webkit-user-drag: none;
  user-select: none;
}

.product-slider.is-dragging .product-card {
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(73, 211, 180, 0.55);
  transform: translateY(-3px);
}

.product-card strong,
.product-card small {
  display: block;
  padding-inline: 16px;
}

.product-card strong {
  padding-top: 12px;
}

.product-card small {
  min-height: 42px;
  padding-bottom: 14px;
  color: var(--muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 91, 186, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, transform 160ms ease, width 160ms ease;
}

.slider-dot.is-active {
  width: 24px;
  background: var(--accent-2);
}

.slider-dot:hover {
  background: rgba(255, 91, 186, 0.48);
}

.cover-a::before,
.cover-b::before,
.cover-c::before,
.cover-d::before,
.cover-e::before,
.cover-f::before,
.cover-g::before,
.cover-h::before,
.cover-i::before,
.cover-j::before {
  animation-duration: 7s;
}

.cover-b::before {
  filter: hue-rotate(80deg);
}

.cover-c::before {
  filter: hue-rotate(150deg);
}

.cover-d::before {
  filter: hue-rotate(230deg);
}

.cover-e::before {
  filter: hue-rotate(300deg);
}

.cover-f::before {
  filter: hue-rotate(35deg) saturate(1.3);
}

.cover-g::before {
  filter: hue-rotate(120deg) saturate(1.2);
}

.cover-h::before {
  filter: hue-rotate(180deg) saturate(1.25);
}

.cover-i::before {
  filter: hue-rotate(260deg) saturate(1.2);
}

.cover-j::before {
  filter: hue-rotate(330deg) saturate(1.35);
}

.guideline {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
}

.rule-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  color: var(--muted);
}

.sub-hero {
  max-width: 900px;
}

.sub-hero h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.character-list-page {
  background:
    linear-gradient(180deg, rgba(244, 241, 249, 0.98), rgba(255, 247, 251, 0.94) 44%, rgba(248, 244, 251, 0.98)),
    #f4f1f8;
}

.character-list-section {
  padding-top: clamp(34px, 5vw, 64px);
}

.character-author-panel {
  display: grid;
  max-width: 1360px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin: 0 auto clamp(44px, 5vw, 68px);
  border: 1px solid rgba(255, 111, 189, 0.2);
  border-radius: 8px;
  background: rgba(18, 15, 22, 0.72);
  padding: 14px;
}

.character-author-heading,
.booth-filter-heading {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: var(--accent-2);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.character-author-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.character-author-button,
.character-author-toggle {
  min-height: 42px;
  border: 1px solid rgba(255, 111, 189, 0.26);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.42);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 8px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.character-author-button:hover,
.character-author-button.is-active,
.character-author-toggle:hover,
.character-author-toggle.is-selected {
  border-color: rgba(255, 154, 214, 0.72);
  background: rgba(255, 111, 189, 0.9);
  color: #ffffff;
  transform: translateY(-1px);
}

.character-search-panel,
.character-author-mobile-controls,
.character-author-current,
.character-author-row-toggle {
  display: none;
}

.character-author-status {
  align-self: end;
  justify-self: end;
  color: var(--accent-2);
  font-size: 16px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.list-page-intro {
  max-width: 1360px;
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.list-page-intro h1 {
  max-width: 980px;
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.22;
}

.list-page-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 750;
}

.character-list-grid {
  display: grid;
  max-width: 1360px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 72px) clamp(36px, 4.2vw, 68px);
}

.character-list-card {
  position: relative;
  display: flex;
  min-height: clamp(340px, 36vw, 455px);
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border: 0;
  border-radius: 32px;
  background: transparent;
  padding: clamp(6px, 1vw, 10px) clamp(6px, 1vw, 10px) clamp(12px, 1.6vw, 18px);
  text-align: center;
  overflow: visible;
  transition: transform 160ms ease;
}

.character-list-card::before {
  position: absolute;
  inset: clamp(-44px, -3vw, -24px) 0 0;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.82), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(238, 221, 250, 0.34), transparent 42%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.32) 100%),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 46px rgba(116, 99, 132, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 28px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px) saturate(1.18);
  content: "";
}

.character-list-card::after {
  position: absolute;
  inset: clamp(-44px, -3vw, -24px) 0 0;
  z-index: 0;
  padding: clamp(10px, 1.5vw, 16px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0.12) 40%, transparent 56%),
    linear-gradient(28deg, rgba(255, 255, 255, 0.24), transparent 34%, rgba(255, 255, 255, 0.34) 72%, transparent 100%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.56),
    inset 0 0 34px rgba(232, 213, 246, 0.22);
  backdrop-filter: blur(16px) saturate(1.12);
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.78;
  pointer-events: none;
}

.character-list-card:hover {
  transform: translateY(-3px);
}

.character-list-card:hover::before {
  box-shadow:
    0 28px 56px rgba(116, 99, 132, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.26),
    inset 0 0 32px rgba(255, 255, 255, 0.28);
}

.character-list-image {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(106%, 430px);
  aspect-ratio: 3 / 3.45;
  place-items: center;
  overflow: visible;
}

.character-list-image img {
  --character-x: 0%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(116, 99, 132, 0.14));
  transform: translateX(var(--character-x)) scale(1.18);
  transform-origin: center bottom;
}

.character-list-image img[src*="Chocolat_standing"],
.character-list-image img[src*="Eku_standing"] {
  --character-x: -3%;
}

.character-list-image img[src*="Rurune_standing"] {
  --character-x: -2%;
}

.character-list-image img[src*="Ririka_standing"],
.character-list-image img[src*="Shinano_standing"] {
  --character-x: -1.5%;
}

.character-list-image img[src*="Plum_standing"],
.character-list-image img[src*="Ramune_standing"],
.character-list-image img[src*="Sio_standing"] {
  --character-x: -1%;
}

.character-list-name {
  position: relative;
  z-index: 1;
  margin-top: -16px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.35;
}

.character-list-subname {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 881px) {
  .character-list-section {
    padding-top: clamp(10px, 1.2vw, 16px);
  }

  .character-list-page .list-page-intro {
    margin-bottom: clamp(8px, 1vw, 12px);
  }

  .character-list-page .list-page-intro h1 {
    margin-bottom: 4px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
  }

  .character-list-page .list-page-intro p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.4;
  }

  .character-author-panel {
    gap: 10px;
    margin-bottom: clamp(38px, 2.8vw, 48px);
    padding: 10px 14px;
    position: relative;
    padding-bottom: 28px;
  }

  .character-author-tabs {
    overflow: hidden;
    max-height: 44px;
  }

  .character-author-tabs.is-expanded {
    overflow: visible;
    max-height: none;
  }

  .character-author-panel.is-author-rows-expanded {
    padding-bottom: 28px;
  }

  .character-author-row-toggle {
    display: inline-flex;
    position: absolute;
    left: 50%;
    bottom: -17px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 111, 189, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 14, 0.42);
    color: var(--accent-2);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    padding: 7px 20px;
    transform: translateX(-50%);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .character-author-row-toggle::before,
  .character-author-row-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(24vw, 320px);
    height: 1px;
    background: rgba(255, 111, 189, 0.22);
    pointer-events: none;
  }

  .character-author-row-toggle::before {
    right: calc(100% + 12px);
  }

  .character-author-row-toggle::after {
    left: calc(100% + 12px);
  }

  .character-author-row-toggle:hover {
    border-color: rgba(255, 154, 214, 0.72);
    background: rgba(255, 111, 189, 0.9);
    color: #ffffff;
    transform: translate(-50%, -1px);
  }

  .character-author-panel.is-author-rows-expanded .character-author-row-toggle {
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .character-author-panel.is-author-rows-expanded .character-author-row-toggle:hover {
    transform: translate(-50%, -1px);
  }

  .character-author-panel.is-author-rows-expanded .character-author-row-toggle::before,
  .character-author-panel.is-author-rows-expanded .character-author-row-toggle::after {
    content: none;
  }

  .character-author-heading {
    font-size: clamp(19px, 1.6vw, 22px);
    line-height: 1.3;
  }

  .character-author-status {
    display: inline-flex;
    grid-column: 2;
    grid-row: 2;
    min-height: 42px;
    align-items: center;
    align-self: end;
    justify-content: flex-end;
    font-size: clamp(21px, 1.65vw, 24px);
    font-weight: 700;
    line-height: 1.25;
  }

  .character-list-grid {
    gap: clamp(28px, 3.2vw, 46px) clamp(34px, 4vw, 64px);
  }

  .character-list-card {
    min-height: clamp(285px, 22vw, 330px);
  }

  .character-list-card::before,
  .character-list-card::after {
    inset: clamp(-28px, -1.8vw, -18px) 0 0;
  }

  .character-list-image {
    width: min(94%, 330px);
    aspect-ratio: 3 / 3.25;
  }

  .character-list-image img {
    transform: translateX(var(--character-x)) scale(1.08);
  }

  .character-list-name {
    margin-top: -10px;
    font-size: clamp(17px, 1.55vw, 21px);
  }
}

.booth-list-page {
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.96), rgba(244, 241, 249, 0.9) 44%, rgba(255, 247, 251, 0.98)),
    var(--bg);
}

.product-page {
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.98), rgba(244, 241, 249, 0.92) 46%, rgba(255, 247, 251, 1)),
    var(--bg);
}

.links-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.92), rgba(21, 18, 23, 0.96) 46%, rgba(34, 22, 38, 0.92)),
    var(--bg);
}

.links-hero {
  display: grid;
  max-width: 520px;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 30px);
  align-items: start;
  margin: 0 auto;
  padding-top: clamp(20px, 4vw, 42px);
  padding-bottom: clamp(32px, 5vw, 62px);
}

.links-profile {
  min-width: 0;
  text-align: center;
}

.links-profile-icon {
  display: block;
  width: clamp(106px, 25vw, 142px);
  height: clamp(106px, 25vw, 142px);
  margin: 0 auto 12px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow:
    0 18px 38px rgba(219, 80, 136, 0.2),
    0 0 0 1px rgba(255, 111, 189, 0.18);
  object-fit: cover;
}

.links-profile-name {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  line-height: 1.3;
}

.links-profile-bio {
  max-width: 460px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.8;
}

.links-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.link-card {
  display: grid;
  min-height: 82px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 8px;
  background: rgba(21, 18, 23, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  padding: 13px 15px;
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card-primary {
  border-color: rgba(255, 111, 189, 0.5);
  background: linear-gradient(135deg, rgba(34, 22, 38, 0.94), rgba(21, 18, 23, 0.9));
}

.link-card:hover {
  border-color: rgba(255, 111, 189, 0.62);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.link-card-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.link-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-card-body {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.link-card-body strong {
  color: var(--text);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.28;
}

.link-card-body small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.links-internal {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: clamp(8px, 2vw, 18px);
}

.links-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.links-mini-card {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 111, 189, 0.26);
  border-radius: 8px;
  background: rgba(21, 18, 23, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  padding: 16px;
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.links-mini-card:hover {
  border-color: rgba(255, 111, 189, 0.56);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.links-mini-card strong {
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.35;
}

.links-mini-card span {
  color: var(--muted);
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 750;
  line-height: 1.5;
}

.booth-list-section {
  padding-top: 34px;
}

.booth-list-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-bottom: 14px;
}

.booth-list-page .list-page-intro h1 {
  max-width: none;
  margin-bottom: 6px;
  font-size: 42px;
  line-height: 1.16;
}

.booth-list-page .list-page-intro p:not(.eyebrow) {
  max-width: none;
  font-size: 16px;
  line-height: 1.5;
}

.booth-list-intro .booth-sort-tabs {
  margin: 0;
}

.booth-list-count {
  align-self: center;
  justify-self: end;
  min-width: 72px;
  text-align: right;
  white-space: nowrap;
}

.booth-filter-panel {
  display: grid;
  max-width: 1360px;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 14px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 111, 189, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 18, 24, 0.92), rgba(35, 25, 39, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(255, 111, 189, 0.08);
  padding: 14px 16px;
}

.booth-filter-panel .booth-filter-heading {
  grid-column: auto;
  margin: 0;
}

.booth-filter-panel .booth-filter-tabs {
  grid-column: auto;
}

.booth-filter-tabs,
.booth-sort-tabs,
.booth-subtag-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.booth-sort-tabs {
  max-width: 1360px;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 auto 14px;
}

.booth-filter-button,
.booth-sort-button,
.booth-subtag-button,
.booth-subtag-picker-toggle,
.product-tag,
.product-tag-chip {
  min-height: 56px;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.42);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 900;
  letter-spacing: 0;
  padding: 13px 24px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.booth-sort-button {
  min-width: 104px;
}

.booth-filter-button:hover,
.booth-filter-button.is-active,
.booth-sort-button:hover,
.booth-sort-button.is-active,
.booth-subtag-button:hover,
.booth-subtag-button.is-active,
.booth-subtag-picker-toggle:hover,
.booth-subtag-picker-toggle.is-selected,
.product-tag:hover,
.product-tag-chip:hover {
  border-color: rgba(255, 154, 214, 0.72);
  background: rgba(255, 111, 189, 0.9);
  color: #ffffff;
  transform: translateY(-1px);
}

.booth-subtag-panel {
  display: grid;
  max-width: 1360px;
  align-items: center;
  grid-template-columns: auto minmax(0, auto);
  gap: 10px 14px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 111, 189, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 18, 24, 0.88), rgba(35, 25, 39, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(255, 111, 189, 0.07);
  padding: 14px 16px;
  position: relative;
}

.booth-subtag-panel.is-subtag-search-open {
  z-index: 80;
}

.booth-subtag-picker {
  display: none;
}

.booth-subtag-picker.is-open {
  display: block;
}

.booth-subtag-mobile-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.booth-subtag-mobile-label {
  display: none;
}

.booth-subtag-row-toggle {
  display: none;
}

.booth-subtag-heading {
  margin: 0;
  color: var(--accent-2);
  font-size: 15px;
  font-weight: 900;
}

.booth-subtag-picker {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.booth-subtag-search-panel {
  display: none;
}

.booth-subtag-search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
}

.booth-subtag-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.booth-subtag-search-header .booth-subtag-search-label {
  margin-bottom: 0;
}

.booth-subtag-popover-close,
.booth-subtag-search-clear {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.58);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.booth-subtag-popover-close {
  width: 30px;
  height: 30px;
  padding-bottom: 2px;
}

.booth-subtag-search-clear {
  width: 28px;
  height: 28px;
  padding-bottom: 2px;
}

.booth-subtag-popover-close:hover,
.booth-subtag-search-clear:hover {
  border-color: rgba(255, 154, 214, 0.72);
  background: rgba(255, 111, 189, 0.9);
  color: #ffffff;
}

.booth-subtag-search-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 111, 189, 0.32);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.72);
  padding: 7px 9px 7px 14px;
}

.booth-subtag-search-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 154, 214, 0.76);
  border-radius: 50%;
}

.booth-subtag-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 154, 214, 0.76);
  transform: rotate(45deg);
}

.booth-subtag-search {
  display: block;
  width: 100%;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  outline: none;
  padding: 0;
}

.booth-subtag-search::placeholder {
  color: rgba(255, 211, 237, 0.54);
}

.booth-subtag-search::-webkit-search-decoration,
.booth-subtag-search::-webkit-search-cancel-button,
.booth-subtag-search::-webkit-search-results-button,
.booth-subtag-search::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

.booth-subtag-search::-ms-clear,
.booth-subtag-search::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.booth-subtag-search:focus {
  box-shadow: none;
}

.booth-subtag-search-field:focus-within {
  border-color: rgba(255, 154, 214, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 111, 189, 0.18);
}

.booth-subtag-empty {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 881px) {
  .booth-filter-status.booth-list-count {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: flex-end;
    min-width: 82px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
  }

  .booth-filter-panel .booth-filter-heading {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.25;
  }

  .booth-subtag-heading {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.25;
  }

  .booth-subtag-panel {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    position: relative;
    padding-bottom: 28px;
  }

  .booth-subtag-panel.is-subtag-search-open {
    min-height: 90px;
  }

  .booth-subtag-mobile-controls {
    display: none;
  }

  .booth-subtag-picker {
    display: block;
    grid-column: auto;
    margin-top: 0;
    overflow: hidden;
    max-height: 48px;
  }

  .booth-subtag-picker.is-open {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    z-index: 80;
    width: min(760px, calc(100% - 32px));
    max-height: min(60vh, 420px);
    overflow: hidden;
    border: 1px solid rgba(255, 111, 189, 0.3);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(18, 14, 22, 0.98), rgba(34, 23, 39, 0.96));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 26px 56px rgba(0, 0, 0, 0.48),
      0 0 28px rgba(255, 111, 189, 0.14);
    padding: 16px;
    transform: translateX(-50%);
  }

  .booth-subtag-picker.is-open .booth-subtag-search-panel {
    display: block;
  }

  .booth-subtag-tabs {
    display: flex;
    flex-wrap: wrap;
  }

  .booth-subtag-picker.is-open .booth-subtag-tabs {
    max-height: calc(min(60vh, 420px) - 94px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 3px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .booth-subtag-picker.is-open .booth-subtag-button {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .booth-subtag-row-toggle {
    display: inline-flex;
    position: absolute;
    left: 50%;
    bottom: -17px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 111, 189, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 14, 0.42);
    color: var(--accent-2);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    padding: 7px 20px;
    transform: translateX(-50%);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .booth-subtag-row-toggle::before,
  .booth-subtag-row-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(24vw, 320px);
    height: 1px;
    background: rgba(255, 111, 189, 0.22);
    pointer-events: none;
  }

  .booth-subtag-row-toggle::before {
    right: calc(100% + 12px);
  }

  .booth-subtag-row-toggle::after {
    left: calc(100% + 12px);
  }

  .booth-subtag-row-toggle:hover {
    border-color: rgba(255, 154, 214, 0.72);
    background: rgba(255, 111, 189, 0.9);
    color: #ffffff;
    transform: translate(-50%, -1px);
  }

  .booth-subtag-search-label {
    font-size: 14px;
  }

  .booth-list-section {
    padding-top: 16px;
  }

  .booth-list-intro {
    gap: 10px;
    margin-bottom: 12px;
  }

  .booth-list-page .list-page-intro h1 {
    margin-bottom: 7px;
    font-size: clamp(34px, 3.15vw, 42px);
    line-height: 1.12;
  }

  .booth-list-page .list-page-intro p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .booth-filter-panel,
  .booth-subtag-panel {
    gap: 10px 14px;
    margin-bottom: 14px;
    padding: 12px 16px;
  }

  .booth-subtag-panel {
    margin-bottom: 22px;
    padding-bottom: 28px;
  }

  .booth-filter-tabs,
  .booth-sort-tabs,
  .booth-subtag-tabs {
    gap: 10px;
  }

  .booth-filter-button,
  .booth-sort-button,
  .booth-subtag-button,
  .booth-subtag-picker-toggle {
    min-height: 48px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.2;
  }

  .booth-list-grid {
    gap: clamp(20px, 2.6vw, 38px) clamp(24px, 3.4vw, 52px);
  }
}

.booth-subtag-tabs {
  gap: 10px;
}

.booth-subtag-button,
.booth-subtag-picker-toggle,
.product-tag,
.product-tag-chip {
  min-height: 42px;
  font-size: 14px;
  padding: 9px 16px;
}

.booth-filter-status {
  flex: 0 0 auto;
  min-width: 86px;
  color: var(--accent-2);
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.booth-list-thumb.is-filter-hidden {
  display: none !important;
}

.booth-pagination {
  display: flex;
  max-width: 1360px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.booth-pagination[hidden] {
  display: none !important;
}

.booth-list-help {
  display: flex;
  max-width: 1360px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.booth-list-help a {
  color: var(--accent-2);
  font-weight: 900;
  text-decoration: none;
}

.booth-list-help a:hover {
  color: var(--text);
}

.booth-page-button {
  min-width: 118px;
  min-height: 52px;
  border: 1px solid rgba(255, 111, 189, 0.34);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.54);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 12px 24px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.booth-page-button:hover:not(:disabled) {
  border-color: rgba(255, 154, 214, 0.78);
  background: rgba(255, 111, 189, 0.9);
  color: #ffffff;
  transform: translateY(-1px);
}

.booth-page-button:disabled {
  cursor: default;
  opacity: 0.36;
}

.booth-page-status {
  min-width: 68px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.booth-list-grid {
  display: grid;
  max-width: 1360px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 44px) clamp(30px, 4vw, 60px);
}

.booth-list-thumb {
  display: block;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(116, 99, 132, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.booth-list-thumb:hover {
  box-shadow: 0 22px 44px rgba(116, 99, 132, 0.18);
  transform: translateY(-3px);
}

.booth-list-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-hero {
  display: grid;
  max-width: 1480px;
  grid-template-columns: minmax(0, 620px) minmax(520px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  margin: 0 auto;
  padding-top: clamp(30px, 5vw, 70px);
}

.product-gallery {
  display: grid;
  align-content: start;
  gap: 15px;
}

.product-main-figure {
  margin: 0;
  border: 1px solid rgba(255, 111, 189, 0.24);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.72);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(255, 111, 189, 0.1);
  overflow: hidden;
}

.product-main-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
  touch-action: pan-y;
  user-select: none;
}

.product-main-button.is-dragging {
  cursor: grabbing;
}

.product-main-button img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.product-thumbnail-slider {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 2px 6px;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-thumbnails::-webkit-scrollbar {
  display: none;
}

.product-thumbnails.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-thumbnails.is-dragging .product-thumbnail {
  pointer-events: none;
}

.product-thumbnail {
  display: block;
  width: clamp(82px, 18%, 96px);
  flex: 0 0 clamp(82px, 18%, 96px);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 111, 189, 0.2);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  overflow: hidden;
  padding: 0;
  scroll-snap-align: start;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-thumbnail-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 50%;
  background: rgba(22, 18, 24, 0.78);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-thumbnail-arrow:hover {
  border-color: rgba(255, 154, 214, 0.82);
  background: rgba(255, 91, 186, 0.32);
  transform: translateY(-1px);
}

.product-thumbnail:hover,
.product-thumbnail.is-active {
  border-color: rgba(255, 154, 214, 0.82);
  transform: translateY(-1px);
}

.product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary,
.product-detail-block {
  border: 1px solid rgba(255, 111, 189, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 18, 24, 0.94), rgba(35, 25, 39, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(255, 111, 189, 0.08);
}

.product-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  height: auto;
  min-height: 0;
  padding: clamp(22px, 2.8vw, 30px);
}

.product-summary h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.16;
}

.product-lead {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.72;
}

.product-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 14px;
}

.product-summary-tags span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(255, 111, 189, 0.22);
  border-radius: 999px;
  background: rgba(255, 111, 189, 0.045);
  color: rgba(255, 211, 237, 0.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  padding: 3px 8px;
}

.product-specs {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: minmax(124px, 9em) minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 111, 189, 0.18);
  padding-top: 13px;
}

.product-specs dt {
  color: var(--accent-2);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

.product-specs dd {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.22vw, 17px);
  font-weight: 600;
  line-height: 1.66;
}

.product-avatar-count {
  display: block;
  margin-bottom: 4px;
}

.product-avatar-list-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 7px;
}

.product-avatar-list-item,
.product-avatar-separator {
  display: inline-flex;
  align-items: center;
}

.product-avatar-separator {
  color: rgba(255, 211, 237, 0.52);
}

.product-collapse-toggle.product-avatar-collapse-toggle {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 92px;
  min-height: 27px;
  margin: 4px auto 0;
  box-shadow: none;
  font-size: 11px;
  line-height: 1;
  padding: 4px 11px;
}

@media (min-width: 881px) {
  .product-collapse-toggle.product-avatar-collapse-toggle {
    margin-top: -6px;
  }
}

.product-summary-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.product-summary-breadcrumb.is-collapsible,
.product-subtag-collapse-content.is-collapsible,
.product-avatar-list-content.is-collapsible {
  overflow: hidden;
  transition: max-height 180ms ease;
}

.product-summary-breadcrumb.is-collapsed,
.product-subtag-collapse-content.is-collapsed,
.product-avatar-list-content.is-collapsed {
  max-height: var(--collapsed-height);
}

.product-summary-breadcrumb a {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  color: var(--accent-2);
  text-decoration: none;
  transition: color 160ms ease;
}

.product-summary-breadcrumb a:hover {
  color: #ffffff;
}

.product-summary-breadcrumb span {
  color: rgba(255, 211, 237, 0.52);
}

.product-collapse-toggle {
  display: flex;
  width: max-content;
  min-width: 124px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.96);
  box-shadow: 0 0 0 6px rgba(10, 8, 14, 0.94);
  color: var(--accent-2);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 8px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.product-collapse-toggle:hover {
  border-color: rgba(255, 154, 214, 0.66);
  background: rgba(255, 111, 189, 0.18);
  color: #ffffff;
}

.product-collapse-toggle[hidden] {
  display: none;
}

.product-collapse-toggle.product-breadcrumb-toggle {
  min-width: 72px;
  min-height: 21px;
  margin: -6px auto 8px;
  box-shadow: 0 0 0 3px rgba(10, 8, 14, 0.94);
  font-size: 10px;
  line-height: 1;
  padding: 2px 8px;
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-buy-button {
  min-height: 54px;
  font-size: 18px;
}

.product-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.52;
}

.product-faq-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.product-faq-link a {
  color: var(--accent-2);
  font-weight: 900;
  text-decoration: none;
}

.product-faq-link a:hover {
  color: var(--text);
}

.product-media-note {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.product-detail-section,
.product-related-section {
  max-width: 1480px;
  margin: 0 auto;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(12px, 1.5vw, 22px);
  background:
    linear-gradient(135deg, rgba(42, 34, 43, 0.84), rgba(64, 50, 62, 0.8));
  backdrop-filter: blur(2px);
  color: var(--text);
  cursor: zoom-out;
  padding: clamp(18px, 3vw, 32px);
}

.product-lightbox-stage {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  cursor: zoom-out;
  padding-top: 42px;
}

.product-lightbox-image-wrap {
  position: relative;
  display: grid;
  max-width: 100%;
  width: fit-content;
  justify-items: center;
  align-items: center;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-lightbox-image-wrap.is-dragging {
  cursor: grabbing;
}

.product-lightbox-close {
  position: absolute;
  top: -66px;
  right: -8px;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(96, 111, 132, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  padding: 0 0 7px;
  transition: color 160ms ease, transform 160ms ease;
}

.product-lightbox-close:hover {
  color: rgba(73, 83, 100, 0.92);
  transform: scale(1.04);
}

.product-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.product-lightbox-nav {
  position: absolute;
  top: calc(50% + 21px);
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(18, 15, 22, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 32px;
  line-height: 1;
  padding: 0 0 3px;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-lightbox-nav:hover {
  border-color: rgba(255, 154, 214, 0.9);
  background: rgba(255, 91, 186, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.product-lightbox-nav[data-gallery-prev] {
  left: 22px;
}

.product-lightbox-nav[data-gallery-next] {
  right: 22px;
}

.product-lightbox-side {
  align-self: center;
  justify-self: start;
  min-width: 0;
  cursor: default;
  padding: 56px 4px 18px 0;
  transform: translateX(-100px);
}

.product-lightbox-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.35;
}

.product-lightbox-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 92px);
  gap: 10px;
  align-content: start;
  max-height: min(58vh, 560px);
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: none;
}

.product-lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.product-lightbox-thumb {
  display: block;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 111, 189, 0.2);
  background: rgba(10, 10, 14, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.product-lightbox-thumb.is-active,
.product-lightbox-thumb:hover {
  border-color: rgba(255, 154, 214, 0.82);
}

.product-lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.product-detail-block {
  padding: clamp(20px, 3vw, 30px);
}

.product-detail-block h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.product-detail-block h3 {
  margin: 20px 0 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.product-detail-block p,
.product-detail-block li {
  font-weight: 700;
}

.product-detail-block.booth-description {
  font-size: 15px;
  line-height: 1.75;
}

.product-detail-block.booth-description p,
.product-detail-block.booth-description li {
  font-weight: 500;
}

.product-detail-block.booth-description strong {
  color: var(--text);
  font-weight: 800;
}

.product-detail-block.booth-description .booth-negative {
  color: #ff6f92;
}

.product-detail-block.booth-description .booth-lead {
  color: var(--text);
  font-size: clamp(18px, 1.9vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  text-wrap: balance;
}

.product-detail-block.booth-description .booth-section-title {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.product-detail-block.booth-description .booth-sub-title {
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 700;
}

.product-detail-block.booth-description .booth-sub-title + p {
  font-size: clamp(16px, 1.15vw, 17px);
  line-height: 1.82;
}

.product-detail-block.booth-description .booth-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 3px solid rgba(255, 111, 189, 0.55);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 111, 189, 0.08);
  font-size: 14px;
  line-height: 1.7;
}

.product-detail-block ul,
.product-detail-block ol {
  margin: 0;
  padding-left: 1.35em;
  color: var(--muted);
}

.product-detail-block.booth-description .booth-step-title {
  display: block;
  margin-bottom: 4px;
  line-height: 1.55;
}

.product-detail-block.booth-description .booth-step-desc {
  display: block;
  line-height: 1.82;
}

.product-detail-block.booth-description ul,
.product-detail-block.booth-description ol {
  display: grid;
  line-height: 1.82;
}

.product-detail-block.booth-description ul {
  gap: 12px;
}

.product-detail-block.booth-description ol {
  gap: 18px;
}

.product-detail-block.booth-description ul ul {
  gap: 6px;
  margin-top: 6px;
}

.product-detail-block.booth-description li + li {
  margin-top: 0;
}

.product-detail-block li + li {
  margin-top: 8px;
}

.product-detail-block ol + p {
  margin-top: 18px;
}

.product-detail-section .product-detail-grid {
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.product-detail-section .product-detail-block.booth-description {
  padding: clamp(24px, 3vw, 36px);
  font-size: clamp(15px, 1.06vw, 16px);
  line-height: 1.78;
}

.product-detail-section .product-detail-block.booth-description .booth-section-title {
  margin-bottom: 22px;
  line-height: 1.26;
}

.product-detail-section .product-detail-block.booth-description .booth-sub-title {
  max-width: 34em;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(17px, 1.45vw, 19px);
  font-weight: 650;
  line-height: 1.62;
  text-wrap: balance;
}

.product-detail-section .product-detail-block.booth-description .booth-lead {
  max-width: 42em;
  margin-bottom: 16px;
  font-size: clamp(17px, 1.28vw, 18px);
  font-weight: 600;
  line-height: 1.78;
  text-wrap: balance;
}

.product-detail-section .product-detail-block.booth-description p {
  max-width: 44em;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.78;
}

.product-detail-section .product-detail-block.booth-description p + p {
  margin-top: 12px;
}

.product-detail-section .product-detail-block.booth-description .booth-faq-break {
  height: 20px;
}

.product-detail-section .product-detail-block.booth-description strong {
  font-weight: 700;
}

.product-detail-section .product-detail-block.booth-description ul,
.product-detail-section .product-detail-block.booth-description ol {
  display: grid;
  gap: 12px;
  line-height: 1.82;
}

.product-detail-section .product-detail-block.booth-description ol {
  gap: 18px;
}

.product-detail-section .product-detail-block.booth-description li + li {
  margin-top: 0;
}

.product-detail-section .product-detail-block.booth-description .booth-note {
  margin-top: 18px;
  padding: 13px 15px;
  line-height: 1.74;
}

@media (min-width: 1024px) {
  .product-detail-section {
    padding-inline: 14px;
  }

  .product-detail-grid {
    gap: 16px;
  }

  .product-detail-block {
    padding-inline: 12px;
  }

  .product-detail-block.booth-description .booth-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .product-detail-section .product-detail-block.booth-description .booth-lead {
    font-size: clamp(17px, 1.28vw, 18px);
    line-height: 1.78;
  }
}

.product-tag-section {
  width: min(1336px, calc(100% - clamp(36px, 10vw, 144px)));
  max-width: 1336px;
  margin: 0 auto;
  border: 1px solid rgba(255, 111, 189, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 18, 24, 0.88), rgba(35, 25, 39, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(255, 111, 189, 0.07);
  padding: clamp(18px, 3vw, 28px);
}

.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tag-section .product-tag-list {
  gap: 12px;
}

.product-subtag-collapse-content {
  display: block;
}

.product-tag-list + .booth-subtag-heading,
.product-tag-list + .section-heading {
  margin-top: 18px;
}

.product-tag-section .booth-subtag-heading {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.35;
}

.product-tag,
.product-tag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-tag-section .product-tag,
.product-tag-section .product-tag-chip {
  min-height: 56px;
  font-size: 17px;
  line-height: 1.2;
  padding: 13px 24px;
}

.product-collapse-toggle {
  position: relative;
  z-index: 1;
  margin: 14px auto -18px;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
  align-items: start;
}

.product-related-grid .product-card {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.product-related-grid .product-cover {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.product-related-grid .product-card small {
  margin-top: auto;
}

.text-page {
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.98), rgba(244, 241, 249, 0.9) 48%, rgba(255, 247, 251, 1)),
    var(--bg);
}

.text-section {
  max-width: 1060px;
  margin: 0 auto;
}

.text-page .text-section[aria-labelledby="terms-title"],
.tips-list-page .text-section {
  padding-top: clamp(28px, 4vw, 46px);
}

.tip-article-page .article-section {
  padding-top: clamp(28px, 4vw, 46px);
}

@media (min-width: 1024px) {
  .text-page .text-section[aria-labelledby="terms-title"],
  .tips-list-page .text-section,
  .tip-article-page .article-shell {
    transform: translateX(clamp(10px, 2vw, 44px));
  }
}

.text-panel {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(219, 80, 136, 0.1);
  padding: clamp(24px, 5vw, 54px);
  backdrop-filter: blur(18px);
}

.text-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
}

.text-panel h2 {
  margin-top: clamp(28px, 4vw, 42px);
  font-size: clamp(22px, 3vw, 32px);
}

.text-panel ul,
.text-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.text-panel li::marker {
  color: var(--accent-2);
  font-weight: 800;
}

.text-panel code {
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #9f3f68;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.1em 0.35em;
}

.terms-tabs {
  margin-top: clamp(24px, 4vw, 36px);
}

.terms-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.terms-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  margin-bottom: clamp(22px, 4vw, 34px);
  padding: 8px;
}

.terms-tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(219, 80, 136, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(52, 36, 44, 0.72);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.terms-tab-button:hover {
  border-color: rgba(219, 80, 136, 0.42);
  color: var(--accent-2);
  transform: translateY(-1px);
}

#terms-site:checked ~ .terms-tab-list label[for="terms-site"],
#terms-booth:checked ~ .terms-tab-list label[for="terms-booth"] {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(219, 80, 136, 0.24);
}

#terms-site:focus-visible ~ .terms-tab-list label[for="terms-site"],
#terms-booth:focus-visible ~ .terms-tab-list label[for="terms-booth"] {
  outline: 3px solid rgba(255, 124, 202, 0.38);
  outline-offset: 3px;
}

.terms-tab-panel {
  display: none;
}

#terms-site:checked ~ .terms-tab-panels .terms-tab-panel-site,
#terms-booth:checked ~ .terms-tab-panels .terms-tab-panel-booth {
  display: block;
}

.terms-tab-panel h2:first-child {
  margin-top: 0;
}

.terms-license-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.terms-license-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 12px 0 clamp(18px, 3vw, 26px);
}

.terms-license-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  border: 1px solid rgba(219, 80, 136, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(52, 36, 44, 0.72);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  padding: 8px 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.terms-license-button:hover {
  border-color: rgba(219, 80, 136, 0.42);
  color: var(--accent-2);
  transform: translateY(-1px);
}

.terms-license-button.is-disabled,
.terms-license-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

#license-ja:checked ~ .terms-license-switch label[for="license-ja"],
#license-en:checked ~ .terms-license-switch label[for="license-en"],
#license-ko:checked ~ .terms-license-switch label[for="license-ko"],
#license-zh:checked ~ .terms-license-switch label[for="license-zh"] {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(219, 80, 136, 0.24);
}

#license-ja:focus-visible ~ .terms-license-switch label[for="license-ja"],
#license-en:focus-visible ~ .terms-license-switch label[for="license-en"],
#license-ko:focus-visible ~ .terms-license-switch label[for="license-ko"],
#license-zh:focus-visible ~ .terms-license-switch label[for="license-zh"] {
  outline: 3px solid rgba(255, 124, 202, 0.38);
  outline-offset: 3px;
}

.terms-license-panel {
  display: none;
}

#license-ja:checked ~ .terms-license-panels .terms-license-panel-ja,
#license-en:checked ~ .terms-license-panels .terms-license-panel-en,
#license-ko:checked ~ .terms-license-panels .terms-license-panel-ko,
#license-zh:checked ~ .terms-license-panels .terms-license-panel-zh {
  display: block;
}

.terms-license-pages {
  display: grid;
  gap: clamp(14px, 3vw, 22px);
  margin-top: clamp(18px, 3vw, 28px);
}

.terms-license-page {
  overflow: hidden;
  border: 1px solid rgba(219, 80, 136, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(42, 22, 34, 0.12);
  margin: 0;
}

.terms-license-page img {
  display: block;
  width: 100%;
  height: auto;
}

.tips-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(22px, 4vw, 34px) 0;
}

.tips-index a {
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(52, 36, 44, 0.68);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
  box-shadow: 0 12px 24px rgba(219, 80, 136, 0.08);
  transition: color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tips-index a:hover {
  color: var(--accent-2);
  box-shadow: 0 16px 28px rgba(219, 80, 136, 0.12);
  transform: translateY(-1px);
}

.tips-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-top: clamp(22px, 4vw, 34px);
}

.tips-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
}

.tip-thumb-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.08);
  padding: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tip-thumb-card:hover {
  border-color: rgba(255, 124, 202, 0.38);
  box-shadow: 0 16px 32px rgba(219, 80, 136, 0.13);
  transform: translateY(-1px);
}

.tip-thumb-card strong,
.tip-thumb-card small {
  display: block;
}

.tip-thumb-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.tip-thumb-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}

.tip-thumb {
  display: grid;
  width: 72px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 20px rgba(219, 80, 136, 0.16);
}

.thumb-unity {
  background: linear-gradient(135deg, #ed6d9f, #f7aac8);
}

.thumb-prefab {
  background: linear-gradient(135deg, #9d7fe6, #f0a5da);
}

.thumb-photo {
  background: linear-gradient(135deg, #5fb9b2, #b2eadf);
}

.thumb-check {
  background: linear-gradient(135deg, #f08b6f, #f9d197);
}

.tip-thumb-icon {
  overflow: hidden;
  background: rgba(255, 245, 250, 0.74);
}

.tip-thumb-icon img {
  display: block;
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.thumb-edit {
  background: linear-gradient(135deg, #7da6e8, #b8d3ff);
}

.thumb-game {
  background: linear-gradient(135deg, #a2c96f, #e8e38d);
}

.tips-detail {
  min-width: 0;
}

.tips-column-layout,
.tip-article-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  margin-top: clamp(24px, 4vw, 36px);
}

.tips-list-only {
  display: block;
  max-width: 980px;
  margin-inline: auto;
}

.tips-list-column {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.tip-list-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 251, 0.58));
  box-shadow: 0 16px 34px rgba(219, 80, 136, 0.1);
  min-height: 168px;
  padding: clamp(12px, 2vw, 16px);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tip-list-card:hover {
  border-color: rgba(255, 124, 202, 0.38);
  box-shadow: 0 20px 40px rgba(219, 80, 136, 0.16);
  transform: translateY(-2px);
}

.tip-list-card[hidden] {
  display: none;
}

.tip-list-card .tip-thumb {
  width: 148px;
  font-size: 16px;
}

.tip-list-image {
  display: block;
  width: 148px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 245, 250, 0.72);
  box-shadow: 0 10px 22px rgba(219, 80, 136, 0.14);
}

.tip-list-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-list-body,
.tip-list-body strong,
.tip-list-body span,
.tip-list-body small {
  display: block;
}

.tip-list-body strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  margin-top: 6px;
}

.tip-list-body span {
  color: rgba(52, 36, 44, 0.76);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  line-height: 1.5;
  margin-top: 6px;
}

.tip-list-body small {
  color: var(--muted);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 700;
  line-height: 1.65;
  margin-top: 8px;
}

.tip-card-meta,
.tip-list-body .tip-card-meta {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 0;
}

.tips-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 40px);
}

.tips-page-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 124, 202, 0.28);
  border-radius: 50%;
  background: rgba(255, 111, 189, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 20px rgba(255, 111, 189, 0.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.tips-page-arrow:hover:not(:disabled) {
  border-color: rgba(255, 154, 214, 0.68);
  background: rgba(255, 111, 189, 0.86);
  transform: translateY(-2px);
}

.tips-page-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.tips-page-status {
  min-width: 72px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.article-section {
  padding-top: clamp(28px, 5vw, 58px);
}

.article-shell {
  max-width: 980px;
  margin-inline: auto;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 124, 202, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(52, 36, 44, 0.66);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 900;
  margin: 0 0 clamp(16px, 2vw, 24px);
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(219, 80, 136, 0.08);
}

.article-breadcrumb a {
  color: rgba(52, 36, 44, 0.72);
  transition: color 160ms ease;
}

.article-breadcrumb a:hover {
  color: var(--accent-2);
}

.blog-article {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 251, 0.54));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 20px 48px rgba(219, 80, 136, 0.1);
  padding: clamp(24px, 5vw, 58px);
}

.article-header h1 {
  max-width: 1120px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.24;
  margin: 6px 0 0;
  text-wrap: pretty;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(52, 36, 44, 0.58);
  font-size: 14px;
  font-weight: 900;
  margin-top: 14px;
}

.article-meta-row span::before {
  color: rgba(255, 124, 202, 0.45);
  content: "/";
  margin-right: 10px;
}

.article-lead {
  color: rgba(52, 36, 44, 0.72);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.9;
  margin-top: clamp(18px, 3vw, 26px);
}

.article-visual {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  border: 1px solid rgba(255, 124, 202, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 238, 247, 0.64));
  box-shadow: 0 16px 34px rgba(219, 80, 136, 0.09);
  margin-top: clamp(24px, 4vw, 34px);
  padding: clamp(14px, 3vw, 22px);
}

.article-visual .tip-thumb {
  width: min(180px, 100%);
  font-size: clamp(16px, 2.2vw, 22px);
}

.article-visual-image {
  display: block;
  width: min(180px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 245, 250, 0.74);
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.14);
}

.article-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-visual strong,
.article-visual p {
  display: block;
}

.article-visual strong {
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
}

.article-visual p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
  margin-top: 10px;
}

.article-toc {
  border: 1px solid rgba(255, 124, 202, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(16px, 3vw, 24px);
}

.article-toc p {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  padding-left: 1.25em;
}

.article-toc a {
  color: rgba(52, 36, 44, 0.72);
  font-weight: 800;
}

.article-toc-label {
  color: var(--text);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 14px;
}

.article-toc > a {
  display: block;
  margin-top: 8px;
}

.article-toc a:hover {
  color: var(--accent-2);
}

.article-body-section {
  margin-top: clamp(30px, 5vw, 48px);
}

.article-body-section h2 {
  position: relative;
  border: 1px solid rgba(255, 124, 202, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 239, 247, 0.64));
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.08);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  margin: 0 0 clamp(14px, 2vw, 20px);
  padding: 14px 18px 14px 24px;
}

.article-body-section h2::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 10px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  content: "";
}

.article-body-section p,
.article-body-section li {
  color: rgba(52, 36, 44, 0.72);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 750;
  line-height: 1.95;
}

.article-body-section h3 {
  margin-top: clamp(20px, 3vw, 30px);
  color: var(--text);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.article-body-section a {
  color: var(--accent-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body-section a.modular-avatar-link {
  color: #2563eb;
}

.article-note,
.article-warning {
  border: 1px solid rgba(255, 124, 202, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.08);
  margin-top: clamp(16px, 3vw, 24px);
  padding: clamp(14px, 2.4vw, 20px);
}

.article-note {
  border-left: 6px solid rgba(237, 109, 159, 0.72);
}

.article-warning {
  border-left: 6px solid rgba(240, 139, 111, 0.78);
  background: rgba(255, 248, 243, 0.72);
}

.article-image-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 124, 202, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(219, 80, 136, 0.12);
  max-width: min(760px, 100%);
  margin: clamp(18px, 3vw, 26px) auto 0;
}

.article-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.article-code-block {
  overflow-x: auto;
  border: 1px solid rgba(255, 124, 202, 0.16);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.75;
  margin: clamp(18px, 3vw, 26px) 0 0;
  padding: clamp(14px, 2.4vw, 20px);
}

.article-code-block code {
  color: inherit;
  font: inherit;
  white-space: pre;
}

.article-summary-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 124, 202, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 251, 0.64));
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.1);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
  padding: 16px 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus {
  outline: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(255, 154, 214, 0.72);
  outline-offset: -2px;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--accent-2);
  font-weight: 900;
  line-height: 1.55;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item-body {
  border-top: 1px solid rgba(255, 124, 202, 0.12);
  padding: 0 18px 18px;
}

.faq-item-body ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 1.25em;
}

.faq-item-body p,
.faq-item-body li {
  font-size: clamp(15px, 1.6vw, 17px);
}

.faq-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 12px;
  align-items: start;
  margin-top: 14px;
}

.faq-image-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 124, 202, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(219, 80, 136, 0.1);
}

@media (max-width: 560px) {
  .faq-image-grid {
    grid-template-columns: 1fr;
  }
}

.faq-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25em;
}

.article-actions {
  border-top: 1px solid rgba(255, 124, 202, 0.14);
  padding-top: clamp(20px, 4vw, 32px);
}

.article-next-prev {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 111, 189, 0.26);
  border-bottom: 1px solid rgba(255, 111, 189, 0.26);
  margin-top: clamp(34px, 5vw, 54px);
}

.article-nav-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: center;
  min-height: 132px;
  padding: clamp(18px, 3vw, 24px);
  color: var(--text);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-nav-card + .article-nav-card {
  border-left: 1px solid rgba(255, 111, 189, 0.24);
}

.article-nav-card:hover {
  background: rgba(255, 111, 189, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 111, 189, 0.08);
  transform: translateY(-1px);
}

.article-nav-card-next {
  grid-template-columns: minmax(0, 1fr) 92px;
  text-align: right;
}

.article-nav-card-plain,
.article-nav-card-next.article-nav-card-plain {
  grid-template-columns: minmax(0, 1fr);
  min-height: 116px;
}

.article-nav-card-plain.article-nav-card-prev {
  text-align: left;
}

.article-nav-card-plain.article-nav-card-next {
  text-align: center;
}

.article-nav-label {
  position: absolute;
  top: -14px;
  border: 1px solid rgba(255, 111, 189, 0.36);
  border-radius: 4px;
  background: var(--panel);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 6px 10px;
}

.article-nav-card-prev .article-nav-label {
  left: 18px;
}

.article-nav-card-next .article-nav-label {
  right: 18px;
}

.article-nav-thumb,
.article-related-thumb {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 111, 189, 0.28);
  border-radius: 6px;
  background: rgba(10, 10, 14, 0.82);
}

.article-nav-thumb {
  aspect-ratio: 1 / 1;
}

.article-nav-thumb img,
.article-related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-nav-title {
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.article-related {
  margin-top: clamp(28px, 5vw, 42px);
}

.article-related h2 {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 111, 189, 0.3);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 111, 189, 0.24), rgba(255, 154, 214, 0.14));
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  margin: 0;
}

.article-related-list {
  display: grid;
  border-bottom: 1px solid rgba(255, 111, 189, 0.18);
}

.article-related-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: center;
  border-top: 1px solid rgba(255, 111, 189, 0.18);
  padding: clamp(14px, 2.4vw, 20px) 0;
  transition: transform 160ms ease, color 160ms ease;
}

.article-related-item:hover {
  transform: translateX(2px);
}

.article-related-thumb {
  aspect-ratio: 1 / 1;
}

.article-related-copy {
  display: grid;
  gap: 4px;
}

.article-related-copy strong {
  color: var(--text);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.article-related-copy small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.tip-block {
  scroll-margin-top: 108px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 247, 251, 0.52));
  margin-top: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 14px 34px rgba(219, 80, 136, 0.08);
}

.tip-block h2 {
  margin-top: 4px;
}

.tip-block h3 {
  margin-top: clamp(18px, 3vw, 28px);
  font-size: clamp(18px, 2vw, 24px);
}

.tips-detail .tip-block:first-child {
  margin-top: 0;
}

.prefab-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.prefab-list li {
  border: 1px solid rgba(255, 124, 202, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  padding: 12px;
}

.text-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 36px);
}

.character-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: flex-start;
  padding: clamp(20px, 3.4vw, 42px) clamp(18px, 5vw, 72px) clamp(22px, 2.8vw, 34px);
  border-bottom: 1px solid var(--line);
  background: #fff0f6;
}

.character-copy {
  max-width: 760px;
}

.character-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: rgba(73, 45, 59, 0.58);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.character-breadcrumb a {
  color: #d7318e;
  text-decoration: none;
  transition: color 160ms ease;
}

.character-breadcrumb a:hover {
  color: #9d1764;
}

.character-breadcrumb span {
  color: rgba(73, 45, 59, 0.45);
}

.character-copy h1 {
  margin-bottom: clamp(12px, 1.6vw, 16px);
  font-size: clamp(38px, 6vw, 72px);
}

.character-copy p:not(.avatar-credit) {
  margin-bottom: clamp(14px, 1.8vw, 18px);
}

.character-copy .hero-actions {
  margin-top: clamp(20px, 2.6vw, 28px);
}

.avatar-credit {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.avatar-credit a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.character-main-image {
  width: min(420px, 32vw);
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-self: flex-start;
  border: 2px solid rgba(255, 111, 189, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255, 111, 189, 0.16), transparent 42%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 111, 189, 0.1) 46%, rgba(255, 255, 255, 0.06)),
    rgba(18, 15, 22, 0.62);
  object-fit: contain;
  object-position: center top;
  justify-self: center;
  overflow: hidden;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 111, 189, 0.14),
    inset 0 0 26px rgba(255, 255, 255, 0.08);
}

.standing-main-image,
.pose-card img[src*="standing/"] {
  box-sizing: border-box;
  object-fit: contain;
  padding: clamp(12px, 3vw, 26px);
}

.character-main-image.standing-main-image {
  padding: clamp(18px, 3.5vw, 34px);
}

.catalog-section {
  background: var(--bg);
  padding-top: clamp(22px, 2.8vw, 38px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}

.catalog-download {
  min-width: 180px;
  min-height: 50px;
  padding: 12px 22px;
}

.free-pose-full-download {
  gap: 11px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(219, 80, 136, 0.18);
  white-space: nowrap;
}

.free-pose-full-download::after {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v8.17l3.59-3.58L18 10l-6 6-6-6 1.41-1.41L11 12.17V4Zm-5 14h12v2H6v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v8.17l3.59-3.58L18 10l-6 6-6-6 1.41-1.41L11 12.17V4Zm-5 14h12v2H6v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.free-pose-full-download:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 26px rgba(219, 80, 136, 0.24);
}

.pose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  justify-items: center;
}

.catalog-section .free-pose-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 16px;
  align-items: start;
}

.pose-card {
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.free-pose-grid .pose-card {
  max-width: none;
}

.pose-card img,
.pose-preview {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  object-position: center top;
  background: #fff0f6;
}

.catalog-section .free-pose-card img {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255, 111, 189, 0.16), transparent 42%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 111, 189, 0.1) 46%, rgba(255, 255, 255, 0.06)),
    rgba(18, 15, 22, 0.62);
  object-fit: cover;
}

.catalog-section .free-pose-card > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-items: center;
  padding: 12px 0 28px;
  text-align: center;
}

.catalog-section .free-pose-card h3 {
  display: inline-flex;
  height: 1.25em;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.catalog-section .free-pose-card .button {
  width: min(86%, 200px);
  min-width: 170px;
  min-height: 56px;
  gap: 11px;
  margin-top: 0;
  border-color: rgba(255, 154, 214, 0.56);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff67b8, #d653d6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(219, 80, 136, 0.18),
    0 0 16px rgba(255, 111, 189, 0.08);
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 950;
  justify-self: center;
  padding: 12px 22px;
}

.catalog-section .free-pose-card .button::after {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v8.17l3.59-3.58L18 10l-6 6-6-6 1.41-1.41L11 12.17V4Zm-5 14h12v2H6v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v8.17l3.59-3.58L18 10l-6 6-6-6 1.41-1.41L11 12.17V4Zm-5 14h12v2H6v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.catalog-section .free-pose-card .button:hover {
  border-color: rgba(255, 211, 237, 0.82);
  background: linear-gradient(135deg, #ff7fc5, #df63e0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 26px rgba(219, 80, 136, 0.24),
    0 0 18px rgba(255, 111, 189, 0.12);
}

.pose-preview::before {
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  animation: previewMotion 5s linear infinite;
}

.pose-card > div {
  padding: 10px 2px 0;
}

.pose-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.45;
}

.pose-card .tag {
  margin-bottom: 4px;
  font-size: 11px;
}

.pose-card .button {
  min-height: 34px;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 14px;
}

.site-footer {
  position: relative;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  padding: clamp(24px, 3vw, 34px) clamp(18px, 5vw, 72px);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.78), rgba(244, 241, 249, 0.96)),
    #f4f1f8;
  color: rgba(52, 36, 44, 0.48);
}

.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  justify-content: center;
}

.footer-brand img {
  display: block;
  width: clamp(118px, 13vw, 178px);
  height: auto;
  flex: 0 0 auto;
}

.footer-brand span {
  color: rgba(52, 36, 44, 0.46);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  white-space: nowrap;
}

.footer-links {
  position: absolute;
  right: clamp(12px, 2.6vw, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(116, 99, 132, 0.12);
  padding: 7px 20px 7px 7px;
  color: var(--text);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-footer .footer-pill:hover {
  box-shadow: 0 18px 40px rgba(116, 99, 132, 0.16);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-pill-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 111, 189, 0.84);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.footer-pill-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-pill-icon img[src$="x_logo-white_footer.webp"] {
  width: 22px;
  height: 22px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(255, 238, 247, 0.92);
  backdrop-filter: blur(18px);
}

.age-gate.is-hidden {
  display: none;
}

html.age-confirmed .age-gate {
  display: none;
}

.age-gate-open {
  overflow: hidden;
}

.age-panel {
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.age-panel h1,
.age-panel h2 {
  font-size: clamp(30px, 6vw, 48px);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 111, 189, 0.18), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(255, 154, 214, 0.1), transparent 26%),
    linear-gradient(180deg, #07070b 0%, #0c0b12 48%, #07070b 100%);
  color-scheme: dark;
}

.site-header {
  background: rgba(8, 7, 10, 0.9);
  border-bottom-color: rgba(255, 111, 189, 0.24);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.brand-logo,
.footer-brand img {
  filter: drop-shadow(0 8px 18px rgba(255, 111, 189, 0.16));
}

.brand-subtitle {
  color: rgba(255, 247, 251, 0.55);
}

.nav,
.article-meta-row,
.footer-brand span,
.site-footer {
  color: rgba(255, 247, 251, 0.62);
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover,
.article-breadcrumb a:hover,
.article-toc a:hover,
.language-option:hover {
  color: var(--accent-2);
}

.language-switch,
.share-button,
.article-breadcrumb,
.article-toc,
.article-note,
.article-image-frame,
.prefab-list li,
.avatar-credit,
.tips-index a,
.footer-pill,
.text-panel code {
  border-color: rgba(255, 111, 189, 0.26);
  background: rgba(18, 15, 22, 0.78);
  color: var(--text);
}

.language-option {
  color: rgba(255, 247, 251, 0.66);
}

.share-button {
  color: rgba(255, 247, 251, 0.72);
}

.language-option[aria-pressed="true"],
.nav a[aria-current="page"],
.footer-pill-icon {
  background: rgba(255, 111, 189, 0.9);
  color: #ffffff;
}

.button {
  color: var(--text);
}

.button.secondary,
.button.ghost,
.button.compact {
  background: rgba(255, 111, 189, 0.12);
}

.booth-strip,
.intro,
.free-section,
.sales-band,
.character-list-page,
.booth-list-page,
.product-page,
.text-page,
.character-hero,
.catalog-section,
.site-footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 111, 189, 0.14), transparent 28%),
    linear-gradient(180deg, #07070b 0%, #0e0b13 54%, #07070b 100%);
}

.booth-strip {
  border-bottom-color: rgba(255, 111, 189, 0.22);
}

.free-panel,
.text-panel,
.blog-article,
.tip-block,
.tip-list-card,
.tip-thumb-card,
.material-card,
.product-summary,
.product-detail-block,
.product-card,
.age-panel {
  border-color: rgba(255, 111, 189, 0.26);
  background: linear-gradient(135deg, rgba(22, 18, 24, 0.94), rgba(35, 25, 39, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(255, 111, 189, 0.08);
}

.hero-art {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 111, 189, 0.22), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(255, 209, 102, 0.14), transparent 26%),
    linear-gradient(145deg, #120d16, #24162a 58%, #07070b);
}

.hero-art span,
.thumb,
.thumb.has-image,
.product-cover,
.pose-card img,
.pose-preview {
  background: #131017;
}

.thumb::before,
.product-cover::before {
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.26) 20% 22%, transparent 22% 38%),
    radial-gradient(circle at 35% 45%, var(--accent), transparent 20%),
    radial-gradient(circle at 70% 38%, var(--accent-2), transparent 18%);
}

.product-card:hover,
.booth-list-thumb:hover,
.tip-list-card:hover,
.tip-thumb-card:hover {
  border-color: rgba(255, 154, 214, 0.54);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(255, 111, 189, 0.14);
}

.booth-list-thumb {
  border: 1px solid rgba(255, 111, 189, 0.2);
  background: rgba(10, 10, 14, 0.72);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(255, 111, 189, 0.08);
}

.footer-pill {
  border: 1px solid rgba(255, 111, 189, 0.24);
}

::selection {
  background: rgba(255, 111, 189, 0.38);
  color: #ffffff;
}

.tip-list-image,
.article-visual-image,
.tip-thumb {
  border-color: rgba(255, 111, 189, 0.28);
  background: rgba(10, 10, 14, 0.82);
}

.tip-list-body strong,
.tip-thumb-card strong,
.article-visual strong,
.character-list-name,
.booth-strip p,
.product-card strong,
.pose-card h3,
.footer-pill {
  color: var(--text);
}

.tip-list-body span,
.article-body-section p,
.article-body-section li,
.article-lead,
.article-visual p,
.article-toc a,
.article-breadcrumb,
.article-breadcrumb a,
.character-list-subname,
.product-card small,
.rule-list li,
.text-panel ul,
.text-panel ol,
.avatar-credit,
p {
  color: var(--muted);
}

.article-body-section h2,
.article-visual {
  border-color: rgba(255, 111, 189, 0.24);
  background: linear-gradient(135deg, rgba(31, 24, 36, 0.92), rgba(46, 30, 52, 0.72));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.article-warning {
  border-color: rgba(240, 139, 111, 0.34);
  background: rgba(45, 25, 20, 0.82);
}

.faq-item {
  border-color: rgba(255, 111, 189, 0.32);
  background: linear-gradient(135deg, rgba(24, 18, 30, 0.96), rgba(43, 27, 49, 0.86));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-item[open] {
  border-color: rgba(255, 154, 214, 0.5);
}

.faq-item summary {
  color: var(--text);
}

.faq-item-body {
  border-top-color: rgba(255, 111, 189, 0.18);
  background: rgba(10, 8, 14, 0.22);
}

.faq-item-body p,
.faq-item-body li {
  color: rgba(255, 237, 247, 0.78);
}

.faq-image-grid img {
  border-color: rgba(255, 111, 189, 0.24);
  background: rgba(10, 8, 14, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.terms-tab-list {
  border-color: rgba(255, 111, 189, 0.24);
  background: rgba(10, 8, 14, 0.36);
}

.terms-tab-button {
  border-color: rgba(255, 111, 189, 0.28);
  background: rgba(12, 10, 16, 0.58);
  color: rgba(255, 237, 247, 0.78);
}

.terms-tab-button:hover {
  border-color: rgba(255, 154, 214, 0.52);
  color: var(--text);
}

.terms-license-button {
  border-color: rgba(255, 111, 189, 0.28);
  background: rgba(12, 10, 16, 0.58);
  color: rgba(255, 237, 247, 0.78);
}

.terms-license-button:hover {
  border-color: rgba(255, 154, 214, 0.52);
  color: var(--text);
}

.terms-license-page {
  border-color: rgba(255, 111, 189, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.article-meta-row span::before {
  color: rgba(255, 111, 189, 0.7);
}

.article-actions {
  border-top-color: rgba(255, 111, 189, 0.2);
}

.character-list-card::before {
  border-color: rgba(255, 111, 189, 0.26);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255, 111, 189, 0.16), transparent 42%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 111, 189, 0.1) 46%, rgba(255, 255, 255, 0.06)),
    rgba(18, 15, 22, 0.62);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 111, 189, 0.12),
    inset 0 0 28px rgba(255, 255, 255, 0.08);
}

.character-list-card::after {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 255, 255, 0.04) 40%, transparent 56%),
    linear-gradient(28deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(255, 111, 189, 0.16) 72%, transparent 100%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.1),
    inset 0 0 34px rgba(255, 111, 189, 0.14);
}

.character-list-card:hover::before {
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 111, 189, 0.16),
    inset 0 0 32px rgba(255, 255, 255, 0.1);
}

.character-list-image img {
  filter:
    drop-shadow(0 14px 18px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.age-gate {
  background: rgba(8, 7, 10, 0.94);
}

@keyframes scan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 240px 0, 0 0;
  }
}

@keyframes floatBar {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(-12px) scaleX(0.86);
  }
}

@keyframes previewMotion {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 880px) {
  .site-header,
  .booth-strip,
  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 12px;
    padding-block: 12px;
  }

  .nav {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: start;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    font-size: 15px;
    order: 3;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255, 111, 189, 0.1);
    padding: 8px 12px;
    white-space: nowrap;
  }

  .language-switch {
    margin: 0;
  }

  .header-actions {
    order: 2;
    margin: 0;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .brand-subtitle {
    font-size: 14px;
    white-space: normal;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-brand span {
    white-space: normal;
  }

  .footer-links {
    position: static;
    margin-left: 0;
  }

  .booth-list-intro {
    grid-template-columns: 1fr;
    align-items: stretch;
    row-gap: 10px;
  }

  .booth-list-intro-copy {
    grid-column: 1;
  }

  .booth-list-intro .booth-sort-tabs {
    grid-column: 1;
    align-self: center;
    margin: 0;
    padding-bottom: 0;
  }

  .booth-filter-panel {
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
    position: relative;
  }

  .booth-filter-status.booth-list-count {
    display: inline-flex;
    position: absolute;
    right: 14px;
    bottom: 14px;
    align-items: center;
    min-width: auto;
    min-height: 34px;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
  }

  .booth-filter-panel .booth-filter-heading {
    grid-column: 1;
  }

  .booth-filter-panel .booth-filter-tabs {
    grid-column: 1 / -1;
    padding-right: 68px;
  }

  .booth-subtag-panel {
    grid-template-columns: 1fr;
  }

  .character-author-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .booth-filter-tabs,
  .booth-sort-tabs,
  .booth-subtag-tabs,
  .booth-filter-status {
    grid-column: 1;
  }

  .character-author-status {
    justify-self: start;
    text-align: left;
  }

  .booth-filter-status {
    text-align: left;
  }

  .booth-sort-tabs {
    justify-content: flex-start;
  }

  .booth-pagination {
    gap: 10px;
  }

  .booth-page-button {
    flex: 1;
    min-width: 0;
  }

  .hero,
  .intro,
  .guideline,
  .tips-layout,
  .tips-column-layout,
  .tip-article-layout,
  .character-hero,
  .links-hero,
  .product-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .product-lightbox {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .product-lightbox-stage {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 46px;
  }

  .product-lightbox-side {
    align-self: stretch;
    padding: 0;
    transform: none;
  }

  .product-lightbox-thumbs {
    display: flex;
    max-height: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .product-lightbox-thumb {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
  }

  .tips-sidebar {
    position: static;
  }

  .tips-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 360px;
    order: -1;
  }

  .material-grid,
  .product-row,
  .product-slider,
  .pose-grid {
    grid-template-columns: 1fr;
  }

  .product-slider {
    align-items: start;
    grid-auto-columns: 100%;
    grid-template-columns: none;
  }

  .product-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    align-items: start;
    grid-auto-rows: max-content;
    gap: 16px;
  }

  .product-card {
    display: block;
    align-self: start;
    height: max-content;
  }

  .product-card strong,
  .product-card small {
    padding-inline: 12px;
  }

  .product-card strong {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-card small {
    min-height: 0;
    padding-bottom: 12px;
  }

  .material-slider {
    grid-auto-columns: minmax(280px, 88%);
    grid-template-columns: none;
  }

  .character-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-profile-icon {
    width: clamp(104px, 28vw, 132px);
    height: clamp(104px, 28vw, 132px);
  }

  .links-mini-grid {
    grid-template-columns: 1fr;
  }

  .links-internal {
    max-width: 520px;
  }

  .booth-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

@media (max-width: 560px) {
  .tips-sidebar,
  .prefab-list {
    grid-template-columns: 1fr;
  }

  .section,
  .sub-hero,
  .character-hero {
    padding-inline: 16px;
  }

  .brand-logo {
    width: min(44vw, 156px);
  }

  .brand-subtitle {
    font-size: 13px;
    line-height: 1.45;
  }

  .links-hero {
    gap: 26px;
    padding-top: 20px;
    padding-bottom: 26px;
  }

  .links-profile-icon {
    width: 108px;
    height: 108px;
  }

  .link-card {
    min-height: 76px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .link-card-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .link-card-body strong {
    font-size: 18px;
  }

  .link-card-body small {
    font-size: 13px;
    line-height: 1.5;
  }

  .links-internal {
    padding-top: 10px;
  }

  .links-mini-card {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
  }

  .links-mini-card strong {
    font-size: 17px;
    white-space: normal;
  }

  .links-mini-card span {
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
  }

  .language-switch {
    margin-top: 2px;
  }

  .share-button {
    margin-top: 2px;
  }

  .product-slider {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-inline: 0;
    scroll-snap-type: inline proximity;
    touch-action: pan-x pan-y;
  }

  .product-slide {
    display: flex;
    width: max-content;
    max-width: none;
    flex: 0 0 auto;
    align-items: flex-start;
    gap: 14px;
  }

  .product-card {
    display: flex;
    width: clamp(150px, 42vw, 174px);
    flex: 0 0 clamp(150px, 42vw, 174px);
    height: clamp(270px, 72vw, 310px);
    flex-direction: column;
    scroll-snap-align: start;
  }

  .product-cover {
    flex: 0 0 auto;
    height: clamp(150px, 42vw, 174px);
    max-height: none;
  }

  .product-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card small {
    margin-top: auto;
  }

  .slider-dots {
    margin-top: 10px;
  }

  .site-footer {
    gap: 14px;
  }

  .footer-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-pill {
    min-height: 40px;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    font-size: 12px;
  }

  .footer-pill-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .free-panel,
  .text-panel,
  .blog-article,
  .tip-block {
    padding: 18px;
  }

  .material-slider {
    grid-auto-columns: minmax(170px, 52%);
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 14px;
  }

  .thumb.has-image {
    aspect-ratio: 4 / 5;
  }

  .character-list-section,
  .booth-list-section {
    padding-top: 24px;
  }

  .character-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .character-list-card {
    min-height: clamp(220px, 62vw, 300px);
    padding-bottom: 12px;
  }

  .character-list-card::before,
  .character-list-card::after {
    inset: -18px 0 0;
    border-radius: 18px;
  }

  .character-list-image {
    width: min(112%, 220px);
  }

  .character-list-image img {
    transform: translateX(var(--character-x)) scale(1.08);
  }

  .character-list-name {
    margin-top: -8px;
    font-size: 16px;
  }

  .booth-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-hero {
    padding-top: 22px;
  }

  .product-main-figure {
    justify-self: center;
    width: 100%;
    max-width: 430px;
  }

  .product-thumbnail-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .product-thumbnail-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .product-summary {
    padding: 18px;
  }

  .product-summary h1 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-buy-button {
    min-height: 54px;
    font-size: 16px;
  }

  .product-lightbox-image {
    max-height: 58vh;
  }

  .product-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .product-lightbox-close {
    top: -52px;
    right: -6px;
    width: 48px;
    height: 48px;
    font-size: 54px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-block {
    padding: 18px;
  }

  .booth-filter-panel {
    padding: 14px;
  }

  .booth-filter-status {
    text-align: right;
  }

  .booth-sort-tabs {
    gap: 8px;
  }

  .booth-filter-button,
  .booth-sort-button {
    min-height: 44px;
    font-size: 14px;
    padding: 9px 14px;
  }

  .booth-sort-button {
    min-width: 86px;
  }

  .booth-pagination {
    flex-wrap: wrap;
  }

  .booth-page-status {
    order: -1;
    width: 100%;
  }

  .tip-list-body strong {
    font-size: 20px;
  }

  .tip-list-card {
    grid-template-columns: 1fr;
  }

  .tip-list-card .tip-thumb,
  .tip-list-image {
    width: 100%;
    min-height: 132px;
  }

  .tips-list-page .text-panel {
    padding: 14px;
  }

  .tips-list-page .text-panel h1 {
    font-size: 34px;
  }

  .tips-list-page .tips-column-layout {
    margin-top: 18px;
  }

  .tips-list-page .tips-list-column {
    gap: 10px;
  }

  .tips-list-page .tip-list-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 0;
    padding: 10px;
  }

  .tips-list-page .tip-list-image {
    width: 92px;
    min-height: 0;
  }

  .tips-list-page .tip-list-body strong {
    font-size: 16px;
    line-height: 1.35;
    margin-top: 4px;
  }

  .tips-list-page .tip-list-body span {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 3px;
  }

  .tips-list-page .tip-list-body small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .tips-list-page .tip-card-meta {
    font-size: 11px;
  }

  .article-visual {
    grid-template-columns: 1fr;
  }

  .article-visual .tip-thumb,
  .article-visual-image {
    width: 100%;
    min-height: 160px;
  }

  .article-next-prev {
    grid-template-columns: 1fr;
  }

  .article-nav-card,
  .article-nav-card-next {
    grid-template-columns: 74px minmax(0, 1fr);
    text-align: left;
  }

  .article-nav-card.article-nav-card-plain,
  .article-nav-card-next.article-nav-card-plain {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-nav-card + .article-nav-card {
    border-top: 1px solid rgba(255, 111, 189, 0.24);
    border-left: 0;
  }

  .article-nav-card-next .article-nav-title {
    order: 2;
  }

  .article-nav-card-next.article-nav-card-plain .article-nav-title {
    order: 0;
  }

  .article-nav-card-next .article-nav-thumb {
    order: 1;
  }

  .article-nav-card-next .article-nav-label {
    right: auto;
    left: 18px;
  }

  .article-meta-row span::before {
    content: none;
    margin-right: 0;
  }
}

@media (max-width: 1023px) {
  .site-header {
    gap: clamp(14px, 3vw, 24px);
    padding: 14px clamp(16px, 4vw, 40px);
  }

  .section,
  .sub-hero,
  .character-hero {
    padding-inline: clamp(18px, 5vw, 48px);
  }

  .section-heading {
    gap: 16px;
  }

  .brand-logo {
    width: clamp(130px, 28vw, 188px);
  }

  .brand-subtitle {
    font-size: clamp(13px, 2.2vw, 16px);
  }

  .nav {
    gap: clamp(8px, 2vw, 18px);
  }

  .nav a {
    padding: 7px 12px;
  }

  .sales-band-top {
    padding-top: clamp(16px, 4vw, 28px);
    padding-bottom: clamp(18px, 4vw, 34px);
  }

  .product-slider {
    display: flex;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-inline: 0;
    scroll-snap-type: inline mandatory;
    touch-action: pan-x pan-y;
  }

  .product-slide {
    display: flex;
    width: max-content;
    max-width: none;
    flex: 0 0 auto;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 18px;
    scroll-snap-align: start;
  }

  .product-card {
    display: flex;
    width: clamp(270px, 78vw, 340px);
    flex: 0 0 clamp(270px, 78vw, 340px);
    height: auto;
    min-height: clamp(400px, 106vw, 486px);
    flex-direction: column;
    scroll-snap-align: start;
  }

  .product-cover {
    height: clamp(270px, 78vw, 340px);
    max-height: none;
    flex: 0 0 auto;
  }

  .product-card strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 4.65em;
    font-size: clamp(16px, 4vw, 19px);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card small {
    min-height: 0;
    margin-top: auto;
  }

  .material-slider {
    grid-auto-columns: clamp(230px, 74vw, 320px);
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 18px;
  }

  .character-list-grid,
  .booth-list-grid,
  .pose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 32px);
  }

  .character-list-card {
    min-height: clamp(280px, 62vw, 420px);
  }

  .booth-filter-panel {
    gap: 14px;
  }

  .booth-filter-status {
    text-align: right;
  }

  .tips-list-page .tip-list-card {
    grid-template-columns: clamp(92px, 24vw, 148px) minmax(0, 1fr);
    gap: clamp(12px, 3vw, 20px);
    min-height: 0;
  }

  .tips-list-page .tip-list-image {
    width: clamp(92px, 24vw, 148px);
    min-height: 0;
  }

  .tips-list-page .tip-list-body strong {
    font-size: clamp(16px, 3.4vw, 24px);
  }

  .site-footer {
    gap: clamp(14px, 4vw, 32px);
  }

  .footer-links {
    position: static;
    display: grid;
    width: min(100%, 480px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
  }

  .footer-pill {
    justify-content: center;
    gap: 8px;
    padding: 7px;
    font-size: clamp(12px, 2.8vw, 14px);
  }
}

@media (max-width: 768px) {
  .site-header {
    max-width: 100vw;
    overflow: visible;
  }

  .nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    padding: 3px 32px 12px 0;
    scroll-padding-right: 48px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::after {
    display: block;
    flex: 0 0 48px;
    content: "";
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav a[href="booth.html"] {
    font-size: 0;
  }

  .nav a[href="booth.html"]::before {
    content: "BOOTH";
    font-size: 15px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .booth-sort-tabs {
    display: flex;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .booth-sort-tabs::-webkit-scrollbar {
    display: none;
  }

  .booth-sort-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .booth-filter-tabs {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .booth-filter-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .character-author-panel {
    max-width: 100%;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 12px;
  }

  .character-author-tabs {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
    padding: 0;
  }

  .character-author-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .character-author-status {
    align-self: end;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .character-list-card .character-list-image {
    transform: translateY(-8px);
  }
}

@media (max-width: 560px) {
  .brand {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .brand-logo {
    width: clamp(112px, 34vw, 146px);
  }

  .brand-subtitle {
    min-width: 0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.35;
  }

  .footer-brand {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  .footer-brand img {
    width: clamp(112px, 34vw, 146px);
  }

  .footer-brand span {
    min-width: 0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.35;
    white-space: normal;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-pill {
    min-height: 36px;
    gap: 5px;
    padding: 5px;
    font-size: clamp(11px, 3vw, 12px);
  }

  .footer-pill-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .footer-pill-icon img[src$="x_logo-white_footer.webp"] {
    width: 16px;
    height: 16px;
  }

  .character-list-page .list-page-intro h1 {
    font-size: clamp(25px, 6.6vw, 30px);
    line-height: 1.16;
  }

  .character-list-page .list-page-intro {
    margin-bottom: 12px;
  }

  .character-list-page .list-page-intro p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.5;
  }

  .booth-list-page .list-page-intro h1 {
    font-size: clamp(21px, 5.6vw, 26px);
    line-height: 1.24;
  }

  .booth-list-page .list-page-intro p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.4;
  }

  .mobile-heading-break {
    display: block;
  }

  .product-slider {
    gap: 14px;
    padding-inline: 0;
  }

  .product-slide {
    gap: 14px;
  }

  .sales-band-top .product-slide {
    align-items: stretch;
  }

  .product-card {
    width: clamp(150px, 42vw, 174px);
    flex: 0 0 clamp(150px, 42vw, 174px);
    min-height: 0;
  }

  .sales-band-top .product-card {
    height: clamp(286px, 77vw, 318px);
  }

  .product-cover {
    height: clamp(150px, 42vw, 174px);
    max-height: none;
  }

  .product-card strong {
    min-height: 4.5em;
    font-size: 14px;
    line-height: 1.5;
  }

  .material-slider {
    grid-auto-columns: minmax(156px, 48vw);
    grid-template-columns: none;
    gap: 14px;
  }

  .thumb.has-image {
    aspect-ratio: 1 / 1;
  }

  .standing-thumb img {
    padding: 8px;
  }

  .character-main-image {
    width: min(100%, 320px);
    max-width: 320px;
    height: auto;
    min-height: 0;
    align-self: flex-start;
  }

  .character-list-section {
    padding-inline: 20px;
  }

  .character-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .text-page .text-section {
    padding-inline: 16px;
  }

  .text-page .text-panel {
    padding: 22px 18px;
  }

  .text-page .text-panel h1 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.22;
  }

  html[lang="ja"] .text-page #terms-title {
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: strict;
    font-size: clamp(24px, 6.7vw, 31px);
    letter-spacing: 0;
  }

  html[lang="ja"] .text-page #terms-title .no-break {
    white-space: nowrap;
  }

  html[lang="en"] .text-page #terms-title .no-break {
    white-space: nowrap;
  }

  .text-page .text-panel h2 {
    margin-top: 30px;
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.35;
  }

  .text-page .text-panel p,
  .text-page .text-panel li {
    font-size: 15px;
    line-height: 1.85;
  }

  .text-page .text-panel ul,
  .text-page .text-panel ol {
    gap: 12px;
    padding-left: 1.35em;
  }

  .text-page .text-actions {
    display: grid;
    gap: 10px;
  }

  .text-page .text-actions .button {
    width: 100%;
  }

  .catalog-section .pose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    align-items: start;
  }

  .catalog-section .pose-card {
    max-width: none;
    min-width: 0;
  }

  .catalog-section .pose-card > div {
    padding: 8px 0 0;
  }

  .catalog-section .pose-card .tag {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .catalog-section .pose-card h3 {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
  }

  .catalog-section .pose-card .button {
    min-height: 32px;
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .nav a {
    display: flex;
    min-height: 40px;
    align-items: center;
  }

  .booth-filter-button,
  .booth-sort-button,
  .character-author-button {
    min-height: 44px;
    padding: 9px 13px;
  }

  .product-card strong,
  .product-card small {
    padding-inline: 12px;
  }

  .product-card strong {
    padding-top: 10px;
    line-height: 1.45;
  }

  .product-card small {
    min-height: 38px;
    padding-bottom: 12px;
    line-height: 1.45;
  }

  .booth-list-grid {
    gap: 16px 12px;
  }

  .catalog-section .pose-grid {
    gap: 20px 12px;
  }

  .catalog-section .pose-card > div {
    padding-top: 10px;
  }

  .catalog-section .pose-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.9em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .catalog-section .pose-card .button {
    min-height: 40px;
    padding: 8px 10px;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    align-items: start;
  }

  .product-related-grid .product-card {
    width: 100%;
    min-height: 0;
    height: auto;
    flex: none;
  }

  .product-related-grid .product-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-related-grid .product-card strong,
  .product-related-grid .product-card small {
    padding-inline: 10px;
  }

  .product-related-grid .product-card strong {
    min-height: 4.2em;
    font-size: 13px;
    line-height: 1.4;
  }

  .product-related-grid .product-card small {
    min-height: 3.8em;
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .site-footer {
    padding-inline: 12px;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-links {
    display: grid !important;
    width: 100% !important;
    max-width: 420px !important;
    align-items: center !important;
    align-self: center !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 2px auto 0 !important;
    padding-inline: 0 !important;
  }

  .site-footer .footer-links .footer-pill {
    display: flex !important;
    width: 100% !important;
    height: 52px !important;
    min-width: 0 !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    flex: none !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .site-footer .footer-links .footer-pill-icon {
    display: flex !important;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  html[lang="ja"] .text-page #terms-title {
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: strict;
    font-size: clamp(24px, 6.7vw, 31px);
    letter-spacing: 0;
    line-height: 1.12;
  }

  html[lang="ja"] .text-page #terms-title .no-break {
    white-space: nowrap;
  }

  html[lang="en"] .text-page #terms-title .no-break {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo,
  .footer-brand img {
    width: clamp(104px, 31vw, 132px);
  }

  .brand-subtitle,
  .footer-brand span {
    font-size: clamp(11px, 2.95vw, 13px);
    line-height: 1.3;
  }

  .nav {
    gap: 8px;
    padding: 2px 24px 8px 0;
    font-size: 13px;
  }

  .nav::after {
    flex-basis: 28px;
  }

  .nav a {
    min-height: 40px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .nav a[href="booth.html"]::before {
    font-size: 13px;
  }

  .hero {
    gap: 22px;
    padding: 28px 14px 34px;
  }

  .hero-art {
    min-height: clamp(250px, 66vw, 320px);
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.08;
  }

  h2 {
    margin-bottom: 10px;
    font-size: clamp(21px, 6vw, 28px);
    line-height: 1.22;
  }

  h3 {
    font-size: 17px;
  }

  .eyebrow,
  .tag {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .hero-copy p:not(.eyebrow),
  .section-lead,
  .links-profile-bio {
    font-size: 13px;
    line-height: 1.62;
  }

  .hero-actions,
  .age-actions,
  .item-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .section,
  .sub-hero {
    padding: 34px 14px;
  }

  .character-hero {
    padding: 24px 14px 26px;
  }

  .catalog-section {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .free-section {
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .free-panel,
  .text-panel,
  .blog-article,
  .tip-block {
    padding: 16px;
  }

  .booth-strip {
    gap: 10px;
    padding: 12px 14px;
  }

  .booth-strip p {
    font-size: 13px;
    line-height: 1.55;
  }

  .sales-band-top {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .sales-band-top h1 {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .product-slider {
    gap: 10px;
    padding-bottom: 10px;
  }

  .product-slide {
    gap: 10px;
  }

  .product-card {
    width: clamp(138px, 40vw, 164px);
    flex-basis: clamp(138px, 40vw, 164px);
    height: clamp(244px, 66vw, 284px);
  }

  .sales-band-top .product-card {
    height: clamp(260px, 70vw, 292px);
  }

  .product-cover {
    height: clamp(138px, 40vw, 164px);
  }

  .product-card strong {
    min-height: 4.2em;
    padding: 8px 10px 0;
    font-size: 13px;
    line-height: 1.42;
  }

  .product-card small {
    min-height: 34px;
    padding: 0 10px 10px;
    font-size: 12px;
    line-height: 1.42;
  }

  .slider-dots {
    gap: 7px;
    margin-top: 8px;
  }

  .material-slider {
    grid-auto-columns: minmax(148px, 46vw);
    gap: 10px;
    padding-bottom: 10px;
  }

  .character-list-section {
    padding-top: 20px;
  }

  .booth-list-section {
    padding-top: 14px;
  }

  .character-list-grid,
  .booth-list-grid,
  .catalog-section .pose-grid,
  .product-related-grid {
    gap: 12px;
  }

  .character-list-grid {
    row-gap: clamp(32px, 8vw, 44px);
  }

  .character-list-card {
    min-height: clamp(200px, 56vw, 270px);
    padding-bottom: 10px;
  }

  .character-list-name {
    font-size: 14px;
  }

  .character-list-subname {
    font-size: 11px;
  }

  .booth-filter-panel {
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  .booth-list-intro {
    row-gap: 8px;
    margin-bottom: 10px;
  }

  .booth-filter-status.booth-list-count {
    right: 12px;
    bottom: 10px;
    min-height: 34px;
  }

  .booth-subtag-panel {
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  .booth-filter-tabs,
  .booth-sort-tabs {
    gap: 8px;
  }

  .character-author-panel {
    gap: 8px;
    margin-bottom: 46px;
    padding: 12px 12px 10px;
  }

  .character-author-heading {
    display: none;
  }

  .character-search-panel {
    display: block;
  }

  .character-search-label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
  }

  .character-search-input {
    display: block;
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 111, 189, 0.32);
    border-radius: 8px;
    background: rgba(10, 10, 14, 0.62);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    outline: none;
    padding: 9px 12px;
  }

  .character-search-input:focus {
    border-color: rgba(255, 154, 214, 0.82);
    box-shadow: 0 0 0 3px rgba(255, 111, 189, 0.18);
  }

  .character-author-mobile-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .character-author-mobile-label,
  .booth-subtag-mobile-label {
    display: block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
  }

  .character-author-current {
    display: none;
  }

  .character-author-status {
    margin-top: -2px;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    line-height: 1.2;
  }

  .character-author-tabs {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: min(48vh, 380px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .character-author-tabs.is-open {
    display: grid;
  }

  .character-author-toggle {
    justify-content: center;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .character-author-toggle::after {
    content: "▼";
    margin-left: 6px;
    font-size: 10px;
  }

  .character-author-toggle[aria-expanded="true"]::after {
    content: "▲";
  }

  .booth-subtag-mobile-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
  }

  .booth-subtag-picker {
    display: none;
    margin-top: 0;
  }

  .booth-subtag-picker.is-open {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    z-index: 80;
    max-height: min(45vh, 360px);
    overflow: hidden;
    border: 1px solid rgba(255, 111, 189, 0.3);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(18, 14, 22, 0.98), rgba(34, 23, 39, 0.96));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 22px 48px rgba(0, 0, 0, 0.5),
      0 0 24px rgba(255, 111, 189, 0.14);
    padding: 14px;
  }

  .booth-subtag-picker.is-open .booth-subtag-search-panel {
    display: block;
  }

  .booth-subtag-search-label {
    display: block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
  }

  .booth-subtag-search-field {
    min-height: 42px;
    margin-bottom: 10px;
  }

  .booth-subtag-search {
    font-size: 14px;
  }

  .booth-subtag-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: calc(min(45vh, 360px) - 94px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .booth-filter-button,
  .booth-sort-button,
  .booth-subtag-picker-toggle,
  .character-author-button,
  .character-author-toggle {
    min-height: 42px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .booth-filter-button,
  .booth-sort-button,
  .booth-subtag-picker-toggle {
    min-height: 38px;
    padding: 6px 11px;
  }

  .booth-sort-button {
    min-width: 72px;
  }

  .booth-subtag-panel {
    padding: 10px 12px;
  }

  .product-tag-section {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .booth-subtag-heading {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .booth-list-page .booth-subtag-heading {
    display: none;
  }

  .booth-subtag-button,
  .booth-subtag-picker-toggle,
  .product-tag,
  .product-tag-chip {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .product-tag-section .product-tag,
  .product-tag-section .product-tag-chip {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .booth-subtag-button {
    width: 100%;
    white-space: nowrap;
  }

  .booth-subtag-picker-toggle {
    justify-content: center;
    width: 100%;
    white-space: nowrap;
  }

  .booth-subtag-picker-toggle::after {
    content: "▼";
    margin-left: 6px;
    font-size: 10px;
  }

  .booth-subtag-picker-toggle[aria-expanded="true"]::after {
    content: "▲";
  }

  .product-tag-list {
    gap: 8px;
  }

  .booth-filter-status,
  .booth-page-status {
    font-size: 13px;
  }

  .booth-pagination {
    gap: 8px;
    margin-top: 20px;
  }

  .booth-page-button {
    min-width: 96px;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .links-hero {
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 22px;
  }

  .links-profile-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 10px;
  }

  .links-profile-name {
    margin-bottom: 6px;
    font-size: clamp(20px, 5.6vw, 25px);
  }

  .links-list {
    gap: 10px;
  }

  .link-card {
    min-height: 68px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .link-card-icon {
    width: 42px;
    height: 42px;
  }

  .link-card-body strong {
    font-size: 16px;
  }

  .link-card-body small {
    font-size: 12px;
    line-height: 1.38;
  }

  .links-mini-card {
    min-height: 62px;
    padding: 12px;
  }

  .links-mini-card strong {
    font-size: 15px;
  }

  .links-mini-card span {
    font-size: 12px;
    line-height: 1.4;
  }

  .product-hero {
    gap: 18px;
    padding-top: 18px;
  }

  .product-gallery {
    gap: 10px;
  }

  .product-main-figure {
    max-width: 380px;
  }

  .product-thumbnail-slider {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .product-thumbnails {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 2px 6px;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .product-thumbnail {
    width: clamp(58px, 17vw, 72px);
    flex: 0 0 clamp(58px, 17vw, 72px);
    scroll-snap-align: start;
  }

  .product-thumbnail-arrow {
    display: none;
  }

  .product-summary {
    padding: 16px;
  }

  .product-summary h1 {
    margin-bottom: 10px;
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .product-lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.58;
  }

  .product-summary-breadcrumb {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .product-specs {
    gap: 8px;
  }

  .product-specs div {
    gap: 3px;
    padding-top: 8px;
  }

  .product-specs dt {
    font-size: 16px;
    line-height: 1.5;
  }

  .product-specs dd {
    font-size: 16px;
    line-height: 1.62;
  }

  .product-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .product-buy-button {
    min-height: 50px;
    font-size: 15px;
  }

  .product-note,
  .product-media-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .product-detail-block {
    padding: 16px;
  }

  .product-detail-block h2 {
    margin-bottom: 10px;
    font-size: clamp(20px, 5.6vw, 24px);
  }

  .product-detail-block h3 {
    margin-top: 16px;
    font-size: 16px;
  }

  .product-detail-block p,
  .product-detail-block li {
    font-size: 14px;
    line-height: 1.65;
  }

  .product-detail-section .product-detail-block.booth-description {
    padding: 20px;
    font-size: 15px;
    line-height: 1.74;
  }

  .product-detail-block.booth-description .booth-section-title {
    margin-bottom: 16px;
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.24;
  }

  .product-detail-section .product-detail-block.booth-description .booth-section-title {
    margin-bottom: 16px;
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.24;
  }

  .product-detail-section .product-detail-block.booth-description .booth-sub-title {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .product-detail-section .product-detail-block.booth-description .booth-lead,
  .product-detail-section .product-detail-block.booth-description p,
  .product-detail-section .product-detail-block.booth-description li {
    font-size: 15px;
    line-height: 1.74;
  }

  .product-detail-section .product-detail-block.booth-description ol {
    gap: 18px;
  }

  .product-detail-section .product-detail-block.booth-description ul {
    line-height: 1.82;
  }

  .product-detail-section .product-detail-block.booth-description .booth-sub-title + p {
    font-size: 16px;
    line-height: 1.82;
  }

  .product-detail-block.booth-description .booth-step-title {
    margin-bottom: 5px;
  }

  .product-detail-block.booth-description .booth-step-desc {
    line-height: 1.82;
  }

  .product-detail-section .product-detail-block.booth-description p + p {
    margin-top: 10px;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-related-grid .product-card strong {
    min-height: 4em;
    padding-inline: 8px;
    font-size: 12.5px;
  }

  .product-related-grid .product-card small {
    min-height: 3.2em;
    padding-inline: 8px;
    font-size: 11.5px;
  }

  .tips-list-page .text-panel {
    padding: 12px;
  }

  .tips-list-page .text-panel h1 {
    font-size: clamp(26px, 7.4vw, 31px);
  }

  .tips-list-page .tips-column-layout {
    margin-top: 14px;
  }

  .tips-list-page .tip-list-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .tips-list-page .tip-list-image {
    width: 80px;
  }

  .tips-list-page .tip-list-body strong,
  .tip-list-body strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .tips-list-page .tip-list-body span,
  .tips-list-page .tip-list-body small {
    font-size: 11.5px;
  }

  .article-header h1 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .article-lead,
  .article-body-section p,
  .article-body-section li {
    font-size: 14px;
    line-height: 1.72;
  }

  .article-visual {
    gap: 12px;
    margin-top: 20px;
    padding: 12px;
  }

  .article-visual .tip-thumb,
  .article-visual-image {
    min-height: 132px;
  }

  .article-body-section {
    margin-top: 26px;
  }

  .article-body-section h2 {
    font-size: clamp(20px, 5.8vw, 25px);
    padding: 12px 14px 12px 20px;
  }

  .article-body-section h2::before {
    top: 12px;
    bottom: 12px;
    left: 8px;
  }

  .character-main-image {
    max-width: 280px;
  }

  .catalog-section .pose-card > div {
    padding-top: 8px;
  }

  .catalog-section .pose-card h3 {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .catalog-section .pose-card .button {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .site-footer {
    gap: 10px;
    padding-block: 20px;
  }

  .site-footer .footer-links {
    gap: 6px !important;
  }

  .site-footer .footer-links .footer-pill {
    height: 46px !important;
    min-height: 46px !important;
    gap: 6px !important;
    padding: 0 6px !important;
    font-size: 12.5px !important;
  }

  .site-footer .footer-links .footer-pill-icon {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
    font-size: 12px !important;
  }

  .site-footer .footer-links .footer-pill-icon img[src$="x_logo-white_footer.webp"] {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 1023px) {
  .catalog-section .free-pose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-section .free-pose-card h3 {
    display: inline-flex;
    min-height: 0;
    font-size: clamp(18px, 2.2vw, 21px);
    overflow: visible;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .catalog-section .free-pose-card .button {
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  .catalog-section .free-pose-full-download {
    min-height: 50px;
    padding: 10px 18px;
  }

  .catalog-section .free-pose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-section .free-pose-card h3 {
    font-size: clamp(16px, 4.2vw, 17px);
    display: block;
    height: 22px;
    max-height: 22px;
    min-height: 0;
    line-height: 22px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .catalog-section .free-pose-card .button {
    width: min(92%, 156px);
    min-width: 138px;
    min-height: 50px;
    gap: 9px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .catalog-section .free-pose-card .button::after {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-card,
  .js-reveal-card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
