/* App extras on top of mock site.css */
.main { flex: 1; min-width: 0; padding: 22px 22px 48px; }
.notice-bar {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--notice-bg); border: 1px solid var(--notice-border);
  border-radius: 14px; padding: 12px 14px; margin-bottom: 18px;
  font-size: .88rem; color: var(--ink-2);
}
.n-tag {
  flex-shrink: 0; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: var(--brand); border: 1px solid var(--brand); border-radius: 999px; padding: 2px 10px;
}
.flash {
  border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: .9rem;
  border: 1px solid var(--line);
}
.flash-ok { background: rgba(61,214,140,.12); border-color: rgba(61,214,140,.35); }
.flash-warn { background: rgba(245,165,36,.12); border-color: rgba(245,165,36,.35); }
.flash-err { background: rgba(230,0,126,.1); border-color: rgba(230,0,126,.35); }

.lang-wrap { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); background: var(--surface); color: inherit;
  border-radius: 999px; padding: 6px 12px; font-size: .76rem;
}
html[data-theme="dark"] .lang-btn { border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.15); }
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 180px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 6px; box-shadow: var(--panel-hover-shadow);
}
.lang-menu.open { display: block; }
.lang-menu a,
.lang-menu button.theme-opt {
  display: flex; justify-content: space-between; gap: 12px; width: 100%;
  padding: 8px 10px; border-radius: 8px; font-size: .82rem;
  border: 0; background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer;
}
.lang-menu a:hover, .lang-menu a.active,
.lang-menu button.theme-opt:hover, .lang-menu button.theme-opt.active { background: var(--brand-pale); color: var(--brand); }
.lang-menu .native { color: var(--ink-3); font-size: .72rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 10px 18px; font-size: .88rem; font-weight: 700;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-quiet { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-quiet:hover { border-color: var(--brand); color: var(--brand); }

.hero {
  background: var(--hero-bg); border: 1px solid var(--line);
  border-radius: 22px; padding: 36px 28px; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin: 0 0 10px; line-height: 1.25; font-weight: 800;
}
.hero .sub-jp { color: var(--hero-sub); letter-spacing: .12em; font-size: .85rem; margin-bottom: 10px; }
.hero p { color: var(--muted); max-width: 36rem; margin: 0 0 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.shortcuts {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  margin-bottom: 36px;
}
.shortcut {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 10px; text-align: center; transition: .2s ease;
}
.shortcut:hover { transform: translateY(-2px); box-shadow: var(--panel-hover-shadow); border-color: var(--brand-2); }
.shortcut .s-ico { font-size: 1.1rem; margin-bottom: 6px; }
.shortcut span { font-size: .8rem; }

.section { margin-bottom: 42px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.section-head h2 {
  margin: 0; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
}
.section-head .jp { color: var(--ink-3); font-size: .75rem; letter-spacing: .14em; margin-left: 10px; }
.section-head .more { font-size: .8rem; color: var(--ink-3); }
.section-head .more:hover { color: var(--brand); }

.card-grid, .event-grid, .creator-grid, .media-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: .2s ease;
}
.panel:hover { box-shadow: var(--panel-hover-shadow); transform: translateY(-2px); }
/* .thumb 基底樣式見 site.css；此處僅補齊比例與輔助 class */
.thumb.wide-ratio { aspect-ratio: 2500/1686; }
.thumb.has-img .ph { display: none; }

.rich-content { line-height: 1.75; }
.rich-content p { margin: 0 0 .75em; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content ul, .rich-content ol { margin: 0 0 .75em; padding-left: 1.25em; }
.rich-content img { max-width: 100%; height: auto; border-radius: 10px; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin: 1em 0 .4em; color: var(--brand); font-weight: 700; }
.rich-content a { color: var(--brand); text-decoration: underline; }
.notice-bar .rich-content p { margin: 0; display: inline; }
.panel-body { padding: 14px 16px 16px; }
.panel-body h3 { margin: 0 0 6px; font-size: .94rem; font-weight: 600; }
.meta { margin: 0; font-size: .78rem; color: var(--ink-3); }
.price { margin-top: 8px; color: var(--brand); font-size: .98rem; font-weight: 700; }
html[data-theme="dark"] .price { color: var(--brand-2); }
.chip {
  display: inline-block; margin-left: 8px; font-size: .68rem; color: var(--ink-2);
  background: var(--bg-soft); border-radius: 6px; padding: 2px 8px; border: 1px solid var(--line);
}

.adp {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 16px; text-align: center;
}
.adp .amount { font-family: var(--font-display); font-size: 1.3rem; }
.adp .amount small { font-size: .7rem; color: var(--ink-3); margin-left: 4px; }
.adp .yen { margin-top: 6px; color: var(--brand); font-size: .9rem; font-weight: 700; }
.adp .note { margin-top: 8px; font-size: .72rem; color: var(--ink-3); }

.form-card {
  max-width: 440px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px;
}
.form-card h1 { margin: 0 0 16px; font-size: 1.35rem; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: .82rem; margin-bottom: 6px; color: var(--ink-2); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; background: var(--bg); color: var(--text); font: inherit;
}
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.help-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; margin-bottom: 10px;
}
.help-list summary { cursor: pointer; font-weight: 600; }
.muted { color: var(--muted); font-size: .88rem; }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 12px; }
table.data { width: 100%; border-collapse: collapse; font-size: .88rem; background: var(--surface); }
table.data th, table.data td { border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; }
table.data th { background: var(--bg-soft); color: var(--brand); }

.phase-badge {
  display: inline-block; font-size: .7rem; padding: 2px 8px; border-radius: 6px;
  background: rgba(245,165,36,.15); color: #c47a00; margin-left: 8px;
}
html[data-theme="dark"] .phase-badge { color: #f5a524; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .sidebar {
    position: fixed; left: 0; top: var(--header-h); bottom: 0; z-index: 40;
    transform: translateX(-105%); width: min(280px, 86vw);
  }
  .sidebar.open { transform: translateX(0); box-shadow: 20px 0 40px rgba(0,0,0,.2); }
  .theme-hint { display: none; }
  .main { padding: 16px 14px 40px; }
}

/* —— Banner 輪播（中間主圖 + 左右預覽，間隙分隔） —— */
.home-banner-section .banner-carousel,
.banner-carousel {
  --banner-slide-w: 70%;
  --banner-gap: 14px;
  position: relative; overflow: hidden; border-radius: 0;
  border: none; background: transparent;
  touch-action: pan-y;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}
.banner-track {
  display: flex; gap: var(--banner-gap);
  transition: transform .45s ease; will-change: transform;
}
.banner-slide {
  flex: 0 0 var(--banner-slide-w); min-width: var(--banner-slide-w);
  color: inherit; text-decoration: none;
  position: relative; display: block;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
}
.banner-slide .thumb {
  border-radius: 0;
  aspect-ratio: 2500 / 1686;
  width: 100%;
}
.banner-slide .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 720px) {
  .home-banner-section .banner-carousel,
  .banner-carousel {
    --banner-slide-w: 78%;
    --banner-gap: 10px;
  }
  .banner-slide { border-radius: 12px; }
}
.home-banner-section + .notice-bar {
  margin-top: 4px;
}
.banner-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px; background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff; display: flex; flex-direction: column; gap: 4px;
}
.banner-caption strong { font-size: 1rem; }
.banner-caption span { font-size: .82rem; opacity: .9; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent); color: var(--text);
  font-size: 1.4rem; cursor: pointer; z-index: 2; line-height: 1;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 10px; display: flex;
  justify-content: center; gap: 6px; z-index: 2; pointer-events: none;
}
.carousel-dots button {
  pointer-events: auto; width: 8px; height: 8px; border-radius: 999px;
  border: none; background: rgba(255,255,255,.45); cursor: pointer; padding: 0;
}
.carousel-dots button.active { background: var(--brand); }

/* —— 橫向場次／藝人 —— */
.h-scroll { position: relative; }
.h-scroll-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 2px 10px;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.h-scroll-card {
  flex: 0 0 min(220px, 72vw); max-width: 220px; scroll-snap-align: start;
  text-decoration: none; color: inherit;
}
/* 首頁橫向區：演藝合作／媒體 同寬；最新活動較寬 */
#collaborations .h-scroll-card,
#media .h-scroll-card {
  flex-basis: min(200px, 68vw);
  max-width: 200px;
}
#events .h-scroll-card {
  flex-basis: min(400px, 88vw);
  max-width: 400px;
}
#events .h-scroll-card .thumb,
#collaborations .h-scroll-card .thumb,
#media .h-scroll-card .thumb {
  aspect-ratio: 2500 / 1686;
}
#adpoints .h-scroll-card.adp {
  flex: 0 0 min(200px, 68vw);
  max-width: 200px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.event-grid .thumb {
  aspect-ratio: 2500 / 1686;
}
.h-scroll-btn {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); cursor: pointer; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.h-scroll-btn.prev { left: -6px; }
.h-scroll-btn.next { right: -6px; }

/* 合作藝人：男優／女優兩排橫向，欄數依螢幕寬度 */
.home-creators-rows {
  display: flex; flex-direction: column; gap: 20px;
}
.home-creators-row-label {
  margin: 0 0 8px; font-size: .82rem; font-weight: 700;
  color: var(--ink-2); letter-spacing: .08em;
}
/* 首頁合作藝人：與最新活動同寬；縮圖正方形（詳情頁仍為直式 3:4） */
.home-creators .h-scroll-card {
  flex: 0 0 min(200px, 68vw);
  max-width: 200px;
  min-width: 0;
}
.home-creators .h-scroll-card .thumb,
.home-creators .h-scroll-card .thumb.portrait {
  aspect-ratio: 1 / 1;
}
.home-creators .h-scroll-card .thumb img {
  object-fit: cover;
}
.home-creators .h-scroll-card .panel-body {
  min-height: 0;
  padding: 14px 16px 16px;
}
.home-creators .h-scroll-card .panel-body h3 {
  margin: 0 0 6px;
  font-size: .94rem;
  font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-creators .h-scroll-card .panel-body .meta {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .8rem;
}

.artists-line { color: var(--brand); font-weight: 600; }
.tagline-line { font-style: italic; opacity: .9; }

.gender-pick {
  display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px; max-width: 560px;
}
.gender-pick-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  width: 100%;
}
.creator-wall-title {
  margin: 28px 0 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .06em;
}
.creator-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 14px;
  justify-content: start;
}
.creator-wall-item {
  width: 200px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.creator-wall-item img,
.creator-wall-ph {
  width: 200px;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.creator-wall-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-3);
}
.creator-wall-name {
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.creator-wall-item:hover img,
.creator-wall-item:hover .creator-wall-ph {
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.creator-wall-item img,
.creator-wall-item .creator-wall-ph {
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (max-width: 440px) {
  .creator-wall {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    justify-content: stretch;
  }
  .creator-wall-item { width: auto; }
  .creator-wall-item img,
  .creator-wall-ph {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.history-search {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0 4px;
}
.history-search input[type=search] {
  flex: 1 1 220px; min-width: 180px; max-width: 420px;
  padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text);
}
.gender-card.is-active {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* 側欄社群圖示：貼底、與選單分開 */
.sidebar {
  display: flex;
  flex-direction: column;
}
.side-social {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.side-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.side-social-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-nav, 10px);
  border: 1px solid var(--line);
  background: var(--brand-pale);
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.side-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.side-social-btn:hover,
.side-social-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--login-shadow, 0 8px 18px color-mix(in srgb, var(--brand) 28%, transparent));
  outline: none;
}
.footer-social {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center;
}
.footer-social a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.page-events-scroll.h-scroll {
  margin-top: 8px;
}
.page-events-scroll .h-scroll-card {
  flex: 0 0 min(280px, 78vw);
  max-width: 280px;
}
.page-events-scroll .h-scroll-card .thumb {
  aspect-ratio: 2500 / 1686;
}
.gender-card { text-decoration: none; color: inherit; }
.gender-card h3 { font-size: 1.25rem; margin: 0 0 6px; }

.creator-detail {
  display: grid; gap: 20px; grid-template-columns: minmax(160px, 240px) 1fr; align-items: start;
}
.profile-dl { margin: 0; display: grid; gap: 8px; }
.profile-dl > div { display: grid; grid-template-columns: 100px 1fr; gap: 8px; font-size: .9rem; }
.profile-dl dt { color: var(--muted); margin: 0; }
.profile-dl dd { margin: 0; }
.sns-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.sns-icon {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  font-weight: 700; font-size: .78rem; text-decoration: none;
}
.sns-icon:hover { border-color: var(--brand); color: var(--brand); }

.player-box {
  margin: 16px 0; padding: 16px; border: 1px solid var(--line);
  border-radius: 16px; background: var(--surface);
}
.player-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden;
}
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-video { width: 100%; max-height: 70vh; border-radius: 12px; background: #000; }

@media (max-width: 700px) {
  .creator-detail { grid-template-columns: 1fr; }
  .gender-pick { grid-template-columns: 1fr; }
  .gender-pick-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .h-scroll-btn { display: none; }
}

/* —— 會員中心（左側欄） —— */
.member-hub-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 280px) 1fr;
  align-items: start;
}
.member-side {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  position: sticky;
  top: calc(var(--header-h, 64px) + 12px);
}
.member-side-head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
}
.member-avatar {
  width: 56px; height: 56px; border-radius: 999px; overflow: hidden;
  background: var(--thumb-bg); display: grid; place-items: center;
  flex-shrink: 0; font-weight: 800; color: var(--brand);
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member-side-name { font-weight: 800; font-size: 1.02rem; }
.member-side-rank { font-size: .78rem; color: var(--ink-3); margin-top: 2px; }
.member-side-cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.member-side-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
.member-side-stats > div {
  border: 1px solid var(--line); border-radius: 12px; padding: 10px;
}
.member-side-stats .l { display: block; font-size: .72rem; color: var(--ink-3); }
.member-side-stats strong { font-size: 1.05rem; }
.member-side-nav { display: flex; flex-direction: column; gap: 4px; }
.member-nav-item {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 10px; color: var(--ink-2); text-decoration: none; font-size: .9rem;
}
.member-nav-item:hover, .member-nav-item.active {
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand);
}
.member-nav-item.is-soon { opacity: .72; }
.member-nav-item em {
  font-style: normal; font-size: .68rem; color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 999px; padding: 1px 7px;
}
.member-panel { padding: 18px; }
.member-main .crop-current {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px;
}
.member-main .crop-current img {
  max-width: 120px; max-height: 120px; object-fit: cover; border-radius: 999px; border: 1px solid var(--line);
}
.img-hint { margin: 6px 0 0; font-size: .78rem; color: var(--ink-3); line-height: 1.55; max-width: 640px; }
.js-crop-preview {
  margin-top: 12px; max-width: 640px; background: color-mix(in srgb, var(--ink) 8%, transparent);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; max-height: 360px;
}
.js-crop-preview img { display: block; max-width: 100%; }
@media (max-width: 860px) {
  .member-hub-layout { grid-template-columns: 1fr; }
  .member-side { position: static; }
}

/* 活動集章冊 */
.stamp-book {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.stamp-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.stamp-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.stamp-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.stamp-ph {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 1.4rem; font-weight: 700; color: var(--ink-3);
}
.stamp-card.is-locked .stamp-thumb img {
  filter: grayscale(1) brightness(.92);
  opacity: .72;
}
.stamp-card.is-unlocked .stamp-thumb {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 18%, transparent);
}
.stamp-badge {
  position: absolute; right: 6px; top: 6px;
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; letter-spacing: .04em;
  color: #fff; background: var(--brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.stamp-name {
  margin-top: 8px; font-size: .82rem; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.stamp-state {
  margin-top: 2px; font-size: .72rem; color: var(--ink-3);
}
.stamp-card.is-unlocked .stamp-state { color: var(--brand); font-weight: 600; }
