:root {
  --bg: #fff7ec;
  --bg2: #ffe9d1;
  --main: #ff8a3d;
  --main2: #ffbf61;
  --main-dark: #d95f18;
  --accent: #7b4cff;
  --text: #2d2118;
  --muted: #75685e;
  --line: rgba(75, 45, 20, 0.13);
  --shadow: 0 18px 45px rgba(98, 54, 18, 0.12);
  --max: 1040px;
  --result1: #7b4cff;
  --result2: #b79cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 196, 112, 0.55), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(166, 138, 255, 0.35), transparent 28%),
    linear-gradient(180deg, var(--bg), #fffdf9 52%, var(--bg2));
  min-height: 100vh;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 247, 236, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--main), var(--main2));
  box-shadow: 0 10px 25px rgba(255, 138, 61, 0.28);
  font-size: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-text span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--main-dark);
  background: rgba(255, 138, 61, 0.12);
}

.hero {
  padding: 58px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--main-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(98, 54, 18, 0.08);
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.lead,
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
}

.lead strong,
.hero-lead strong {
  color: var(--text);
  background: linear-gradient(transparent 62%, rgba(255, 202, 99, 0.75) 62%);
}

.form-card {
  margin-top: 26px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(98, 54, 18, 0.09);
}

.form-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 10px;
}

.name-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline: none;
  font-weight: 600;
}

.name-input:focus {
  border-color: rgba(255, 138, 61, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-main {
  background: linear-gradient(135deg, var(--main), var(--main2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 138, 61, 0.32);
  font-weight: 800;
}

.btn-dark {
  background: var(--text);
  color: #fff;
  font-weight: 800;
}

.btn-sub {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--text);
}

.mini-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.result-card {
  position: relative;
  border-radius: 34px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.64)),
    radial-gradient(circle at 20% 20%, rgba(123, 76, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(255, 138, 61, 0.15), transparent 34%);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-inner {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(98, 54, 18, 0.1);
}

.result-label {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(123, 76, 255, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.result-emoji {
  font-size: 44px;
  margin-top: 14px;
  line-height: 1;
}

.result-title {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.result-title span {
  color: var(--result1);
}

.result-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 500;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.result-item {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 247, 236, 0.88);
  border: 1px solid var(--line);
}

.result-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.result-item strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.meters {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.meter {
  display: grid;
  gap: 6px;
}

.meter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: #f3eadf;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--result1), var(--result2));
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section {
  padding: 40px 0;
}

.box {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(98, 54, 18, 0.08);
}

.box h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.25;
  font-weight: 800;
}

.box p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.ad-placeholder {
  margin-top: 18px;
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(117, 104, 94, 0.25);
  border-radius: 20px;
  background: rgba(255, 247, 236, 0.65);
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 38px 0 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--main-dark);
}

/* =========================
   トップページや他メーカーでも使う可能性がある共通クラス
   ========================= */

.section-title,
.sample-title,
.about-card h2,
.ad-box h2,
.card h3 {
  font-weight: 800;
}

.section-text,
.card .catch,
.card .desc,
.about-card p,
.ad-box p {
  font-weight: 500;
}

.card-btn,
.status,
.sample-label,
.pr-label {
  font-weight: 700;
}

.tool-link,
.mini-list li {
  font-weight: 600;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .input-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .result-card {
    padding: 16px;
    border-radius: 26px;
  }

  .result-inner {
    padding: 18px;
    border-radius: 22px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .share-buttons {
    display: grid;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 14px;
  }

  h1,
  .section-title,
  .result-title,
  .sample-title {
    font-weight: 750;
  }

  .lead,
  .hero-lead,
  .result-summary,
  .result-item strong {
    font-weight: 500;
  }
}


/* =========================
   あんず横丁トップページ
   ========================= */

.top-hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-panel {
  position: relative;
  border-radius: 34px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62)),
    radial-gradient(circle at 20% 20%, rgba(255, 138, 61, 0.18), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(123, 76, 255, 0.16), transparent 34%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-sample {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(98, 54, 18, 0.1);
}

.sample-label {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(123, 76, 255, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.sample-title {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.sample-title span {
  color: var(--main-dark);
}

.sample-text {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.floating {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(98, 54, 18, 0.08);
  font-weight: 700;
  color: var(--muted);
  z-index: 1;
}

.floating.one {
  right: 18px;
  top: 20px;
  padding: 8px 13px;
  transform: rotate(7deg);
}

.floating.two {
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  transform: rotate(-6deg);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: 0 14px 34px rgba(98, 54, 18, 0.08);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 138, 61, 0.16), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(123, 76, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.tool-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(98, 54, 18, 0.08);
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(117, 104, 94, 0.1);
  color: var(--muted);
}

.status.open {
  background: rgba(255, 138, 61, 0.15);
  color: var(--main-dark);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.card .catch {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--text);
}

.card .desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.card-action {
  margin-top: auto;
  padding-top: 18px;
}

.card-btn {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.card-btn.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.card-btn.disabled {
  color: rgba(117, 104, 94, 0.72);
  cursor: not-allowed;
}

.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.about-card,
.ad-box {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(98, 54, 18, 0.08);
}

.about-card h2,
.ad-box h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.about-card p,
.ad-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 247, 236, 0.85);
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 900px) {
  .top-hero-grid,
  .about-box {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 26px;
  }

  .result-sample {
    border-radius: 22px;
    padding: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}
/* =========================
   あんず横丁 共通：ほかの診断・メーカー
   ========================= */

.yokocho-tools-nav {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 151, 180, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 222, 231, 0.65), transparent 34%),
    linear-gradient(180deg, #fff, #fff8fa);
  box-shadow: 0 12px 32px rgba(120, 65, 90, 0.08);
}

.yokocho-tools-nav__head {
  margin-bottom: 16px;
}

.yokocho-tools-nav__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffe8ef;
  color: #b04b69;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.yokocho-tools-nav__title {
  margin: 0;
  color: #433039;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.35;
  font-weight: 800;
}

.yokocho-tools-nav__lead {
  margin: 7px 0 0;
  color: #7f6b73;
  font-size: 14px;
  line-height: 1.8;
}

.yokocho-tools-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.yokocho-tool-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(215, 161, 181, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(80, 40, 60, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

a.yokocho-tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 104, 144, 0.45);
  background: #fff;
  box-shadow: 0 13px 24px rgba(80, 40, 60, 0.11);
}

.yokocho-tool-card.is-disabled {
  opacity: 0.62;
  cursor: default;
}

.yokocho-tool-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 32%),
    linear-gradient(135deg, #ffe4ec, #fff6d9);
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.75);
}

.yokocho-tool-card__body {
  min-width: 0;
}

.yokocho-tool-card__top {
  margin-bottom: 5px;
}

.yokocho-tool-card__badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff2f6;
  color: #b95775;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.yokocho-tool-card__title {
  margin: 0;
  overflow: hidden;
  color: #49343d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yokocho-tool-card__desc {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: #7f6b73;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.yokocho-tool-card__arrow {
  color: #d66c8d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.yokocho-tool-card.is-disabled .yokocho-tool-card__arrow {
  width: auto;
  color: #9b8a90;
  font-size: 11px;
}

@media (max-width: 980px) {
  .yokocho-tools-nav__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .yokocho-tools-nav {
    padding: 16px;
    border-radius: 20px;
  }

  .yokocho-tools-nav__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .yokocho-tools-nav__lead {
    font-size: 13px;
  }

  .yokocho-tool-card {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 12px;
    border-radius: 16px;
  }

  .yokocho-tool-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 22px;
  }
}

/* =========================
   トップページ：DMM PR枠を全カラム表示
   ========================= */
.about-box > .anzu-dmm-api-widget {
  grid-column: 1 / -1;
  width: 100%;
}

@media (max-width: 900px) {
  .about-box > .anzu-dmm-api-widget {
    grid-column: auto;
  }
}



.today-pick {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(120, 72, 40, 0.12);
  box-shadow: 0 14px 34px rgba(80, 45, 20, 0.08);
}

.today-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 159, 98, 0.16);
  color: #9b4b22;
  font-size: 0.82rem;
  font-weight: 700;
}

.today-pick h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.today-pick p {
  margin: 0;
  color: #6f5b4f;
  line-height: 1.8;
}

.line-section {
  padding-top: 34px;
}

.line-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: stretch;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 244, 229, 0.96), rgba(255, 234, 238, 0.94));
  border: 1px solid rgba(120, 72, 40, 0.12);
  box-shadow: 0 18px 44px rgba(80, 45, 20, 0.08);
}

.command-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(120, 72, 40, 0.1);
}

.command-title {
  margin-bottom: 10px;
  font-weight: 800;
  color: #5a3829;
}

.command-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.command-card code {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(70, 42, 28, 0.08);
  color: #4c3328;
  font-size: 0.95rem;
  white-space: nowrap;
}

.tool-category {
  margin-top: 30px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.18rem;
  color: #4b3024;
}

.category-title::before {
  content: "";
  width: 9px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9f62, #ff6f91);
}

.empty-box {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px dashed rgba(120, 72, 40, 0.2);
  color: #6f5b4f;
}

@media (max-width: 760px) {
  .line-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .command-card code {
    white-space: normal;
  }

  .today-pick {
    padding: 16px;
  }
}
