
        :root { --primary: #7c3aed; --pink: #f472b6; --purple: #a78bfa; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(180deg, #fdf4f5 0%, #f5f3ff 100%); color: #333; padding: 20px; min-height: 100vh; line-height: 1.6; }
        @media (prefers-color-scheme: dark) { body { background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%); color: #e0e0e0; } .content { background: rgba(30,30,45,0.95); } }
        h1 { font-size: 18px; font-weight: 700; text-align: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .content { background: rgba(255,255,255,0.95); border-radius: 16px; padding: 20px; max-width: 800px; margin: 0 auto; }
        h2 { color: var(--primary); font-size: 16px; margin: 20px 0 10px; }
        p, li { font-size: 14px; margin-bottom: 8px; }
        ul { margin-left: 20px; }
        table { width: 100%; border-collapse: collapse; margin: 10px 0; font-size: 13px; }
        th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
        th { background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(244,114,182,0.1) 100%); }
        .footer { margin-top: 20px; text-align: center; font-size: 12px; color: #888; }
        a { color: var(--primary); }


/* === Pulsing cat (inline next to text) + title wrap to 2 lines === */
.h1-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.25;
}
.title-stack {
  display: inline-block;
  text-align: left;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-line {
  display: block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-cat {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 4px;
  animation: cat-pulse 5s ease-in-out infinite;
}
@media (max-width: 480px) {
  .header-cat { width: 26px; height: 26px; margin-right: 3px; }
}
@keyframes cat-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}


/* === Consent buttons (review-style gradient + synchronized animation) === */
.consent-buttons-section {
  display: flex; gap: 12px;
  max-width: 440px; margin: 32px auto 16px;
  padding: 0 4px;
}
.consent-btn {
  flex: 1;
  padding: 16px 18px;
  font-size: 15px; font-weight: 600;
  border: none; border-radius: 14px;
  color: #fff; cursor: pointer;
  font-family: inherit;
  background-size: 200% 200%;
  box-shadow: 0 6px 20px rgba(124, 158, 178, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: consent-gradient-shift 4s ease infinite;
}
.btn-accept {
  background-image: linear-gradient(135deg, #6b8fa6 0%, #a78bfa 50%, #f797ab 100%);
}
.btn-close {
  background-image: linear-gradient(135deg, #f797ab 0%, #a78bfa 50%, #6b8fa6 100%);
}
.consent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124, 158, 178, 0.35);
}
.consent-btn:active { transform: translateY(0) scale(.98); }
@keyframes consent-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* === Meta line: city left + date right === */
.meta-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 12px;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.meta-loc { flex: 1 1 auto; text-align: left; }
.meta-date { flex: 0 0 auto; margin-left: auto; text-align: right; white-space: nowrap; }
