/* ========================================
   酷吉Kuji — Japanese E-commerce Aesthetic
   ======================================== */

:root {
  --vermilion: #D62828;
  --vermilion-deep: #A0151B;
  --vermilion-dark: #7A0F14;
  --gold: #F5B82E;
  --gold-deep: #E8A317;
  --gold-soft: #FCE9A8;
  --ink: #1A1614;
  --ink-soft: #3A2E26;
  --washi: #F5EBD8;
  --washi-deep: #EADBBE;
  --paper: #FAF6EC;
  --kraft: #C9A876;
  --kraft-deep: #8B6F47;
  --line: #2A211C;

  --font-display: "Noto Serif JP", "Songti TC", "PMingLiU", serif;
  --font-body: "Noto Sans TC", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-brush: "Yuji Syuku", "Klee One", serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 111, 71, 0.04) 0, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(139, 111, 71, 0.05) 0, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(139, 111, 71, 0.03) 0, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announce {
  background: var(--ink);
  color: var(--washi);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--gold-deep);
}
.announce-track { display: inline-flex; gap: 60px; }
.announce span { display: inline-flex; align-items: center; gap: 8px; }
.announce .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 52px; height: 52px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--vermilion-dark), 0 6px 16px rgba(214, 40, 40, 0.25);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { line-height: 1.05; }
.logo-text .ja {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.logo-text .ja em {
  color: var(--vermilion);
  font-style: normal;
}
.logo-text .sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--kraft-deep);
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}
.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--vermilion);
  transition: all 0.25s;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--vermilion); }
.nav a:hover::before { width: 60%; }
.nav .new::after {
  content: "新";
  position: absolute;
  top: 0; right: -2px;
  width: 16px; height: 16px;
  background: var(--vermilion);
  color: var(--paper);
  font-size: 9px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transition: all 0.2s;
}
.icon-btn:hover { background: var(--ink); color: var(--paper); }
.icon-btn .badge {
  position: absolute;
  margin-left: 14px;
  margin-top: -14px;
  width: 16px; height: 16px;
  background: var(--vermilion);
  color: var(--paper);
  border-radius: 50%;
  font-size: 9px;
  display: grid; place-items: center;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.18s;
  position: relative;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: var(--vermilion);
  color: var(--paper);
  box-shadow: 0 3px 0 var(--vermilion-dark);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--vermilion-dark);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--vermilion-dark);
}
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 3px 0 var(--gold-deep);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--gold-deep);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  background: var(--washi);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23A0151B' stroke-width='0.5' opacity='0.15'><polygon points='40,5 70,22 70,58 40,75 10,58 10,22'/><polygon points='40,20 55,28 55,52 40,60 25,52 25,28'/><line x1='40' y1='5' x2='40' y2='75'/><line x1='10' y1='22' x2='70' y2='58'/><line x1='10' y1='58' x2='70' y2='22'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 32px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--vermilion-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--vermilion-dark);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero h1 .punch {
  display: inline-block;
  background: var(--vermilion);
  color: var(--paper);
  padding: 0 12px 4px;
  margin: 0 4px;
  transform: rotate(-2deg);
  position: relative;
}
.hero h1 .gold-stroke {
  color: var(--vermilion);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 24px 0 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding: 16px 0;
  border-top: 1px dashed var(--kraft-deep);
  border-bottom: 1px dashed var(--kraft-deep);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--vermilion);
  line-height: 1;
}
.hero-stat .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--kraft-deep);
  margin-top: 4px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-cta-row .btn { padding: 14px 28px; font-size: 15px; }

/* HERO RIGHT — mascot stage */
.mascot-stage {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
}
.action-lines {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--gold) 0deg 6deg,
      transparent 6deg 14deg
    );
  -webkit-mask: radial-gradient(circle, transparent 38%, black 42%, black 100%);
          mask: radial-gradient(circle, transparent 38%, black 42%, black 100%);
  opacity: 0.55;
  animation: spin 60s linear infinite;
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sun-burst {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, var(--gold) 35%, var(--vermilion) 75%, var(--vermilion-dark) 100%);
  z-index: 1;
  box-shadow:
    0 0 0 4px var(--ink),
    inset 0 0 0 8px var(--vermilion-dark),
    inset 0 0 0 12px var(--gold),
    0 20px 60px rgba(214,40,40,0.35);
}
.sun-burst::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 2px dashed var(--vermilion-dark);
  opacity: 0.55;
  animation: spin 80s linear infinite reverse;
}
.mascot-img {
  position: relative;
  z-index: 4;
  width: 460px;
  height: auto;
  filter: drop-shadow(0 18px 0 rgba(122,15,20,0.35)) drop-shadow(0 24px 30px rgba(0,0,0,0.25));
  animation: bob 3.4s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}
.mascot-shadow {
  position: absolute;
  bottom: 24px;
  width: 220px;
  height: 18px;
  background: rgba(26,22,20,0.35);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 2;
  animation: shadow-bob 3.4s ease-in-out infinite;
}
@keyframes shadow-bob {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(0.85); opacity: 0.25; }
}
.mascot-name-vert {
  position: absolute;
  top: 24px;
  right: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--vermilion-dark);
  letter-spacing: 0.3em;
  z-index: 5;
  text-shadow: 2px 2px 0 var(--gold-soft);
}

.speech-bubble {
  position: absolute;
  top: 30px;
  left: 0;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 6;
  transform: rotate(-4deg);
  text-align: center;
  min-width: 140px;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 22px;
  width: 22px; height: 18px;
  background: var(--paper);
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: skewX(-22deg);
}
.speech-bubble .ja {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--vermilion);
  display: block;
}
.speech-bubble strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin: 4px 0;
}
.speech-bubble small {
  font-size: 11px;
  color: var(--ink-soft);
  display: block;
}

.hanko-float {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 78px; height: 78px;
  border: 4px solid var(--vermilion);
  background: rgba(214, 40, 40, 0.12);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--vermilion);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  line-height: 1.05;
  transform: rotate(10deg);
  z-index: 6;
  box-shadow: 3px 3px 0 var(--vermilion-dark);
}

.star-burst {
  position: absolute;
  z-index: 5;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--ink);
  pointer-events: none;
}
.star-burst.s1 { top: 12%; right: 8%; font-size: 36px; animation: twinkle 1.6s ease-in-out infinite; }
.star-burst.s2 { bottom: 26%; left: 4%; font-size: 28px; animation: twinkle 2s ease-in-out infinite 0.4s; color: var(--vermilion); }
.star-burst.s3 { bottom: 14%; right: 10%; font-size: 44px; animation: twinkle 2.4s ease-in-out infinite 0.8s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.25) rotate(20deg); opacity: 0.6; }
}

.floor-tag {
  position: absolute;
  bottom: 0;
  background: var(--ink);
  color: var(--washi);
  border: 2px solid var(--ink);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 6;
  box-shadow: 4px 4px 0 var(--vermilion);
}
.floor-tag b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* HERO RIGHT — featured kuji card (legacy, kept for compatibility) */
.kuji-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 12px 12px 0 var(--ink), 12px 12px 0 2px var(--ink);
  transform: rotate(1deg);
}
.kuji-card .ribbon {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--vermilion);
  color: var(--paper);
  padding: 6px 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--vermilion-dark);
  z-index: 3;
}
.kuji-card .hanko {
  position: absolute;
  top: 16px; right: 16px;
  width: 64px; height: 64px;
  border: 3px solid var(--vermilion);
  background: rgba(214, 40, 40, 0.08);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--vermilion);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
  transform: rotate(8deg);
  z-index: 2;
}

.kuji-card .visual {
  height: 280px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.kuji-card .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(160, 21, 27, 0.08) 8px 9px);
}
.kuji-card .visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.kuji-card .kanji {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 140px;
  color: var(--vermilion);
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 4px 4px 0 rgba(26, 22, 20, 0.15);
}
.kuji-card .placeholder-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.2em;
  margin-top: 8px;
  background: var(--paper);
  padding: 4px 10px;
  display: inline-block;
  border: 1px dashed var(--ink);
}

.kuji-card .meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--kraft-deep);
  text-transform: uppercase;
}
.kuji-card .title-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.kuji-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.kuji-card .price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--vermilion);
  white-space: nowrap;
}
.kuji-card .price small { font-size: 12px; color: var(--ink); font-weight: 400; }
.kuji-card .progress {
  margin-top: 16px;
  height: 8px;
  background: var(--washi-deep);
  border: 1px solid var(--ink);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.kuji-card .progress::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 67%;
  background: repeating-linear-gradient(90deg, var(--vermilion) 0 6px, var(--vermilion-dark) 6px 12px);
}
.kuji-card .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
}
.kuji-card .progress-meta b { color: var(--vermilion); }

/* hero side decorations */
.hero-vertical {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--vermilion-dark);
  opacity: 0.6;
  z-index: 1;
}

/* marquee strip */
.marquee {
  background: var(--ink);
  color: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-deep);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15em;
}
.marquee-track span { display: inline-flex; gap: 56px; }
.marquee-track .star { color: var(--vermilion); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTION SHELL
   ======================================== */
section { position: relative; z-index: 2; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 80px;
  height: 2px;
  background: var(--vermilion);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-head .ja {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--kraft-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-head .more {
  font-size: 13px;
  font-weight: 600;
  color: var(--vermilion);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-head .more:hover { gap: 10px; transition: gap 0.2s; }

/* ========================================
   STEPS — 抽獎流程
   ======================================== */
.steps {
  padding: 80px 0;
  background: var(--paper);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.step {
  padding: 32px 24px;
  border-right: 1px dashed var(--kraft-deep);
  position: relative;
  background: var(--paper);
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--washi); }
.step .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.9;
  color: var(--vermilion);
  -webkit-text-stroke: 1px var(--ink);
  margin-bottom: 4px;
}
.step .num small {
  font-family: var(--font-mono);
  font-size: 10px;
  display: block;
  color: var(--kraft-deep);
  -webkit-text-stroke: 0;
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.step .icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--washi);
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories {
  padding: 80px 0;
  background: var(--washi);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.cat {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.cat.featured { grid-row: span 2; }
.cat .cat-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--kraft-deep);
  text-transform: uppercase;
}
.cat h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
  margin: 8px 0 6px;
}
.cat.featured h3 { font-size: 44px; }
.cat .cat-sub {
  font-size: 12px;
  color: var(--ink-soft);
  max-width: 240px;
}
.cat .cat-arrow {
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--vermilion);
}
.cat .visual-pad {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}
.cat .visual-pad svg { width: 100%; height: 100%; }
.cat-content { position: relative; z-index: 1; }
.cat .stamp {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--vermilion);
  opacity: 0.12;
  line-height: 1;
  z-index: 0;
}
.cat.featured .stamp { font-size: 200px; bottom: -30px; right: -10px; }

/* ========================================
   LOTTERY DEMO (interactive)
   ======================================== */
.lottery {
  padding: 80px 0;
  background: var(--ink);
  color: var(--washi);
  position: relative;
  overflow: hidden;
}
.lottery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(245, 184, 46, 0.08) 0, transparent 200px),
    radial-gradient(circle at 90% 80%, rgba(214, 40, 40, 0.1) 0, transparent 280px);
  pointer-events: none;
}
.lottery .section-head { border-bottom-color: var(--gold-deep); }
.lottery .section-head::after { background: var(--gold); }
.lottery .section-head h2 { color: var(--washi); }
.lottery .section-head .ja { color: var(--gold); }

.lottery-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.lottery-board {
  background: var(--washi);
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 28px;
  position: relative;
}
.lottery-board::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--vermilion);
  pointer-events: none;
}
.lottery-board h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 4px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.lottery-board h3 .pool {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vermilion);
  letter-spacing: 0.2em;
}
.lottery-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.tier {
  aspect-ratio: 1;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: grid;
  place-items: center;
  position: relative;
  transition: all 0.2s;
}
.tier .grade {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}
.tier .count {
  position: absolute;
  bottom: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--kraft-deep);
}
.tier.s { background: var(--vermilion); color: var(--washi); border-color: var(--ink); }
.tier.s .count { color: rgba(245, 235, 216, 0.7); }
.tier.a { background: var(--gold); }
.tier.b { background: var(--gold-soft); }
.tier.last { background: var(--ink); color: var(--gold); }
.tier.last .count { color: var(--gold-soft); }
.tier.last .grade { font-size: 14px; }

.draw-controls {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 8px;
  border-top: 1px dashed var(--kraft-deep);
  padding-top: 20px;
}
.draw-count {
  display: flex;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.draw-count button {
  width: 36px;
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  transition: background 0.15s;
}
.draw-count button:hover { background: var(--washi-deep); }
.draw-count input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  background: var(--paper);
}
.draw-controls .btn { flex: 1; justify-content: center; padding: 12px; }
.draw-cost {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--kraft-deep);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
.draw-cost b {
  color: var(--vermilion);
  font-family: var(--font-display);
  font-size: 16px;
}

/* result canvas */
.lottery-result {
  background: linear-gradient(180deg, #2a211c 0%, #1a1614 100%);
  border: 2px solid var(--gold-deep);
  border-radius: 4px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lottery-result h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  display: flex; justify-content: space-between; align-items: center;
}
.lottery-result h4 .live {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--vermilion);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.2em;
}
.lottery-result h4 .live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vermilion);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.result-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  overflow-y: auto;
}
.result-feed::-webkit-scrollbar { width: 6px; }
.result-feed::-webkit-scrollbar-thumb { background: var(--gold-deep); }

.result-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(245, 235, 216, 0.04);
  border: 1px solid rgba(245, 184, 46, 0.2);
  border-radius: 4px;
  animation: slideIn 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.result-row .grade-chip {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--washi);
}
.result-row.s .grade-chip { background: var(--vermilion); color: var(--washi); }
.result-row.a .grade-chip { background: var(--gold); color: var(--ink); border-color: var(--gold-deep); }
.result-row.b .grade-chip { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-deep); }
.result-row.c .grade-chip { background: var(--washi-deep); color: var(--ink); border-color: var(--kraft); }
.result-row.last .grade-chip { background: var(--vermilion-dark); color: var(--gold); font-size: 12px; }

.result-row .info { font-size: 13px; }
.result-row .name { font-family: var(--font-display); font-weight: 700; color: var(--washi); }
.result-row .id { font-family: var(--font-mono); font-size: 10px; color: var(--kraft); }
.result-row .stamp-mini {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

.result-empty {
  margin: auto;
  text-align: center;
  color: var(--kraft);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 40px 20px;
}
.result-empty .kanji-big {
  font-size: 80px;
  font-weight: 900;
  color: var(--gold-deep);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

/* ========================================
   PROMISES — 三大保障
   ======================================== */
.promises {
  padding: 80px 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promise {
  border: 2px solid var(--ink);
  padding: 32px 24px 28px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 60px; height: 60px;
  background: var(--vermilion);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.promise .num {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--paper);
  z-index: 2;
}
.promise .ja-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--kraft-deep);
  margin-bottom: 8px;
  margin-top: 24px;
  text-transform: uppercase;
}
.promise h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.promise p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.promise .promise-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--kraft-deep);
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--kraft-deep);
  letter-spacing: 0.1em;
}
.promise .promise-foot .seal {
  width: 36px; height: 36px;
  border: 2px solid var(--vermilion);
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vermilion);
  font-size: 10px;
  text-align: center;
  line-height: 1;
  transform: rotate(-5deg);
}

/* ========================================
   APP DOWNLOAD
   ======================================== */
.appdown {
  padding: 80px 0;
  background: var(--vermilion);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.appdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 24px,
    rgba(255, 255, 255, 0.04) 24px 25px
  );
}
.appdown::after {
  content: "酷吉Kuji 酷吉Kuji 酷吉Kuji";
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 200px;
  opacity: 0.06;
  white-space: nowrap;
  line-height: 1;
}

.appdown-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.appdown .ja-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.appdown h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.appdown h2 em {
  background: var(--gold);
  color: var(--vermilion-dark);
  font-style: normal;
  padding: 0 8px;
}
.appdown p {
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0.92;
}
.app-cta-row { display: flex; gap: 12px; align-items: center; }
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--paper);
  border-radius: 4px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.app-store-btn:hover { background: var(--paper); color: var(--ink); }
.app-store-btn .small { font-size: 9px; letter-spacing: 0.2em; opacity: 0.8; text-transform: uppercase; }
.app-store-btn .big { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.app-store-btn .soon {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 1px 6px;
  letter-spacing: 0.1em;
}

/* phone mock */
.phone-mock {
  width: 280px;
  height: 560px;
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
  flex-shrink: 0;
}
.phone-screen {
  background: var(--washi);
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-screen .bar {
  height: 32px;
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  color: var(--washi);
  font-size: 10px;
  font-family: var(--font-mono);
}
.phone-screen .top-pad {
  background: var(--vermilion);
  color: var(--paper);
  padding: 16px 16px 12px;
}
.phone-screen .top-pad h5 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
}
.phone-screen .top-pad small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.phone-screen .feed { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-screen .feed .item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 10px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
}
.phone-screen .feed .item .swatch {
  width: 36px; height: 36px;
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vermilion);
  font-size: 18px;
}
.phone-screen .feed .item.s .swatch { background: var(--vermilion); color: var(--paper); }
.phone-screen .feed .item .label .t { font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.phone-screen .feed .item .label .s { font-family: var(--font-mono); font-size: 9px; color: var(--kraft-deep); }

/* ========================================
   NEWS / ANNOUNCEMENTS
   ======================================== */
.news {
  padding: 80px 0;
  background: var(--washi);
  border-bottom: 2px solid var(--ink);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.news-list {
  border: 2px solid var(--ink);
  background: var(--paper);
}
.news-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px dashed var(--kraft-deep);
  align-items: center;
  transition: background 0.15s;
  cursor: pointer;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--washi); }
.news-item .date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--kraft-deep);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.news-item .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  padding: 3px 10px;
  border: 1px solid var(--ink);
  letter-spacing: 0.15em;
  background: var(--paper);
}
.news-item .tag.notice { background: var(--ink); color: var(--paper); }
.news-item .tag.event { background: var(--vermilion); color: var(--paper); border-color: var(--vermilion); }
.news-item .tag.update { background: var(--gold); border-color: var(--gold-deep); }
.news-item .title { font-size: 14px; font-weight: 600; color: var(--ink); }
.news-item .arr { color: var(--vermilion); font-family: var(--font-display); }

.event-card {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--washi);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "祭";
  position: absolute;
  top: -20px; right: -10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 220px;
  color: var(--vermilion);
  opacity: 0.2;
  line-height: 1;
}
.event-card .ja-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.event-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.event-card p {
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.9;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.event-card .countdown {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.event-card .countdown .unit {
  background: var(--washi);
  color: var(--ink);
  padding: 6px 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  border-radius: 2px;
  min-width: 44px;
  text-align: center;
  position: relative;
}
.event-card .countdown .unit small {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--kraft-deep);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ink);
  color: var(--washi);
  padding: 56px 0 24px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--vermilion) 0 20px,
    var(--gold) 20px 40px,
    var(--ink) 40px 60px
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-top: 16px;
}
.footer-brand .logo-lockup .logo-text .ja { color: var(--washi); }
.footer-brand .logo-lockup .logo-text .ja em { color: var(--gold); }
.footer-brand p {
  font-size: 12px;
  margin-top: 16px;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
}
.footer-brand .biz {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(245, 235, 216, 0.05);
  border: 1px solid var(--kraft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.footer-brand .biz b { color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13px;
  opacity: 0.78;
  transition: opacity 0.15s, color 0.15s;
}
.footer-col a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 216, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.footer-bottom .links { display: flex; gap: 18px; }

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.78);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: fadeIn 0.2s;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--paper);
  border: 2px solid var(--ink);
  max-width: 760px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 12px 12px 0 var(--vermilion);
}
.modal-head {
  position: sticky;
  top: 0;
  background: var(--ink);
  color: var(--washi);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}
.modal-head .ja {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
}
.modal-close {
  width: 32px; height: 32px;
  border: 1px solid var(--washi);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--washi);
  transition: all 0.15s;
}
.modal-close:hover { background: var(--vermilion); border-color: var(--vermilion); }

.modal-body {
  padding: 28px 32px;
  font-size: 13px;
  line-height: 1.8;
}
.modal-body h2 { display: none; }
.modal-body h1 { font-family: var(--font-display); font-weight: 900; font-size: 22px; margin-bottom: 16px; color: var(--vermilion); }
.modal-body h3 { font-family: var(--font-display); font-weight: 900; font-size: 16px; margin: 20px 0 8px; color: var(--ink); border-left: 3px solid var(--vermilion); padding-left: 10px; }
.modal-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin: 16px 0 6px; color: var(--ink-soft); }
.modal-body p, .modal-body li { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.modal-body ul, .modal-body ol { padding-left: 20px; margin-bottom: 12px; }
.modal-body strong { color: var(--ink); }
.modal-body hr { border: none; border-top: 1px dashed var(--kraft-deep); margin: 16px 0; }
.modal-body table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 12px; }
.modal-body th, .modal-body td { border: 1px solid var(--kraft); padding: 8px; text-align: left; }
.modal-body th { background: var(--washi); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
  .lottery-stage { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat.featured { grid-row: span 1; }
  .promise-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(odd) { border-right: 1px dashed var(--kraft-deep); }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px dashed var(--kraft-deep); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .appdown-inner { grid-template-columns: 1fr; gap: 32px; }
  .phone-mock { margin: 0 auto; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 20px; }
  .logo-text .sub { display: none; }
  .hero-inner { padding: 40px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px dashed var(--kraft-deep); }
  .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
