:root{
  /* ===== Japanese notebook / planner vibe ===== */
  --paper: #fffaf2;          /* 奶油纸 */
  --paper2:#fff6fb;          /* 微粉纸 */
  --paper3:#f5fbff;          /* 微蓝纸 */

  --panel: rgba(255,255,255,.86);
  --panelSolid: #ffffff;

  --text: #23252b;
  --muted:#6b7280;

  --line: rgba(17,24,39,.10);

  /* Candy accents (small, cute) */
  --pink:  #ff67b3;
  --blue:  #66c7ff;
  --mint:  #35d7b0;
  --grape: #a78bfa;
  --lemon: #ffd166;

  --ok:   #10b981;
  --warn: #f59e0b;

  --radius: 22px;

  /* softer shadows (paper + sticker) and lift for hovers */
  --shadow: 0 18px 42px rgba(17, 24, 39, .10);
  --shadowSoft: 0 10px 22px rgba(17, 24, 39, .06);
  --shadowLift: 0 28px 64px rgba(17,24,39,.12);

  /* accent gradients and glass surface */
  --accent: linear-gradient(135deg, rgba(255,103,179,.28), rgba(102,199,255,.20));
  --glass: rgba(255,255,255,.72);

  --font: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

*{ box-sizing:border-box }
html,body{ height:100% }

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);

  /* ===== No-seam background:
     1) paper wash (very large gradients)
     2) dot-grid paper texture (repeating, seamless)
     3) subtle noise (seamless)
  ===== */
  background:
    /* subtle noise (seamless) */
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.010) 0px,
      rgba(0,0,0,.010) 1px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 7px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.008) 0px,
      rgba(0,0,0,.008) 1px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 9px
    ),
    /* dot grid (notebook paper) */
    radial-gradient(circle, rgba(17,24,39,.10) 1px, transparent 1.6px),
    /* paper wash */
    linear-gradient(135deg, var(--paper), var(--paper2) 40%, var(--paper3));
  background-size:
    auto,
    auto,
    22px 22px,
    auto;
  background-position:
    0 0,
    0 0,
    8px 10px,
    0 0;
  background-attachment: fixed;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:18px 18px 40px;
}
img{
  max-width:100%;
  display:block;
}

.muted{ color: var(--muted); }
.small{ font-size:13px; }
.divider{ height:1px; background: var(--line); margin:16px 0; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.76);
  border:1px solid rgba(17,24,39,.10);
  font-size:13px;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
}
.pill.soft{
  background: rgba(255,255,255,.56);
  border-color: transparent;
  color:#6b5b8b;
}
.pill-icon{
  width:18px;
  height:18px;
  fill: currentColor;
  filter: drop-shadow(0 4px 10px rgba(17,24,39,.08));
}

/* ===== Topbar (like notebook header) ===== */
.topbar{
  position: sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(255,250,242,.78);
  border-bottom: 1px solid rgba(17,24,39,.10);
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

/* sticker-like logo */
.logo{
  width:62px;
  height:62px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,103,179,.2);
  box-shadow: 0 6px 24px rgba(102,199,255,.1), var(--shadowSoft);
  transform: rotate(-2deg);
  background: rgba(255,255,255,.4);
}
.logo svg{
  width:52px;
  height:52px;
  display:block;
}
.logo svg path{
  transition: transform .4s ease;
}
.logo:hover svg path:last-child{
  transform: translateY(-2px);
}

.brand-text{ min-width:0; }
.brand-text h1{
  margin:0;
  font-size:16px;
  letter-spacing:.2px;
}
.brand-cat{
  font-size:11px;
  color:#a38dc0;
  background: rgba(255,255,255,.4);
  padding:2px 6px;
  border-radius:999px;
  margin-left:4px;
}
.brand-text p{
  margin:2px 0 0;
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ===== Buttons: simple “planner buttons” ===== */
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.share-dropdown{ position:relative; }
.share-trigger{ min-width:140px; }
.share-menu{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:220px;
  padding:10px;
  border-radius:20px;
  background: rgba(255,255,255,.95);
  border:1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.12);
  display:flex;
  flex-direction:column;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index:5;
}
.share-menu.open{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}
.share-menu button{
  border:none;
  background: rgba(255,255,255,.92);
  border-radius:16px;
  padding:10px;
  text-align:left;
  font-family: var(--font);
  display:flex;
  flex-direction:column;
  gap:2px;
  cursor:pointer;
  transition: background .15s ease, transform .15s ease;
}
.share-menu button:hover{
  background: rgba(255,103,179,.08);
  transform: translateY(-1px);
}
.share-menu button span{
  font-size:13px;
  font-weight:600;
  color:#3c2c4c;
}
.share-menu button small{
  font-size:11px;
  color:#807294;
}
.share-modal{
  position:fixed;
  inset:0;
  background: rgba(12,10,19,.55);
  backdrop-filter: blur(2px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:40;
  padding:20px;
}
.share-modal.show{ display:flex; }
.share-modal-card{
  background: rgba(255,255,255,.96);
  border-radius:24px;
  padding:24px;
  max-width:320px;
  width:100%;
  text-align:center;
  box-shadow: 0 24px 60px rgba(17,24,39,.16);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.share-modal-card img{
  width:220px;
  height:220px;
  object-fit:cover;
  align-self:center;
  border-radius:16px;
  border:1px solid rgba(17,24,39,.08);
  background:#fff;
  padding:6px;
  box-shadow: inset 0 6px 20px rgba(17,24,39,.05);
}
.btn{
  border: 1px solid rgba(17,24,39,.08);
  background: var(--glass);
  color: var(--text);
  padding:10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
  box-shadow: var(--shadowSoft);
  transition: transform .16s cubic-bezier(.2,.9,.2,1), box-shadow .16s, background .12s;
  backdrop-filter: blur(6px);
}
.btn:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadowLift);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.85));
}
.btn:active{ transform: translateY(0); }
.btn.ghost{
  background: transparent;
  border-color: rgba(17,24,39,.06);
}
.btn.primary{
  color: white;
  background: linear-gradient(90deg, rgba(255,103,179,.96), rgba(102,199,255,.88));
  border: none;
  box-shadow: 0 10px 30px rgba(102,199,255,.12);
} 

/* ===== Layout ===== */
.grid{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:16px;
  margin-top:16px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns:1fr; }
  .actions{ justify-content:flex-start; }
}

/* ===== Hero ===== */
.hero-card{
  display:flex;
  gap:32px;
  align-items:stretch;
  margin-top:16px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,246,251,.92));
  position:relative;
  overflow:hidden;
  padding:32px;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: calc(var(--radius) + 18px);
  border:1px dashed rgba(255,103,179,.18);
  pointer-events:none;
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(102,199,255,.18));
  opacity:.45;
  z-index:0;
}
.hero-text{
  flex:1;
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-text h2{
  font-size:30px;
  margin:4px 0 0;
  letter-spacing:0.5px;
  line-height:1.3;
}
.hero-desc{
  line-height:1.8;
  margin:0;
  color:#574e61;
}
.cat-quote{
  border: 1px dashed rgba(167,139,250,.4);
  border-radius:18px;
  padding:12px 14px;
  background: rgba(255,255,255,.7);
  font-size:13px;
  line-height:1.7;
  color:#5c456e;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.cat-quote-icon{
  font-size:18px;
  color:#a38dc0;
  line-height:1;
}
.eyebrow{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#9d7dff;
  font-weight:700;
}
.hero-badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.hero-visual{
  width:420px;
  max-width:46%;
  position:relative;
  z-index:1;
  aspect-ratio: 16 / 9;
  overflow:visible;
  border-radius:32px;
  box-shadow: 0 40px 80px rgba(17,24,39,.15);
}
.cat-sticker{
  position:absolute;
  left:-32px;
  bottom:-32px;
  width:120px;
  height:120px;
  background: rgba(255,255,255,.9);
  border-radius:30px;
  border:1px solid rgba(167,139,250,.2);
  padding:10px;
  box-shadow: 0 20px 40px rgba(17,24,39,.08);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:12px;
  color:#6d5a82;
  text-align:center;
}
.cat-sticker svg{
  width:100%;
  height:70px;
}
.hero-visual::after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.4);
  pointer-events:none;
  box-shadow: inset 0 0 20px rgba(255,255,255,.35);
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:32px;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.hero-card:hover .hero-visual img{
  transform: scale(1.05);
}
.card.hero-floating{
  position:absolute;
  right:18px;
  top:46px;
  padding:14px 16px;
  border-radius:22px;
  background: rgba(255,255,255,.52);
  border:1px solid rgba(255,255,255,.28);
  box-shadow: 0 16px 32px rgba(17,24,39,.12);
  min-width:180px;
  display:flex;
  flex-direction:column;
  gap:4px;
  z-index:3;
  backdrop-filter: blur(18px);
}
.hero-floating strong{
  font-size:18px;
  display:block;
  margin:0;
  color:#2b1f3a;
}
.hero-floating span{ font-size:12px; color: rgba(43,31,58,.82); display:block; }
.card.hero-floating::before{ display:none; }
.hero-tip{
  color:#503973;
  font-weight:600;
  margin-top:4px;
}
.hero-floating small{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:#6f5a8b;
}
.hero-floating::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:26px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.48), transparent 65%);
  z-index:-1;
}
.weather-meta-pills{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.weather-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  padding:4px 10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(255,103,179,.12), rgba(102,199,255,.12));
  border:1px solid rgba(102,199,255,.20);
  color:#5c5270;
}
#weatherStatus{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#3c2c4c;
  text-shadow: 0 1px 2px rgba(255,255,255,.6);
}
#weatherMeta{
  font-size:13px;
  color:#2d2335;
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
#weatherTip{
  padding:6px 10px;
  border-radius:14px;
  background: rgba(240,235,255,.8);
}
#weatherLocation{
  font-size:11px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#4c3d58;
  text-shadow: 0 1px 2px rgba(255,255,255,.7);
}

@media (max-width: 900px){
  .hero-card{
    flex-direction:column;
    padding:22px;
  }
  .logo{
    width:56px;
    height:56px;
  }
  .logo svg{
    width:48px;
    height:48px;
  }
  .hero-visual{
    max-width:100%;
    width:100%;
    aspect-ratio: 3 / 4;
  }
  .cat-sticker{
    position:relative;
    left:auto;
    bottom:auto;
    margin:16px auto 0;
  }
  .hero-floating{
    position:relative;
    bottom:auto;
    right:auto;
    margin-top:18px;
  }
}

/* ===== Cards: “paper sheet + sticker highlight” ===== */
.card{
  position: relative;
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,.60));
  border: 1px solid rgba(17,24,39,.06);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding:20px;
  overflow:hidden;
  transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s;
  will-change: transform;
}
.card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadowLift);
}

/* subtle sticker corner highlight */
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(260px 180px at 12% 0%, rgba(255,103,179,.16), transparent 70%),
    radial-gradient(260px 180px at 88% 0%, rgba(102,199,255,.14), transparent 70%),
    radial-gradient(320px 220px at 50% 115%, rgba(53,215,176,.12), transparent 70%);
  pointer-events:none;
  opacity:.55;
}
.card > *{ position: relative; }

.card.moodboard{
  margin-top:18px;
  position:relative;
  overflow:hidden;
}

.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.section-head h2{ margin:0; font-size:17px; display:flex; align-items:center; gap:10px; font-weight:700; }
.section-icon{
  width:32px;
  height:32px;
  border-radius:10px;
  padding:6px;
  background: linear-gradient(135deg, rgba(255,103,179,.2), rgba(102,199,255,.15));
  border:1px solid rgba(17,24,39,.06);
  box-shadow: 0 6px 14px rgba(17,24,39,.06);
  fill:#6b5b8b;
}
.with-icon{
  display:flex;
  align-items:center;
  gap:8px;
}
h2{ margin:0 0 10px; font-size:15px; }

/* ===== Overview key-values ===== */
.kv{ display:grid; gap:10px; }
.kv .row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(17,24,39,.18);   /* 手账感：虚线框 */
  background: rgba(255,255,255,.78);
}
.kv .row span:first-child{ color: var(--muted); }
.kv .row span:last-child{ text-align:right; }

/* ===== Notes ===== */
.stack{ display:grid; gap:10px; }
.note{
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.80);
  box-shadow: 0 8px 16px rgba(17,24,39,.05);
}

/* tiny colored strip like washi tape */
.note .title{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  font-weight:900;
  position: relative;
}
.note .title::after{
  content:"";
  height:10px;
  width:54px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,103,179,.55), rgba(102,199,255,.45), rgba(53,215,176,.40));
  opacity:.65;
  position:absolute;
  left:0;
  bottom:-6px;
  filter: blur(.2px);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.86);
}
.badge.ok{
  color: #065f46;
  border-color: transparent;
  background: linear-gradient(90deg, rgba(53,215,176,.14), rgba(102,199,255,.08));
  box-shadow: 0 6px 18px rgba(53,215,176,.06);
}
.badge.warn{
  color:#92400e;
  border-color: transparent;
  background: linear-gradient(90deg, rgba(255,209,102,.14), rgba(255,103,179,.06));
  box-shadow: 0 6px 18px rgba(245,158,11,.06);
} 
.note ul{ margin:12px 0 0; padding-left:18px; }
.note li{ margin:6px 0; line-height:1.65; }

/* ===== Chips: looks like sticker tabs ===== */
.chips{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  border: 1px solid rgba(17,24,39,.12);
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  cursor:pointer;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
  transition: transform .12s ease, background .12s ease;
}
.chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.95);
}
.chip.active{
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255,103,179,.26), rgba(102,199,255,.22), rgba(53,215,176,.18));
  outline: none;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
  transition: transform .16s, box-shadow .16s;
} 

/* ===== Timeline ===== */
.timeline{ margin-top:12px; display:grid; gap:12px; }

.day{
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadowSoft);
}

/* planner header */
.day-head{
  padding:12px 12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  border-bottom: 1px solid rgba(17,24,39,.08);
  background:
    linear-gradient(135deg, rgba(255,103,179,.16), rgba(102,199,255,.14), rgba(53,215,176,.12));
}
.day-head .left{
  display:flex;
  gap:10px;
  align-items:baseline;
  flex-wrap:wrap;
}
.day-head .date{ font-weight:900; }
.day-head .route{ color: rgba(35,37,43,.70); }

.day-body{ padding:12px 12px; display:grid; gap:10px; }

/* items: “sticky note blocks” */
.item{
  position: relative;
  padding:12px 14px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  transition: transform .18s ease, box-shadow .18s ease;
}
.item:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}
.item::before{
  content:"";
  position:absolute;
  left:12px;
  top:-6px;
  width:64px;
  height:12px;
  border-radius:999px;
  background: rgba(255, 209, 102, .55); /* lemon washi */
  border: 1px solid rgba(245,158,11,.20);
  transform: rotate(-1.2deg);
  opacity:.75;
} 

.item-top{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.item .time{ font-weight:900; }
.item .label{ color: var(--muted); font-size:12px; }
.item .desc{
  margin-top:6px;
  line-height:1.7;
  white-space:pre-line;
}

.item-info{
  display:flex;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  min-width:0;
}
.transport-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 26px rgba(17,24,39,.1);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
  color:#6b5b8b;
  border:1px solid rgba(17,24,39,.06);
}
.transport-icon svg{
  width:24px;
  height:24px;
}
.transport-icon.train{ color:#5d7bff; }
.transport-icon.plane{ color:#2fb6ff; }
.transport-icon.car{ color:#f472b6; }
.transport-icon.bus{ color:#34d399; }

.item .meta{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.tag{
  font-size:12px;
  color: rgba(35,37,43,.72);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.80);
  padding:4px 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.tag-icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:inherit;
}
.tag-icon svg{
  width:16px;
  height:16px;
}
.tag-icon.plane{ color:#0ea5e9; }
.tag-icon.train{ color:#6366f1; }
.tag-icon.car{ color:#f97316; }
.tag-icon.bag{ color:#a855f7; }
.tag-icon.hotel{ color:#14b8a6; }
.tag-icon.food{ color:#ef4444; }
.tag-icon.relax{ color:#ec4899; }
.tag-icon.scenic{ color:#0ea5e9; }
.tag-icon.alert{ color:#facc15; }
.tag-icon.activity{ color:#f472b6; }

.moodboard-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}
@media (min-width: 820px){
  .moodboard-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mood-card{
  margin:0;
  padding:0;
  border-radius:22px;
  overflow:hidden;
  background: rgba(255,255,255,.74);
  border:1px solid rgba(17,24,39,.06);
  box-shadow: var(--shadowSoft);
  transition: transform .18s ease;
}
.mood-card img{
  height:180px;
  width:100%;
  object-fit:cover;
}
.mood-card figcaption{
  padding:12px 14px 14px;
  font-size:14px;
  color:#4b3b52;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.mood-card:hover{ transform: translateY(-6px); }
.mood-season{
  font-size:11px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#7a6c90;
  background: rgba(160, 142, 184, .12);
  padding:3px 10px;
  border-radius:999px;
  align-self:flex-start;
  border: 1px solid rgba(122,108,144,.18);
}
.mood-location{
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#a08eb8;
}
.mood-caption{
  font-size:13px;
  color:#4b3b52;
}
.cat-journal{
  margin-top:16px;
  border: 1px solid rgba(167,139,250,.18);
}
.cat-journal-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  margin-top:14px;
}
.cat-note-card{
  position:relative;
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(17,24,39,.06);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 20px rgba(17,24,39,.08);
  font-size:13px;
  color:#4d3d54;
  line-height:1.8;
}
.cat-ear{
  position:absolute;
  width:32px;
  height:16px;
  background: rgba(167,139,250,.25);
  border-radius:16px 16px 0 0;
  top:-16px;
  left:20px;
}
.cat-note-title{
  font-weight:700;
  margin:0 0 6px;
  color:#5c456e;
  letter-spacing:.6px;
}
.moodboard-overlay{
  position:absolute;
  inset:auto 0 0;
  padding:48px 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.92) 30%, rgba(255,255,255,1));
  display:flex;
  justify-content:center;
  pointer-events:none;
  z-index:2;
}
.moodboard-overlay.hidden{
  display:none;
}
.overlay-content{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-direction:column;
  text-align:center;
  pointer-events:auto;
}
.overlay-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  color:#6f5f7c;
}
.overlay-text strong{
  font-size:13px;
  letter-spacing:0.8px;
  color:#9a8bb0;
}
.overlay-text span{
  font-size:12px;
  color:#a3a1b0;
}
.reveal-btn{
  align-self:center;
  background: linear-gradient(135deg, rgba(255,103,179,.9), rgba(102,199,255,.9));
  color:#fff;
  border:none;
  padding:10px 18px;
}
@media (max-width: 720px){
  .moodboard-overlay{
    padding:36px 16px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95) 45%, rgba(255,255,255,1));
  }
  .overlay-content{
    gap:12px;
  }
  .reveal-btn{
    width:100%;
    justify-content:center;
  }
}

/* Footer */
.footer{ margin-top:16px; font-size:12px; }

/* Print */
@media print{
  .topbar .actions{ display:none; }
  body{ background:#fff; color:#000; }
  .card,.day,.item{ box-shadow:none; }
  .chip{ box-shadow:none; }
  .muted{ color:#333; }
  /* remove dot grid in print */
  body{
    background: #fff !important;
  }
}
