
        :root { --pink: #f472b6; --purple: #a78bfa; --violet: #7c3aed; }
        * { 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); border-color: rgba(124,58,237,0.3); }
            .section p, ul, ol { color: #bbb; }
        }
        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; background-clip: text; }
        .content { background: rgba(255,255,255,0.95); border-radius: 16px; padding: 20px; border: 1px solid rgba(216,180,254,0.3); box-shadow: 0 2px 8px rgba(167,139,250,0.08); max-width: 800px; margin: 0 auto; }
        .section { margin-bottom: 14px; }
        .section-title { font-weight: 600; color: var(--violet); margin-bottom: 6px; font-size: 14px; }
        .section p, .section li { font-size: 13px; color: #555; margin-bottom: 6px; }
        ul, ol { margin-left: 18px; }
        li { margin-bottom: 4px; }
        .footer { margin-top: 16px; text-align: center; font-size: 11px; color: #888; }
        .footer a { color: var(--violet); text-decoration: none; }
        .operator-info { background: linear-gradient(135deg, rgba(244,114,182,0.1) 0%, rgba(167,139,250,0.1) 100%); padding: 12px; border-radius: 8px; margin: 10px 0; font-size: 12px; }
        .important { background: #fff3cd; padding: 10px; border-radius: 8px; margin: 10px 0; border-left: 3px solid #ffc107; }
        @media (prefers-color-scheme: dark) { .important { background: rgba(255,193,7,0.1); } }


/* === 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); }
}
/* === Inline links in content === */
.content a { color: var(--violet); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.content a:hover { color: var(--purple); }

/* === Consent buttons (synchronized gradient) === */
.consent-buttons-section {
  display: flex; gap: 12px;
  max-width: 440px; margin: 28px 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%; }
}


/* === Section numbering (colored prominent) === */
.section { margin-bottom: 16px; }
.section-title { font-size: 14px; color: #333; font-weight: 500; margin-bottom: 6px; line-height: 1.5; text-align: justify; }
.section-num {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 4px;
  min-width: 22px;
}
.section-list { margin: 6px 0 0 22px; padding: 0; list-style: disc outside; }
.section-list li { font-size: 13px; color: #555; margin-bottom: 4px; line-height: 1.5; text-align: justify; padding-left: 4px; }
.opening { font-size: 13px; color: #555; margin-bottom: 18px; line-height: 1.5; }
.opening strong { color: #333; }

/* === Defensive: ensure buttons always clickable === */
.consent-buttons-section { position: relative; z-index: 2147483646; }
.consent-btn { position: relative; z-index: 2147483647; pointer-events: auto !important; }
