/* ==========================================================
   Today Page v3 — 今日
   Hero 背景层 + 毛玻璃 + 星点背景
   ========================================================== */
#page-1 { background: #fbf7f5; }

/* ---- 背景渐变 ---- */
.today-wrapper {
  min-height: 100%; position: relative;
  background:
    radial-gradient(circle at 78% 0%, rgba(168,145,232,.34), transparent 30%),
    radial-gradient(circle at 5% 22%, rgba(255,174,197,.22), transparent 36%),
    linear-gradient(180deg, #f4edff 0%, #fff4f8 36%, #fbf7f5 72%, #fbf7f5 100%);
}

/* ===== Hero Area — 全屏头部背景 ===== */
.tw-hero-area {
  position: relative; aspect-ratio: 1/1; background: #3b2a5a;
}

.tw-hero-area .tw-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.tw-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}

/* 白雾遮罩 */
.tw-hero-area::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.06) 100%),
    linear-gradient(90deg, rgba(255,255,255,.70) 0%, rgba(255,255,255,.45) 40%, rgba(255,255,255,.06) 100%);
}

/* ---- Greeting — 自适应不换行不遮挡右侧 ---- */
.tw-head {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 24px 21px 0;
}

.tw-greeting {
  flex: 1; min-width: 0; overflow: hidden; padding-right: 8px;
}

.tw-greeting h1 {
  margin: 0; font-family: 'Georgia', serif;
  font-size: clamp(13px, 4vw, 22px);
  line-height: 1.25; font-weight: 780; letter-spacing: 0;
  color: #35294f;
  white-space: nowrap;
}

.tw-greeting p {
  margin: 4px 0 0;
  font-size: clamp(10px, 2.8vw, 12px);
  color: #5b4d6f;
  white-space: nowrap;
}

.tw-streak {
  flex: 0 0 auto; height: 44px; padding: 0 13px; border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 26px rgba(98,74,112,.1);
  display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 720;
  color: #35294f;
}

.tw-streak strong { font-size: 22px; color: #eaa05e; line-height: 1; }

/* ===== Island Card — 重叠在 hero 底部 ===== */
.tw-island-card {
  position: relative; z-index: 1; min-height: 160px; border-radius: 32px;
  margin: calc(-100% + 82px) 18px 14px; padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 32px rgba(98,74,112,.06);
  background: rgba(255,255,255,.03);
}

.tw-card-label {
  display: flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: 14px; font-weight: 760; color: #35294f;
}

.tw-info-dot {
  width: 17px; height: 17px; border-radius: 999px;
  border: 1px solid rgba(75,61,104,.35); color: rgba(75,61,104,.72);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}

.tw-state-copy { width: 84%; min-height: 120px; overflow: hidden; }

.tw-state-copy h2 {
  margin: 0; font-family: 'Georgia', serif;
  font-size: clamp(22px, 7vw, 31px); line-height: 1.22;
  font-weight: 780; letter-spacing: .5px; color: #35294f;
}

.tw-state-copy p {
  width: 96%;
  margin: 10px 0 0; font-size: 13px; line-height: 1.5; color: #46395f; font-weight: 520;
}

.tw-keyword-part { overflow: hidden; }

.tw-keyword-part span { flex-shrink: 0; }

.tw-keyword-part strong { overflow: hidden; text-overflow: ellipsis; }

.tw-state-actions {
  margin-top: 14px;
}

.tw-state-pill {
  display: flex; align-items: center; width: 100%; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(98,74,112,.08);
  overflow: hidden;
}

.tw-mood-part {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  height: 100%;
  background: linear-gradient(135deg, #a98cf5, #8e73df);
  color: white;
  font-size: 14px;
  font-weight: 720;
  font-family: inherit;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.tw-mood-part:active { transform: scale(.96); }

.tw-keyword-part {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  height: 100%;
  flex: 1;
  color: #58496d;
  font-size: 13px;
  white-space: nowrap;
}

.tw-keyword-part strong { font-weight: 760; }

.tw-keyword-part::after {
  content: "›"; margin-left: auto;
  color: #aaa0b3; flex-shrink: 0;
}

/* ===== Guide Cards ===== */
.tw-guide-lock {
  margin: 0 18px;
  min-height: 232px;
  padding: 18px 18px 18px 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,226,241,.55), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(222,204,255,.42), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,253,.86));
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(98,74,112,.11);
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  align-items: stretch;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.tw-guide-lock::after {
  content: "";
  position: absolute;
  inset: auto -18px -30px auto;
  width: 156px;
  height: 156px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(169,140,245,.14), rgba(169,140,245,0) 68%);
  pointer-events: none;
}

.tw-guide-postcard {
  position: relative;
  height: 132px;
  align-self: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 15%, rgba(255,230,246,.78), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.92), rgba(250,238,255,.88));
  border: 1px solid rgba(226,214,241,.86);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.76), 0 10px 24px rgba(98,74,112,.09);
  overflow: hidden;
}

.tw-guide-postcard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(202,184,224,.44);
}

.tw-guide-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7d3df, #e9b7cf);
  color: #8f5b80;
  font-size: 10px;
  font-weight: 720;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 16px rgba(152,101,139,.14);
}

.tw-guide-lines {
  position: absolute;
  left: 16px;
  right: 58px;
  top: 26px;
  bottom: 20px;
  background:
    linear-gradient(rgba(166,143,189,.28), rgba(166,143,189,.28)) 0 0/100% 1px,
    linear-gradient(rgba(166,143,189,.28), rgba(166,143,189,.28)) 0 33%/100% 1px,
    linear-gradient(rgba(166,143,189,.28), rgba(166,143,189,.28)) 0 66%/100% 1px,
    linear-gradient(rgba(166,143,189,.28), rgba(166,143,189,.28)) 0 100%/100% 1px;
  background-repeat: no-repeat;
  opacity: .85;
}

.tw-guide-seal {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #a98cf5;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(169,140,245,.16);
}

.tw-guide-text {
  min-width: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4px 0;
}

.tw-guide-text strong {
  display: block;
  max-width: 100%;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 780;
  color: #3e3054;
}

.tw-guide-text span {
  display: block;
  max-width: 100%;
  font-size: 13px;
  color: #746783;
  line-height: 1.58;
}

.tw-guide-lock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  height: 38px;
  padding: 0 18px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a98cf5, #d68eb0);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  box-shadow: 0 10px 22px rgba(169,140,245,.2);
  font-family: inherit;
  cursor: pointer;
}

/* 塔罗牌指引卡片 */
.tw-guide-card {
  margin: 0 18px; border-radius: 28px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 42px rgba(98,74,112,.12);
  border: 1px solid rgba(255,255,255,.9);
  padding: 18px;
  display: grid;
  grid-template-columns: 112px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  min-height: 232px;
  position: relative;
}

.tw-tarot-panel {
  width: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

.tw-tarot-img {
  width: 70px; height: 120px; min-height: 120px; border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(98,74,112,.1);
  margin-left: 2px;
}

.tw-tarot-meta {
  width: 100%;
  margin-top: 12px;
  text-align: left;
}

.tw-tarot-name {
  color: #3d3055;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  text-align: left;
  word-break: break-word;
}

.tw-tarot-orient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  padding: 0 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: #fff3df;
  color: #d89a4a;
  font-size: 11px;
  font-weight: 720;
}

.tw-guide-body {
  min-width: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,249,252,.82));
  box-shadow: inset 0 0 0 1px rgba(234,224,236,.76);
  min-height: 156px;
}

.tw-guide-body p {
  margin: 0;
  width: 100%;
  color: #66596f;
  font-size: 14px;
  line-height: 1.72;
}

.tw-guide-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.tw-guide-btn {
  width: auto;
  min-width: 132px;
  align-self: center;
  height: 36px;
  border: none;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: #5c4c71;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 0 8px 18px rgba(98,74,112,.08);
  cursor: pointer;
  margin-top: 0;
}

.tw-guide-btn.is-complete {
  background: rgba(255,255,255,.68);
  color: #8f7e96;
  box-shadow: inset 0 0 0 1px rgba(226,214,230,.9);
}

.tw-draw-feedback {
  min-height: 18px;
  margin-top: 10px;
  color: #8d7aa6;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease;
}

.tw-draw-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

.tw-guide-card.is-drawing {
  overflow: hidden;
}

.tw-guide-card.is-drawing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.75), transparent 26%),
    radial-gradient(circle at 72% 28%, rgba(201,162,77,.16), transparent 24%),
    linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,.36), rgba(255,255,255,0));
  opacity: .75;
  pointer-events: none;
  animation: drawSweep 1.2s ease-in-out infinite;
}

.tw-guide-card.is-drawing .tw-tarot-img {
  animation: drawPulse .7s ease-in-out infinite alternate;
  transform-origin: center bottom;
}

.tw-guide-card.is-drawing .tw-guide-btn {
  pointer-events: none;
}

.tw-guide-card.is-revealed .tw-tarot-img {
  animation: revealPop .42s cubic-bezier(.2,1.15,.3,1) both;
}

.tw-guide-card.is-revealed .tw-guide-btn.is-complete {
  transform: scale(1);
}

@keyframes drawSweep {
  0% { transform: translateX(-20%) translateY(-8%); opacity: .32; }
  50% { transform: translateX(12%) translateY(4%); opacity: .84; }
  100% { transform: translateX(24%) translateY(10%); opacity: .36; }
}

@keyframes drawPulse {
  from { transform: translateY(0) scale(1); filter: saturate(1); }
  to { transform: translateY(-2px) scale(1.03); filter: saturate(1.08); }
}

@keyframes revealPop {
  0% { transform: scale(.88) rotate(-1.5deg); opacity: .2; }
  60% { transform: scale(1.04) rotate(.6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.tw-guide-card.is-complete .tw-guide-btn {
  pointer-events: none;
}

/* ===== Task + Review ===== */
.tw-mini-card,
.tw-review-card {
  margin: 12px 18px 0;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(98,74,112,.12);
}

.tw-mini-card {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.tw-mini-icon,
.tw-review-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex: 0 0 54px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(250,233,243,.9));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.tw-mini-body,
.tw-review-copy {
  min-width: 0;
  flex: 1;
}

.tw-mini-label {
  color: #8d7aa6;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .2px;
}

.tw-mini-body h3,
.tw-review-copy h3 {
  margin: 3px 0 4px;
  color: #35294f;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.3;
}

.tw-mini-body p,
.tw-review-copy p {
  margin: 0;
  color: #756986;
  font-size: 11px;
  line-height: 1.45;
}

.tw-mini-btn,
.tw-review-save {
  height: 34px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8a2ba, #c47c99);
  color: #fff;
  font-size: 12px;
  font-weight: 720;
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
}

.tw-mini-btn.is-done,
.tw-review-save.is-done {
  background: linear-gradient(135deg, #b9d9bf, #8aba95);
}

.tw-review-card {
  padding: 12px 14px;
}

.tw-review-top {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  align-items: center;
  gap: 12px;
}

.tw-review-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.tw-review-opt {
  min-height: 40px;
  padding: 8px 7px;
  border-radius: 14px;
  border: 1px solid rgba(203,184,220,.72);
  background: rgba(255,255,255,.72);
  color: #5c4c71;
  font-size: 10px;
  font-weight: 620;
  font-family: inherit;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}

.tw-review-opt.is-selected {
  border-color: rgba(198,124,153,.82);
  background: rgba(255,239,245,.98);
  color: #a14a6b;
}

.tw-review-save {
  width: 100%;
  margin-top: 12px;
}

/* ===== Section Title ===== */
/* ===== Progress ===== */
.tw-progress-card {
  margin: 18px 18px 0; border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(98,74,112,.12); padding: 18px 14px;
}

.tw-progress-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }

.tw-step { text-align: center; position: relative; }

.tw-step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; right: -14px;
  width: 24px; height: 4px; border-radius: 999px; background: #eadff2;
}

.tw-step.done:not(:last-child)::after { background: #ffccd9; }

.tw-step-icon {
  width: 58px; height: 58px; border-radius: 999px; margin: 0 auto 8px;
  position: relative; overflow: visible;
}

.tw-step.done .tw-step-icon::after {
  content: "✓"; position: absolute; right: -2px; bottom: -2px;
  width: 18px; height: 18px; border-radius: 999px;
  background: #a98cf5; color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.tw-step-name { font-size: 12px; font-weight: 720; color: #5b4d6f; margin-bottom: 3px; }

.tw-step-status { font-size: 11px; color: #aaa0b3; }

.tw-progress-meta {
  margin-top: 12px;
  text-align: center;
  color: #8d7aa6;
  font-size: 12px;
  font-weight: 700;
}

/* ===== Recommend ===== */
.tw-recommend-grid {
  margin: 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.tw-rec-card {
  min-height: 142px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,237,247,.78));
  box-shadow: 0 16px 42px rgba(98,74,112,.12);
  border: 1px solid rgba(255,255,255,.92);
  padding: 16px; position: relative; overflow: hidden;
}

.tw-rec-card h3 {
  margin: 0 0 8px; font-size: 16px; font-weight: 760; color: #35294f;
  position: relative; z-index: 2;
}

.tw-rec-card p {
  margin: 0; color: #756986; font-size: 12px; line-height: 1.55;
  width: 74%; position: relative; z-index: 2;
}

.tw-rec-card .tw-rec-icon {
  position: absolute; right: 8px; bottom: 8px;
  width: 78px; height: 78px; border-radius: 24px; z-index: 1;
}

.tw-small-btn {
  position: absolute; left: 16px; bottom: 14px; height: 30px;
  padding: 0 12px; border: none; border-radius: 999px;
  background: #fff; color: #815bc9; font-size: 12px;
  font-weight: 700; font-family: inherit; cursor: pointer; z-index: 2;
}

/* ===== Sync Card ===== */
.tw-sync-card {
  position: relative; z-index: 2;
  margin: 4px 18px 12px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,246,252,.88)),
    radial-gradient(circle at 4% 0%, rgba(255,214,232,.42), transparent 38%);
  box-shadow: 0 12px 30px rgba(126,91,151,.12), inset 0 0 0 1px rgba(255,255,255,.74);
  border: 1px solid rgba(226,204,246,.72);
  display: grid;
  grid-template-columns: 50px minmax(96px,.9fr) 1px minmax(0,1.25fr) auto;
  align-items: center;
  column-gap: 8px;
  overflow: hidden;
}

.tw-sync-avatars {
  position: relative; height: 34px; width: 50px;
}

.tw-sync-avatar {
  position: absolute; top: 0;
  width: 34px; height: 34px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.86);
  box-shadow: 0 6px 14px rgba(105,74,121,.12);
  font-size: 16px;
}

.tw-sync-avatar-a {
  left: 0;
  background: linear-gradient(135deg, #ffe9b4, #d79b66);
}

.tw-sync-avatar-more {
  left: 15px;
  background: linear-gradient(135deg, #fbf3ff, #e3d7f6);
  color: #8d7aa6;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -1px;
}

.tw-sync-left {
  min-width: 0;
  color: #473a6a;
  line-height: 1.3;
}

.tw-sync-left strong {
  display: block;
  font-size: 14px;
  font-weight: 780;
  color: #332a61;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-sync-left span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 560;
  color: #6b5b87;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-sync-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(200,178,221,.62), transparent);
}

.tw-sync-right {
  min-width: 0;
  display: flex; align-items: center;
  color: #6b5b87;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 640;
  white-space: nowrap;
}

.tw-sync-right span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-sync-more {
  color: #9b89ad;
  font-size: 20px;
  line-height: 1;
  padding-left: 1px;
}

/* ===== Image Slots ===== */
.tw-image-slot { background: transparent; overflow: hidden; position: relative; }

.tw-step-icon.tw-image-slot { overflow: visible; }

.tw-image-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tw-image-slot.failed img { display: none; }

.tw-image-slot.failed::after {
  content: "PNG"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: 1px;
}

/* ===== Mood Modal ===== */
.today-modal-mask {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(45,34,52,.28); display: none;
  align-items: flex-end; justify-content: center;
}

.today-modal-mask.show { display: flex; }

.today-mood-sheet {
  width: 100%; max-width: 430px;
  background: #fbf7f5; border-radius: 30px 30px 0 0;
  padding: 18px 18px calc(24px + env(safe-area-inset-bottom,0px));
  box-shadow: 0 -18px 40px rgba(45,34,52,.18);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
}

.today-sheet-handle {
  width: 42px; height: 5px; border-radius: 999px;
  background: #e2d8df; margin: 0 auto 16px;
}

.today-mood-sheet h2 { margin: 0; font-size: 22px; font-weight: 780; color: #35294f; }

.today-mood-sheet p { margin: 8px 0 16px; font-size: 13px; color: #756986; }

.today-mood-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

.today-mood-btn {
  border: 1px solid rgba(255,255,255,.9); background: #fff;
  border-radius: 20px; height: 86px; font-family: inherit;
  box-shadow: 0 8px 20px rgba(98,74,112,.08); cursor: pointer; color: #35294f;
}

.today-mood-btn:active { transform: scale(.95); background: #fdf2f7; }

.today-emoji { display: block; font-size: 26px; margin-bottom: 7px; }

.today-name { font-size: 13px; font-weight: 720; }

/* ===== Responsive ===== */
@media (max-width:360px) {
  .tw-state-copy { width: 100%; }
  .tw-state-copy h2 { font-size: 26px; }
  .tw-recommend-grid { grid-template-columns: 1fr; }
  .tw-progress-row { grid-template-columns: repeat(2,1fr); }
  .tw-guide-lock {
    grid-template-columns: 88px minmax(0,1fr);
    gap: 14px;
    padding: 14px;
  }
  .tw-guide-postcard {
    height: 118px;
  }
  .tw-guide-text strong {
    font-size: 18px;
  }
  .tw-mini-card,
  .tw-review-top { align-items: flex-start; }
  .tw-mini-card,
  .tw-review-top { grid-template-columns: 48px minmax(0,1fr); }
  .tw-mini-btn { width: 100%; }
  .tw-review-options { grid-template-columns: 1fr; }
}
