:root {
  --bg:        #FBF4F1;
  --bg-2:      #F5E8E2;
  --paper:     #FFFCFA;
  --line:      #EDDDD3;
  --line-2:    #D9C4B7;

  --ink:       #3D2939;
  --ink-2:     #6B4A5C;
  --ink-3:     #A08291;
  --ink-4:     #C9B5BD;

  --pink:      #E89AB3;
  --pink-soft: #F4D4DD;
  --pink-bg:   #FCEEF1;
  --rose:      #7A3F5A;
  --gold:      #C99B3A;
  --gold-soft: #F2E2BC;
  --clover:    #5BA888;
  --clover-soft:#D6EADE;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Source Han Serif SC", "Songti SC", "Noto Serif SC", "STSong", -apple-system, "PingFang SC", serif;
  background: var(--bg);
  background-image: radial-gradient(circle at 12% 8%, var(--pink-bg) 0, transparent 38%),
                    radial-gradient(circle at 92% 92%, var(--clover-soft) 0, transparent 42%);
  background-attachment: fixed;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--rose); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--pink); }
.muted { color: var(--ink-3); font-size: 12.5px; font-family: "PingFang SC", sans-serif; }

.site-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 36px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
}
.brand { display: flex; gap: 14px; align-items: center; }
.brand-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--pink-soft);
  object-fit: cover;
  background: var(--paper);
}
.brand-text strong {
  display: block; font-size: 17px; font-weight: 600;
  color: var(--rose); letter-spacing: 0.5px;
}
.brand-sub { font-size: 11.5px; color: var(--ink-3); font-family: "PingFang SC", sans-serif; }
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  color: var(--ink-2); font-size: 13px; padding: 4px 0;
  border-bottom: 1px solid transparent;
  font-family: "PingFang SC", sans-serif;
}
.site-nav a:hover { color: var(--rose); border-bottom-color: var(--pink); }
.site-nav a.active { color: var(--rose); border-bottom-color: var(--pink); font-weight: 500; }

.tabs-wrap {
  position: sticky; top: 76px; z-index: 9;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, transparent 100%);
  padding: 16px 0 12px;
}
.tabs {
  max-width: 1180px; margin: 0 auto;
  display: flex; gap: 10px;
  padding: 0 24px;
}
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  font-family: "PingFang SC", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.4px;
}
.tab:hover {
  border-color: var(--line-2);
  transform: translateY(-1px);
}
.tab-digest.active {
  background: var(--paper);
  border-color: var(--rose);
  color: var(--rose);
  font-weight: 600;
}
.tab-games.active {
  background: var(--pink-bg);
  border-color: var(--pink);
  color: var(--rose);
  font-weight: 600;
}
.tab-anime.active {
  background: #F5EFFA;
  border-color: #9D7EC9;
  color: #4A3370;
  font-weight: 600;
}
.tab-merch.active {
  background: var(--gold-soft);
  border-color: #C99B3A;
  color: #6B4709;
  font-weight: 600;
}
.tab-hotlist.active {
  background: var(--clover-soft);
  border-color: var(--clover);
  color: var(--clover);
  font-weight: 600;
}

.page { animation: fadein 0.3s ease; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  max-width: 1180px; margin: 0 auto;
  padding: 48px 32px 36px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}
.hero-left { text-align: left; }
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-mascot {
  width: 100%; max-width: 320px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(122, 63, 90, 0.14));
  user-select: none;
  -webkit-user-drag: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-mascot { animation: bob 4s ease-in-out infinite; }
  @keyframes bob {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
  }
}
.hero-tag {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 1.5px;
  color: var(--clover);
  background: var(--clover-soft);
  padding: 4px 14px;
  border-radius: 11px;
  margin-bottom: 18px;
  font-family: "PingFang SC", sans-serif;
}
.hero-title {
  font-size: 38px; font-weight: 500;
  color: var(--rose);
  margin: 0 0 16px;
  letter-spacing: 1px;
  line-height: 1.4;
}
.hero-pink { color: var(--pink); font-weight: 600; }
.hero-sub {
  font-size: 14px; color: var(--ink-2);
  margin: 0 0 18px; max-width: 540px;
  font-family: "PingFang SC", sans-serif;
}
.hero-meta {
  font-size: 12px; color: var(--ink-3);
  font-family: "PingFang SC", sans-serif;
}
.hero-meta .dot { margin: 0 8px; color: var(--ink-4); }

.site-main {
  max-width: 1180px; margin: 0 auto;
  padding: 16px 24px 64px;
}

.block { margin-bottom: 36px; }
.block-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.block-head h2 {
  font-size: 20px; font-weight: 500; margin: 0;
  color: var(--rose);
  letter-spacing: 0.8px;
}
.sec-num {
  display: inline-block;
  width: 30px; height: 30px; line-height: 30px;
  text-align: center;
  background: var(--pink-bg);
  color: var(--pink);
  border-radius: 50%;
  font-size: 13px;
  margin-right: 12px;
  vertical-align: middle;
  font-weight: 600;
}
.sec-num-pulse { background: var(--pink-bg); color: var(--pink); }
.sec-num-anime { background: #E8E0F4; color: #6E4FA8; }
.sec-num-merch { background: var(--gold-soft); color: #8A5F0F; }
.block-pulse .block-head h2 { color: var(--rose); }
.block-anime .block-head h2 { color: #6E4FA8; }
.block-merch .block-head h2 { color: #8A5F0F; }

.anime-grid {
  display: flex; flex-direction: column; gap: 28px;
}
.anime-cat {}
.anime-cat-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E5DFEF;
}
.anime-cat-title {
  margin: 0;
  font-family: "Songti SC", "STSong", "Source Han Serif SC", serif;
  font-size: 17px; font-weight: 600;
  letter-spacing: 1px;
  color: #6E4FA8;
}
.anime-cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}
.anime-card {
  background: var(--paper);
  border: 1px solid #E5DFEF;
  border-left: 3px solid #9D7EC9;
  border-radius: 4px;
  padding: 18px 20px;
  position: relative;
}
.anime-card:hover { border-left-color: #6E4FA8; }
.anime-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.anime-card-name { font-size: 15px; font-weight: 600; color: #4A3370; line-height: 1.4; }
.stage-tag { font-size: 11px; padding: 2px 9px; border-radius: 3px; flex-shrink: 0; font-family: "PingFang SC", sans-serif; }
.stage-tag.heat-高 { background: #FCEEF1; color: #c2410c; font-weight: 600; }
.stage-tag.heat-中 { background: #E8E0F4; color: #6E4FA8; }
.stage-tag.heat-低 { background: var(--bg-2); color: var(--ink-3); }
.stage-上映中 { background: #FCEEF1; color: #c2410c; font-weight: 600; }
.stage-已定档 { background: #FCEEF1; color: var(--pink); }
.stage-PV发布 { background: #E8E0F4; color: #6E4FA8; }
.stage-官宣立项 { background: var(--gold-soft); color: #8A5F0F; }
.stage-传闻 { background: var(--bg-2); color: var(--ink-3); }
.stage-已完结 { background: var(--bg-2); color: var(--ink-4); }

.anime-events { list-style: none; padding: 0; margin: 0; font-size: 12.5px; line-height: 1.65; color: var(--ink-2); font-family: "PingFang SC", sans-serif; }
.anime-events li { display: flex; gap: 8px; align-items: baseline; padding: 3px 0; border-top: 1px dashed #F0EAF6; }
.anime-events li:first-child { border-top: 0; }
.ev-date { flex-shrink: 0; min-width: 78px; font-size: 11px; color: #6E4FA8; font-variant-numeric: tabular-nums; }
.ev-text { flex: 1; }

.anime-reps {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.anime-rep {
  font-size: 11.5px;
  padding: 2px 9px;
  background: #F5EFFA;
  color: #4A3370;
  border-radius: 11px;
  font-family: "PingFang SC", sans-serif;
}
.anime-card-meta { font-size: 11.5px; color: var(--ink-3); margin-bottom: 12px; display: flex; gap: 12px; flex-wrap: wrap; font-family: "PingFang SC", sans-serif; }
.anime-next { background: #F5EFFA; padding: 10px 12px; border-radius: 4px; margin-bottom: 12px; font-family: "PingFang SC", sans-serif; }
.anime-next-label { font-size: 10px; color: #6E4FA8; letter-spacing: 1.4px; display: block; margin-bottom: 3px; }
.anime-next strong { font-size: 13px; color: #4A3370; font-weight: 600; }
.anime-next-date { font-size: 11.5px; color: #6E4FA8; margin-left: 8px; }
.anime-section { margin-top: 10px; }
.anime-section-label { font-size: 10px; letter-spacing: 1.4px; color: #9D7EC9; margin-bottom: 5px; font-family: "PingFang SC", sans-serif; }
.anime-section ul { margin: 0; padding-left: 18px; font-size: 12.5px; line-height: 1.65; color: var(--ink-2); font-family: "PingFang SC", sans-serif; }
.anime-section ul li::marker { color: #9D7EC9; }
.anime-stat { font-size: 12px; color: #6E4FA8; padding: 6px 10px; background: #F5EFFA; border-left: 2px solid #9D7EC9; margin-top: 10px; font-family: "PingFang SC", sans-serif; }
.anime-watch { font-size: 12.5px; color: var(--ink-2); padding: 8px 12px; background: var(--bg-2); border-radius: 4px; margin-top: 10px; line-height: 1.55; font-family: "PingFang SC", sans-serif; }
.anime-sources { margin-top: 10px; font-size: 11.5px; color: var(--ink-3); font-family: "PingFang SC", sans-serif; }
.anime-sources a { margin-right: 8px; color: #6E4FA8; }

.merch-list { display: flex; flex-direction: column; gap: 18px; }
.merch-group {
  background: var(--paper);
  border: 1px solid #F0E5C8;
  border-radius: 6px;
  padding: 14px 16px 8px;
}
.merch-group-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.merch-cat { font-size: 13px; font-weight: 600; color: #8A5F0F; padding: 2px 10px; background: var(--gold-soft); border-radius: 11px; font-family: "PingFang SC", sans-serif; }
.merch-table { width: 100%; border-collapse: collapse; font-size: 12.5px; font-family: "PingFang SC", sans-serif; }
.merch-row { border-top: 1px dashed #F0E5C8; transition: background 0.15s; }
.merch-row:first-child { border-top: 0; }
.merch-row:hover { background: #FFFAEC; }
.merch-row.heat-高 .merch-type::before { content: "●"; color: #c2410c; margin-right: 4px; font-size: 8px; }
.merch-row td { padding: 9px 8px; vertical-align: top; }
.merch-type { font-size: 11px; color: #8A5F0F; font-weight: 600; letter-spacing: 0.5px; }
.merch-title { color: var(--ink); }
.merch-title a { color: var(--ink); }
.merch-title a:hover { color: #8A5F0F; text-decoration: underline; }
.merch-hl { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; line-height: 1.5; }
.merch-date { color: #8A5F0F; font-variant-numeric: tabular-nums; font-size: 11.5px; white-space: nowrap; }
.merch-price { color: #c2410c; font-weight: 600; font-size: 12px; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

.gear-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 28px 0 28px;
  height: 24px;
}
.gear-divider span {
  width: 8px; height: 8px;
  background: var(--clover);
  border-radius: 50%;
  position: relative;
  box-shadow: -22px 0 0 -2px var(--pink), 22px 0 0 -2px var(--gold);
}

.digest-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 36px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
  position: relative;
  box-shadow: 0 1px 0 var(--line-2);
}
.digest-body::before {
  content: "卷";
  position: absolute; top: -10px; left: 22px;
  background: var(--paper); padding: 0 10px;
  color: var(--gold); font-size: 12px; letter-spacing: 4px;
}
.digest-body h2, .digest-body h3, .digest-body h4 {
  font-size: 16px; font-weight: 600; margin: 20px 0 10px;
  color: var(--rose);
  border-left: 3px solid var(--pink);
  padding-left: 10px;
}
.digest-body h2 { font-size: 17px; }
.digest-body p { margin: 10px 0; }
.digest-body ul { margin: 10px 0; padding-left: 22px; }
.digest-body ul li::marker { color: var(--clover); }
.digest-body li { margin: 5px 0; }
.digest-body strong { color: var(--rose); font-weight: 600; }

.ip-grid {
  display: flex; flex-direction: column; gap: 32px;
}
.ip-group {}
.ip-group-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.ip-group-title {
  margin: 0;
  font-family: "Songti SC", "STSong", "Source Han Serif SC", serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: 1px;
  color: var(--rose);
}
.ip-group-sub {
  font-size: 11.5px; color: var(--ink-3);
  font-family: "PingFang SC", sans-serif;
  letter-spacing: 0.4px;
}
.ip-group-competitive .ip-group-title { color: #c2410c; }
.ip-group-competitive .ip-group-title::before { content: "壹 · "; font-weight: 400; opacity: 0.6; }
.ip-group-anime-game .ip-group-title  { color: #6E4FA8; }
.ip-group-anime-game .ip-group-title::before { content: "贰 · "; font-weight: 400; opacity: 0.6; }
.ip-group-otome .ip-group-title       { color: var(--pink); }
.ip-group-otome .ip-group-title::before { content: "叁 · "; font-weight: 400; opacity: 0.6; }

.ip-group-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}
.ip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: 4px;
  padding: 18px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.ip-card:hover { transform: translateY(-1px); }
.ip-card-competitive { border-left-color: #c2410c; }
.ip-card-anime-game  { border-left-color: #9D7EC9; }
.ip-card-otome       { border-left-color: var(--pink); }
.ip-card-error { opacity: 0.55; border-left-color: var(--ink-4); }

.ip-card-signals {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 8px 0 0;
  font-family: "PingFang SC", sans-serif;
}
.ip-card-signals .sig {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-2);
  color: var(--ink-2);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ip-card-signals .sig b {
  color: var(--ink-3);
  font-weight: 500;
  margin-right: 4px;
}
.ip-events { list-style: none; padding: 0; margin: 0; font-size: 12.5px; line-height: 1.65; color: var(--ink-2); font-family: "PingFang SC", sans-serif; }
.ip-events li { display: flex; gap: 8px; align-items: baseline; padding: 3px 0; border-top: 1px dashed var(--line); }
.ip-events li:first-child { border-top: 0; }
.ip-events .ev-date { flex-shrink: 0; min-width: 78px; font-size: 11px; color: var(--rose); font-variant-numeric: tabular-nums; }
.ip-events .ev-text { flex: 1; }
.ip-card::after {
  content: ""; position: absolute; top: 12px; right: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clover-soft);
}
.ip-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.ip-card-name {
  font-size: 16px; font-weight: 600; color: var(--rose);
  letter-spacing: 0.3px;
}
.ip-card-rank {
  font-size: 11px; color: var(--ink-4);
  font-family: "PingFang SC", sans-serif;
  font-variant-numeric: tabular-nums;
}
.ip-card-rank.top { color: var(--gold); font-weight: 700; }
.ip-card-meta {
  font-size: 11px; color: var(--ink-3);
  margin-bottom: 14px; display: flex; gap: 6px; flex-wrap: wrap;
  font-family: "PingFang SC", sans-serif;
}
.ip-card-meta span {
  padding: 1px 8px; background: var(--bg-2);
  border-radius: 9px; color: var(--ink-2);
}
.ip-card-score-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px dashed var(--line);
}
.ip-card-score {
  font-size: 26px; font-weight: 700;
  color: var(--rose);
  font-variant-numeric: tabular-nums;
  font-family: "Source Han Serif SC", serif;
}
.ip-card-score-label {
  font-size: 10.5px; color: var(--ink-3);
  font-family: "PingFang SC", sans-serif;
}
.ip-card-trend {
  font-size: 11px; padding: 2px 9px; border-radius: 9px;
  margin-left: auto;
  font-family: "PingFang SC", sans-serif;
}
.ip-card-trend.升温 { background: var(--pink-bg); color: var(--pink); }
.ip-card-trend.降温 { background: var(--clover-soft); color: var(--clover); }
.ip-card-trend.平稳 { background: var(--bg-2); color: var(--ink-3); }
.ip-card-section { margin-top: 12px; }
.ip-card-section-label {
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: "PingFang SC", sans-serif;
}
.ip-card ul {
  margin: 0; padding-left: 18px;
  font-size: 12.5px; line-height: 1.65;
  color: var(--ink-2);
  font-family: "PingFang SC", sans-serif;
}
.ip-card ul li::marker { color: var(--pink); }
.ip-card-watchpoint {
  font-size: 12.5px; color: var(--rose);
  padding: 9px 12px; background: var(--pink-bg);
  border-radius: 4px; line-height: 1.6;
  border-left: 2px solid var(--pink);
  font-family: "PingFang SC", sans-serif;
}
.ip-card-keywords {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.ip-card-keywords span {
  font-size: 11px; padding: 1px 9px;
  background: var(--gold-soft); border-radius: 9px;
  color: #7a5a14;
  font-family: "PingFang SC", sans-serif;
}

.hot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.hot-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
}
.hot-col-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.hot-col-title {
  font-size: 14px; font-weight: 600; color: var(--rose);
  letter-spacing: 0.3px;
}
.hot-col-meta {
  font-size: 11px; color: var(--ink-3);
  font-family: "PingFang SC", sans-serif;
  font-variant-numeric: tabular-nums;
}
.hot-section { margin-top: 12px; }
.hot-section:first-of-type { margin-top: 0; }
.hot-section-label {
  font-size: 10px; color: var(--ink-4);
  font-weight: 500; letter-spacing: 1.4px;
  margin-bottom: 7px;
  font-family: "PingFang SC", sans-serif;
}
.hot-section.matched .hot-section-label { color: var(--gold); }
.hot-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 12.5px; line-height: 1.55;
  font-family: "PingFang SC", sans-serif;
}
.hot-list li {
  display: flex; align-items: baseline; gap: 8px;
  padding: 5px 0;
  color: var(--ink-2);
}
.hot-list li + li { border-top: 1px dashed var(--line); }
.hot-list li.empty {
  color: var(--ink-4); font-style: italic;
  padding: 8px 0;
}
.hot-list li.matched {
  background: var(--pink-bg); padding: 6px 9px;
  margin: 1px -4px; border-radius: 4px;
  border-top: none;
}
.hot-list li.matched + li.matched { margin-top: 2px; }
.hot-rank {
  color: var(--ink-4); min-width: 22px;
  font-variant-numeric: tabular-nums;
  font-size: 11px; flex-shrink: 0; text-align: right;
}
.hot-list li.matched .hot-rank { color: var(--pink); font-weight: 600; }
.hot-title {
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hot-num {
  color: var(--gold); font-size: 11px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0; font-weight: 600;
}
.hot-list a { color: var(--ink); }
.hot-list a:hover { color: var(--rose); }
.hot-list li.matched a { color: var(--rose); font-weight: 500; }

.archive-list {
  list-style: none; padding: 0; margin: 0;
  columns: 3; column-gap: 28px;
}
.archive-list li {
  padding: 7px 0; font-size: 13px;
  break-inside: avoid;
  font-family: "PingFang SC", sans-serif;
}
.archive-list li::before {
  content: "🍀"; margin-right: 8px;
  font-size: 10px; opacity: 0.7;
}

.site-foot {
  max-width: 1180px; margin: 0 auto;
  padding: 32px 24px 40px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
  text-align: center;
  font-family: "PingFang SC", sans-serif;
}
.foot-clover {
  width: 28px; height: 28px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: url("/assets/taffy-avatar.png") center/cover no-repeat;
  border: 1px solid var(--pink-soft);
  display: block;
}
.site-foot div { margin: 4px 0; }
.foot-credit {
  margin-top: 16px !important;
  max-width: 540px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-4);
}
.foot-quote {
  margin-top: 14px !important;
  color: var(--pink);
  letter-spacing: 2px;
  font-size: 11.5px;
}

.welcome-bubble {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1px solid var(--pink-soft);
  border-radius: 14px;
  padding: 10px 36px 10px 12px;
  box-shadow: 0 8px 24px rgba(122, 63, 90, 0.18);
  font-family: "PingFang SC", sans-serif;
  max-width: 320px;
  animation: bubble-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.welcome-bubble[hidden] { display: none; }
.welcome-bubble img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pink-soft);
  flex-shrink: 0;
}
.welcome-text {
  display: flex; flex-direction: column;
  line-height: 1.45;
}
.welcome-text strong {
  color: var(--rose); font-size: 13px; font-weight: 600;
}
.welcome-text span {
  color: var(--ink-3); font-size: 11.5px;
}
.welcome-close {
  position: absolute; top: 6px; right: 8px;
  background: none; border: 0;
  color: var(--ink-4); font-size: 18px;
  cursor: pointer; padding: 2px 6px;
  line-height: 1;
}
.welcome-close:hover { color: var(--rose); }
@keyframes bubble-in {
  0%   { transform: translateY(20px) scale(0.8); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.welcome-bubble.fade-out {
  animation: bubble-out 0.4s ease forwards;
}
@keyframes bubble-out {
  to { transform: translateY(20px) scale(0.8); opacity: 0; }
}

@media (max-width: 720px) {
  .site-head { flex-direction: column; gap: 12px; padding: 14px 20px; }
  .site-nav { gap: 18px; }
  .hero { padding: 28px 20px 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-right { order: -1; }
  .hero-mascot { max-width: 200px; }
  .hero-title { font-size: 26px; }
  .site-main { padding: 12px 16px 48px; }
  .archive-list { columns: 2; }
  .digest-body { padding: 22px 20px; }
}

/* 🔍 塔菲推断 —— 网感锐评 callout */
.taffy-take {
  margin-top: 22px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--pink-bg) 100%);
  border: 1px solid var(--line-2);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  position: relative;
}
.taffy-take h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--rose);
  letter-spacing: 0.3px;
}
.taffy-take ul { margin: 0; padding-left: 2px; list-style: none; }
.taffy-take li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  border-top: 1px dashed var(--line);
}
.taffy-take li:first-child { border-top: none; }
.taffy-take li::before {
  content: "🐾";
  position: absolute;
  left: 0; top: 6px;
  font-size: 12px;
  opacity: 0.75;
}
.taffy-take strong { color: var(--rose); }

/* 🐾 IP 卡片底部 · 塔菲一句话锐评 */
.ip-card-taffy {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin-top: 12px;
  padding: 9px 11px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--pink-bg) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}
.ip-card-taffy-paw { font-size: 12px; line-height: 1.5; opacity: 0.8; flex: none; }
.ip-card-taffy-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--rose);
  font-weight: 500;
}
