/* ============ 全局（浅色高级风） ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f6f4ef;
  --bg-deep: #efebe2;
  --text: #24211c;
  --text-dim: #8f8a7d;
  --gold: #a8842c;
  --gold-light: #c9a44a;
  --gold-soft: rgba(168, 132, 44, .1);
  --card: #ffffff;
  --card-border: #e7e2d6;
  --danger: #c0392b;
  --radius: 18px;
  --serif: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 420' preserveAspectRatio='none'%3E%3Cpath d='M0 320 Q 180 200 380 270 T 760 250 T 1200 290 L1200 420 L0 420 Z' fill='%23a8842c' opacity='0.045'/%3E%3Cpath d='M0 360 Q 240 280 460 330 T 900 310 L1200 340 L1200 420 L0 420 Z' fill='%23a8842c' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 34vh;
  background-attachment: fixed;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 8px 24px 48px;
}

/* ============ 顶部导航 ============ */
.nav {
  border-bottom: 1px solid var(--card-border);
  background: rgba(246, 244, 239, .9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
}

.logo-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-dim);
}

/* ============ 首页 Hero ============ */
.hero { text-align: center; padding: 44px 0 36px; }

.compass {
  width: 96px;
  height: 96px;
  color: var(--gold);
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(168, 132, 44, .18));
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 18px;
  text-indent: 18px; /* 视觉居中补偿 */
  color: var(--text);
  line-height: 1.2;
}

.hero-slogan {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 8px;
  text-indent: 8px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-slogan::before,
.hero-slogan::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: .5;
}

.hero-slogan::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-desc {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

.hero-line {
  width: 160px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-line::before,
.hero-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}

.hero-line::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-line::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-line .hero-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  opacity: .65;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* 报告亮点条 */
.feature-strip {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.feat svg {
  width: 21px;
  height: 21px;
  color: var(--gold);
  opacity: .8;
}

.feat span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ============ 卡片 ============ */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 1px 4px rgba(36, 33, 28, .04);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
  opacity: .7;
}

/* ============ 表单 ============ */
.field { margin-bottom: 24px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-row .field { margin-bottom: 24px; }

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.req { color: var(--gold); }

.field input[type="number"],
.field input[type="time"],
.field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}

.field select option { color: #222; background: #fff; }

/* 日期选择器：年输入 + 月/日下拉 */
.date-picker {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
}

.date-picker input[type="number"],
.date-picker select {
  width: 100%;
  padding: 12px 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.date-picker input[type="number"]::-webkit-outer-spin-button,
.date-picker input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.date-picker input:focus,
.date-picker select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.date-picker select option { color: #222; background: #fff; }

.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

.checkbox {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--text-dim);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox input { width: auto !important; accent-color: var(--gold); }

/* ============ MBTI 选择网格 ============ */
.mbti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mbti-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 4px 10px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
  -webkit-tap-highlight-color: transparent;
}

.mbti-card:active { transform: scale(.97); }

.mbti-card:hover { border-color: #d8d2c2; }

.mbti-card.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.mbti-icon { width: 44px; height: 44px; display: block; }

.mbti-card .code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.mbti-card .cn {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.2;
}

.mbti-picked {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  min-height: 20px;
  transition: color .2s;
}

.mbti-picked.picked { color: var(--gold); font-weight: 600; }

/* ============ 按钮 ============ */
.btn-main {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-indent: 4px;
  color: var(--gold-light);
  background: #24211c;
  border: 1px solid #24211c;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  font-family: inherit;
}

.btn-main:hover {
  background: #3a352c;
  transform: translateY(-1px);
}

.btn-main:active { transform: translateY(0); }
.btn-main:disabled { opacity: .7; cursor: wait; transform: none; }

.btn-diamond {
  font-size: 10px;
  color: var(--gold);
  vertical-align: 2px;
}

.btn-loading small { font-weight: 400; font-size: 12px; letter-spacing: 1px; }

.error-msg {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(192, 57, 43, .07);
  border: 1px solid rgba(192, 57, 43, .3);
  border-radius: 10px;
  color: var(--danger);
  font-size: 13px;
  text-align: center;
}

/* ============ 免责声明 ============ */
.disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 1px;
  padding-bottom: 24px;
}

.disc-sep {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin: 0 auto 14px;
}

/* ============ 报告页 ============ */
.report-head { text-align: center; margin: 34px 0 22px; }

.report-head .name { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 1px; }

.report-head h2 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 2px;
}

.report-head h2 .gold {
  color: var(--gold);
}

/* 命盘信息条 */
.pan-strip {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 22px;
  padding: 16px 8px;
  background: var(--gold-soft);
  border: 1px solid rgba(168, 132, 44, .3);
  border-radius: var(--radius);
}

.pan-strip .item .k { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; }
.pan-strip .item .v { font-size: 19px; font-weight: 700; color: var(--gold); margin-top: 3px; font-family: var(--serif); }

/* 命格卡 */
.mingge-card { margin-bottom: 22px; padding: 24px; }

.mg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mg-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.mg-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.mg-gan {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.mg-nayin {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
}

.mg-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.mg-xiyong {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mg-line-sha { flex-wrap: wrap; }

.mg-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mg-key {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.tag {
  display: inline-block;
  min-width: 34px;
  text-align: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--serif);
}

.tag-xi {
  color: #7a5c10;
  background: var(--gold-soft);
  border: 1px solid rgba(168, 132, 44, .5);
}

.tag-ji {
  color: var(--text-dim);
  background: rgba(36, 33, 28, .04);
  border: 1px solid var(--card-border);
}

/* 五行分布条 */
.wx-bars {
  display: flex;
  gap: 4px;
  margin-top: 22px;
  height: 26px;
  border-radius: 8px;
  overflow: hidden;
}

.wx-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-radius: 6px;
  transition: flex .3s;
}

.wx-bar span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  white-space: nowrap;
}

.wx-legend {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-dim);
  text-align: right;
  letter-spacing: 1px;
}

/* 报告区块 */
.sec {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(36, 33, 28, .04);
}

.sec .sec-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}

.sec .sec-title svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.sec .sec-title span { color: var(--text); }

.sec .sec-body { font-size: 15px; color: var(--text); white-space: pre-wrap; line-height: 1.9; }

/* 生成中 */
.loading-card {
  text-align: center;
  padding: 56px 24px;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 3px solid var(--gold-soft);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-card p { color: var(--text-dim); font-size: 14px; }

/* 分享按钮区 */
.share-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-secondary {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-family: inherit;
}

.btn-secondary:hover { background: var(--bg); border-color: #d8d2c2; }

/* 海报弹层 */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, .82);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 50;
  padding: 20px;
}

.modal.show { display: flex; }

.modal canvas {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .5);
}

.modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  max-width: 360px;
}

.modal .btn-secondary { flex: 1; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #f0ead8; }
.modal .btn-secondary:hover { background: rgba(255,255,255,.2); }

/* 返回链接 */
.back-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
}

.back-link:hover { color: var(--gold); }

/* ============ 移动端适配 ============ */
@media (max-width: 420px) {
  .hero-title { font-size: 52px; letter-spacing: 14px; text-indent: 14px; }
  .container { padding: 8px 16px 40px; }
  .card { padding: 22px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .mbti-grid { gap: 8px; }
  .mbti-icon { width: 38px; height: 38px; }
  .mbti-card .code { font-size: 12px; }
}

/* ============ 正缘测算页 ============ */
.hero-small { padding: 30px 0 24px; }

.hero-title-sm {
  font-size: 46px;
  letter-spacing: 14px;
  text-indent: 14px;
}

/* 进度条 */
.quiz-progress {
  height: 6px;
  background: var(--bg-deep);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width .4s ease;
  position: relative;
  min-width: 6px;
}

.quiz-progress-bar span {
  position: absolute;
  right: 0;
  top: -22px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* 题目 */
.quiz-card { padding: 26px 22px; }

.quiz-q {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-opt {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  text-align: left;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.quiz-opt:hover { border-color: #d8d2c2; }
.quiz-opt:active { transform: scale(.985); }

.quiz-opt.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: #7a5c10;
  font-weight: 600;
}

.quiz-fade-in { animation: quizIn .25s ease; }

@keyframes quizIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.quiz-nav .btn-secondary { width: auto; padding: 10px 20px; }

.quiz-tip {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============ 正缘结果页 ============ */
.cached-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 14px;
  font-size: 12px;
  color: #7a5c10;
  background: var(--gold-soft);
  border: 1px solid rgba(168, 132, 44, .4);
  border-radius: 999px;
  letter-spacing: 1px;
}

.love-hero {
  text-align: center;
  padding: 36px 0 28px;
}

.love-kicker {
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.love-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 6px;
  text-indent: 6px;
  background: linear-gradient(120deg, var(--gold) 15%, #8a6d1f 50%, var(--gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.love-sub {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
}

.love-meta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.love-dot { color: var(--gold); }

.love-hero .hero-line { margin-top: 22px; }

/* ============ 海报源 DOM（html2canvas 截图，屏幕外渲染；命运报告 & 正缘共用） ============ */
#posterDom,
#posterLoveDom {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 375px;
  height: 667px;
  overflow: hidden;
  background:
    radial-gradient(1.2px 1.2px at 15% 20%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.4px 1.4px at 45% 72%, rgba(212,175,55,.6), transparent),
    radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 8% 82%, rgba(255,255,255,.45), transparent),
    linear-gradient(160deg, #0b1026 0%, #141b3d 55%, #1a1440 100%);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #eae6f7;
}

.poster-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 42px 30px 26px;
  box-sizing: border-box;
}

.poster-badge {
  font-size: 12px;
  letter-spacing: 3px;
  color: #f0d98c;
  border: 1px solid rgba(212, 175, 55, .6);
  border-radius: 999px;
  padding: 5px 18px;
  background: rgba(212, 175, 55, .12);
}

.poster-title {
  margin-top: 22px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #eae6f7;
}

.poster-sub {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
}

.poster-tags {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9a94b8;
}

.poster-tags .p-tag {
  display: inline-block;
  min-width: 28px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #7a5c10;
  background: rgba(212, 175, 55, .16);
  border: 1px solid rgba(212, 175, 55, .5);
}

.poster-quote {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.9;
  color: #eae6f7;
  text-align: center;
  max-width: 300px;
}

.poster-qr-wrap {
  margin-top: auto;
  width: 200px;
  background: #f7f5f0;
  border-radius: 18px;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster-qr-wrap img {
  width: 164px;
  height: 164px;
  display: block;
}

.poster-scan {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #24211c;
  letter-spacing: 1px;
}

.poster-foot {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(154, 148, 184, .8);
}

/* ============ 主页正缘入口 ============ */
.link-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: linear-gradient(120deg, rgba(168,132,44,.12), rgba(168,132,44,.04));
  border: 1px solid rgba(168,132,44,.4);
}

.link-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-soft);
  border: 1px solid rgba(168,132,44,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.link-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.link-banner-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.love-entry {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(120deg, rgba(168,132,44,.1), rgba(168,132,44,.03));
  border: 1px solid rgba(168,132,44,.35);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}

.love-entry:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168,132,44,.12);
}

.love-entry .le-left { display: flex; align-items: center; gap: 12px; }

.love-entry .le-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(168,132,44,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.love-entry .le-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.love-entry .le-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.love-entry .le-arrow {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
