/* ============ 基础与变量 ============ */
:root {
  --bg-0: #0b0914;
  --bg-1: #14101f;
  --text-1: #f5f3ff;
  --text-2: #b9b2d0;
  --text-3: #7d7698;
  --accent: #a78bfa;
  --accent-2: #f0abfc;
  --accent-3: #67e8f9;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(22, 18, 36, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.7);
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-1);
  background: var(--bg-0);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(167, 139, 250, 0.35); }

/* 滚动条 */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent), var(--accent-2)); border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

/* ============ 背景光斑 ============ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 12% 0%, #1d1238 0%, transparent 55%),
    radial-gradient(110% 85% at 100% 8%, #241040 0%, transparent 50%),
    linear-gradient(180deg, #0b0914 0%, #120e20 55%, #0a0812 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; top: -120px; left: -80px; background: #6d28d9; }
.blob-2 { width: 420px; height: 420px; top: 30%; right: -120px; background: #0e7490; animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; bottom: -100px; left: 32%; background: #be185d; animation-delay: -11s; }
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(90% 70% at 50% 20%, #000 0%, transparent 75%);
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

/* ============ 顶部导航 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(11, 9, 20, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-1);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #160f2a;
  font-size: 16px;
  box-shadow: 0 6px 18px -6px rgba(167, 139, 250, 0.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 9px 16px;
  border-radius: 99px;
  text-decoration: none;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.06); }
.nav-link.active { color: #fff; background: linear-gradient(135deg, rgba(167,139,250,0.28), rgba(240,171,252,0.22)); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  transform: translateX(-50%);
  width: 16px; height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============ 按钮 ============ */
.btn {
  --shadow-c: rgba(167, 139, 250, 0.45);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  color: #160f2a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 26px -10px var(--shadow-c);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px var(--shadow-c);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  color: var(--text-1);
  background: var(--glass);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-sm { padding: 8px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ============ 视图切换 ============ */
.view { display: none; max-width: 1180px; margin: 0 auto; padding: 30px 22px 80px; }
.view.active { display: block; animation: viewIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ============ 首页 Hero ============ */
.hero { text-align: center; padding: 56px 0 44px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent-2);
  background: rgba(240, 171, 252, 0.1);
  border: 1px solid rgba(240, 171, 252, 0.25);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-title {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 1px;
}
.grad {
  background: linear-gradient(92deg, var(--accent), var(--accent-2) 55%, var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 16px;
}
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============ 每日推荐 ============ */
.daily-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 26px;
  align-items: start;
}
.daily-preview { display: flex; flex-direction: column; gap: 16px; }

.wallpaper-card {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.wallpaper-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.85); }
.wallpaper-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #241a45;
  transition: opacity 0.5s;
}
.wallpaper-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 16, 0.45) 0%, rgba(8, 6, 16, 0) 32%, rgba(8, 6, 16, 0) 58%, rgba(8, 6, 16, 0.62) 100%),
    radial-gradient(120% 90% at 50% 50%, transparent 45%, rgba(8, 6, 16, 0.45) 100%);
}
.wallpaper-mark {
  position: absolute;
  top: 8%;
  left: 8%;
  font-size: 120px;
  font-family: Georgia, "Songti SC", serif;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  pointer-events: none;
}
.wallpaper-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26% 9% 24%;
  text-align: center;
  font-size: clamp(20px, 3.2vw, 27px);
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  white-space: pre-line;
  overflow: hidden;
}
.wallpaper-meta {
  position: absolute;
  left: 0; right: 0; bottom: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 10%;
  text-align: center;
}
.wallpaper-star {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.wallpaper-star::before, .wallpaper-star::after { content: "· "; color: var(--accent-2); }
.wallpaper-date {
  font-size: 12.5px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.72);
}
.wallpaper-watermark {
  position: absolute;
  left: 50%; bottom: 4%;
  transform: translateX(-50%);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.daily-tools { display: flex; gap: 10px; justify-content: center; }

.daily-side {
  padding: 30px 30px 26px;
  border-radius: var(--radius-lg);
}
.side-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-3);
  text-transform: uppercase;
}
.side-star {
  margin: 8px 0 12px;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(92deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.daily-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.daily-quote-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-1);
  letter-spacing: 0.5px;
}
.daily-divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.side-remark { color: var(--text-2); font-size: 15px; line-height: 1.8; }
.side-actions { margin-top: 22px; }

/* ============ 通用区块 ============ */
.section { margin-top: 52px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title { font-size: 24px; font-weight: 700; letter-spacing: 1px; }
.section-title::before { content: "✦ "; color: var(--accent); }
.section-more {
  color: var(--accent-2);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.section-more:hover { opacity: 0.75; }
.count-badge {
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
}

/* 语录卡片 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.quote-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  cursor: pointer;
  background: var(--glass);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, border-color 0.3s;
}
.quote-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow); }
.qc-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.qc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.quote-card:hover .qc-thumb img { transform: scale(1.08); }
.qc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,6,16,0.15) 0%, rgba(8,6,16,0.62) 100%);
}
.qc-quote {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.qc-body { padding: 14px 16px 16px; }
.qc-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.qc-star { font-weight: 700; font-size: 15.5px; }
.qc-date { font-size: 12px; color: var(--text-3); }
.qc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-mini {
  padding: 2px 10px;
  font-size: 11.5px;
  border-radius: 99px;
  background: rgba(167, 139, 250, 0.14);
  color: var(--accent-2);
  border: 1px solid rgba(167, 139, 250, 0.2);
}
.qc-actions { display: flex; gap: 8px; margin-top: 14px; }
.qc-actions .btn { flex: 1; padding: 8px 10px; font-size: 12.5px; }

/* ============ 明星专区 ============ */
.page-head { text-align: center; padding: 30px 0 8px; }
.page-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  background: linear-gradient(92deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-sub { margin-top: 10px; color: var(--text-2); }

.toolbar { margin: 26px 0 8px; display: flex; flex-direction: column; gap: 14px; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--border);
  max-width: 480px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}
.search-box input {
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: var(--text-1);
  font-size: 15px;
  font-family: inherit;
}
.search-box input::placeholder { color: var(--text-3); }
.tag-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 15px;
  border-radius: 99px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-2);
  background: var(--glass);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.22s;
}
.chip:hover { color: var(--text-1); border-color: var(--accent); transform: translateY(-2px); }
.chip.active {
  color: #160f2a;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 24px 0 8px;
}
.star-card {
  padding: 18px 14px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.star-card:hover { transform: translateY(-4px); background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.4); }
.star-avatar {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: #160f2a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px -8px rgba(167,139,250,0.8);
}
.star-card h4 { font-size: 15px; font-weight: 600; }
.star-count { font-size: 12px; color: var(--text-3); margin-top: 3px; }
.empty-hint { text-align: center; color: var(--text-3); padding: 40px 0; font-size: 15px; }

/* ============ 自定义工坊 ============ */
.workshop {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 30px;
}
.workshop-controls { padding: 26px; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 20px; }
.ctl-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-2);
  margin-bottom: 9px;
}
.range-val { color: var(--accent-2); font-weight: 700; }
.ctl-select, .ctl-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(11, 9, 20, 0.5);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ctl-select:focus, .ctl-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}
.ctl-select { appearance: none; cursor: pointer; }
.ctl-textarea { resize: vertical; line-height: 1.8; min-height: 74px; }

.color-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
input[type="color"] {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  padding: 2px;
}
.swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: #fff; box-shadow: 0 0 0 2px rgba(167,139,250,0.6); }

.ctl-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  outline: none;
  cursor: pointer;
}
.ctl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  cursor: pointer;
}

.seg {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.seg-btn {
  flex: 1;
  min-width: 90px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--text-2);
  background: rgba(11, 9, 20, 0.5);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.22s;
}
.seg-btn:hover { color: var(--text-1); border-color: var(--accent); }
.seg-btn.active {
  color: #160f2a;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.workshop-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 6px; }
.workshop-actions .btn { padding: 11px 8px; font-size: 14px; }

.workshop-preview { position: sticky; top: 84px; }
.canvas-frame {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(11, 9, 20, 0.5);
  box-shadow: var(--shadow);
  overflow: auto;
  padding: 18px;
}
#wsCanvas {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.8);
  background: #000;
}
.hint { text-align: center; color: var(--text-3); font-size: 12.5px; margin-top: 14px; letter-spacing: 1px; }

/* ============ 页脚 ============ */
.site-footer {
  text-align: center;
  padding: 40px 22px 46px;
  color: var(--text-3);
  border-top: 1px solid var(--border-soft);
  background: rgba(8, 6, 16, 0.35);
}
.site-footer p:first-child { font-size: 15px; color: var(--text-2); margin-bottom: 6px; }
.footer-sub { font-size: 12.5px; letter-spacing: 0.5px; }

/* ============ 弹窗 ============ */
.modal-mask {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(6, 4, 12, 0.66);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s;
}
.modal-mask[hidden] { display: none; }
.modal {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  padding: 30px 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  animation: popIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes popIn { from { opacity: 0; transform: scale(0.9) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--glass);
  color: var(--text-2);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; transform: rotate(90deg); }
.modal-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.modal-sub { color: var(--text-2); font-size: 13.5px; margin-bottom: 20px; line-height: 1.7; }
.share-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.share-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-1);
  background: var(--glass);
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s;
}
.share-item:hover { background: rgba(167,139,250,0.16); border-color: var(--accent); transform: translateY(-2px); }
.si-ico { font-size: 16px; }

/* ============ Toast ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 20px);
  z-index: 120;
  padding: 12px 22px;
  border-radius: 99px;
  background: rgba(30, 26, 50, 0.92);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-size: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(10px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ 响应式 ============ */
@media (max-width: 960px) {
  .daily-wrap { grid-template-columns: 1fr; }
  .daily-side { order: -1; }
  .workshop { grid-template-columns: 1fr; }
  .workshop-preview { position: static; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 18px;
    background: rgba(13, 10, 24, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-link { padding: 13px 16px; border-radius: var(--radius-sm); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 40px 0 32px; }
  .section-title { font-size: 20px; }
  .quote-card { min-width: 0; }
  .workshop-actions { grid-template-columns: 1fr 1fr; }
}
