/* Neko Korea Travel — mobile-first, light / dark themes */
:root {
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

html[data-theme="dark"] {
  --bg-deep: #0c0618;
  --bg-card: #14082a;
  --purple-glow: #c084fc;
  --purple-core: #a855f7;
  --purple-deep: #7c3aed;
  --accent-pink: #f472b6;
  --text: #f3e8ff;
  --text-muted: #c4b5fd;
  --border: rgba(168, 85, 247, 0.45);
  --success: #4ade80;
  --hero-glow-a: rgba(168, 85, 247, 0.12);
  --hero-glow-b: rgba(192, 132, 252, 0.28);
  --card-glow-a: rgba(168, 85, 247, 0.08);
  --card-glow-b: rgba(192, 132, 252, 0.22);
  --clock-time-glow: rgba(192, 132, 252, 0.5);
  --h2-glow: rgba(168, 85, 247, 0.4);
  --chip-bg: rgba(32, 18, 58, 0.92);
  --chip-fg: #e9d5ff;
  --chip-active-fg: #faf5ff;
  --chip-active-a: rgba(124, 58, 237, 0.55);
  --chip-active-b: rgba(168, 85, 247, 0.38);
  --place-bg: rgba(18, 10, 40, 0.72);
  --place-border: rgba(168, 85, 247, 0.3);
  --placeholder: rgba(196, 181, 253, 0.55);
  --category-summary-glow: rgba(168, 85, 247, 0.35);
  --map-naver-end: rgba(20, 8, 42, 0.92);
  --map-btn-fg: var(--text);
  --map-naver-fg: var(--text);
  --tag-bg: rgba(168, 85, 247, 0.18);
  --tag-border: rgba(168, 85, 247, 0.35);
  --badge-bg: rgba(168, 85, 247, 0.25);
  --day-row-border: rgba(168, 85, 247, 0.22);
  --category-shadow: rgba(88, 28, 135, 0.2);
  --weather-shadow: rgba(124, 58, 237, 0.15);
}

html[data-theme="light"] {
  --bg-deep: #f5f0ff;
  --bg-card: #ffffff;
  --purple-glow: #6d28d9;
  --purple-core: #7c3aed;
  --purple-deep: #5b21b6;
  --accent-pink: #be185d;
  --text: #1a1330;
  --text-muted: #524a6b;
  --border: rgba(124, 58, 237, 0.22);
  --success: #15803d;
  --hero-glow-a: rgba(124, 58, 237, 0.08);
  --hero-glow-b: rgba(167, 139, 250, 0.2);
  --card-glow-a: rgba(124, 58, 237, 0.06);
  --card-glow-b: rgba(139, 92, 246, 0.14);
  --clock-time-glow: transparent;
  --h2-glow: transparent;
  --chip-bg: #ede9fe;
  --chip-fg: #3f3654;
  --chip-active-fg: #ffffff;
  --chip-active-a: #6d28d9;
  --chip-active-b: #8b5cf6;
  --place-bg: #f3f0ff;
  --place-border: rgba(91, 33, 182, 0.2);
  --placeholder: rgba(91, 33, 182, 0.42);
  --category-summary-glow: transparent;
  --map-naver-end: rgba(220, 252, 231, 0.95);
  --map-btn-fg: #1a1330;
  --map-naver-fg: #064e3b;
  --tag-bg: rgba(124, 58, 237, 0.1);
  --tag-border: rgba(124, 58, 237, 0.22);
  --badge-bg: rgba(124, 58, 237, 0.12);
  --day-row-border: rgba(124, 58, 237, 0.15);
  --category-shadow: rgba(91, 33, 182, 0.08);
  --weather-shadow: rgba(91, 33, 182, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  padding-bottom: 4rem;
}

html[data-theme="dark"] body {
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.35), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(192, 132, 252, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(244, 114, 182, 0.08), transparent);
  animation: bg-breathe 22s ease-in-out infinite alternate;
}

html[data-theme="light"] body {
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -15%, rgba(196, 181, 253, 0.55), transparent),
    radial-gradient(ellipse 90% 55% at 100% 40%, rgba(233, 213, 255, 0.45), transparent),
    radial-gradient(ellipse 70% 45% at 0% 85%, rgba(251, 207, 232, 0.25), transparent);
  animation: bg-breathe-light 26s ease-in-out infinite alternate;
}

@keyframes bg-breathe {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  100% {
    filter: hue-rotate(12deg) saturate(1.08);
  }
}

@keyframes bg-breathe-light {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  100% {
    filter: hue-rotate(6deg) saturate(1.04);
  }
}

/* Soft drifting blobs — no strobing */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.22;
  animation: blob-drift 28s ease-in-out infinite;
}

.blob-a {
  width: min(90vw, 340px);
  height: min(90vw, 340px);
  background: #7c3aed;
  top: -5%;
  left: -20%;
  animation-delay: 0s;
}

.blob-b {
  width: min(70vw, 260px);
  height: min(70vw, 260px);
  background: #db2777;
  bottom: 10%;
  right: -15%;
  animation-delay: -9s;
  animation-duration: 34s;
}

.blob-c {
  width: min(60vw, 200px);
  height: min(60vw, 200px);
  background: #6366f1;
  top: 40%;
  left: 30%;
  opacity: 0.14;
  animation-delay: -4s;
  animation-duration: 40s;
}

@keyframes blob-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(6%, 4%) scale(1.05);
  }
  66% {
    transform: translate(-4%, 6%) scale(0.96);
  }
}

/* Decorative nekos */
.neko-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.neko-float {
  position: absolute;
  font-size: 1.55rem;
  opacity: 0.32;
  text-shadow: 0 0 12px var(--purple-glow);
  animation: floaty 8s ease-in-out infinite;
}

.neko-float:nth-child(1) { top: 6%; left: 3%; animation-delay: 0s; font-size: 1.45rem; }
.neko-float:nth-child(2) { top: 14%; right: 8%; animation-delay: -1.2s; font-size: 1.7rem; }
.neko-float:nth-child(3) { top: 42%; left: 1%; animation-delay: -2.4s; font-size: 1.35rem; }
.neko-float:nth-child(4) { top: 52%; right: 4%; animation-delay: -0.5s; font-size: 1.6rem; }
.neko-float:nth-child(5) { bottom: 32%; left: 6%; animation-delay: -3.1s; font-size: 1.5rem; }
.neko-float:nth-child(6) { bottom: 22%; right: 10%; animation-delay: -1.8s; font-size: 1.4rem; }
.neko-float:nth-child(7) { top: 28%; left: 22%; animation-delay: -4s; font-size: 1.25rem; opacity: 0.22; }
.neko-float:nth-child(8) { bottom: 12%; left: 14%; animation-delay: -2s; font-size: 1.65rem; }
.neko-float:nth-child(9) { top: 68%; right: 18%; animation-delay: -3.5s; font-size: 1.3rem; }
.neko-float:nth-child(10) { bottom: 38%; right: 2%; animation-delay: -0.8s; font-size: 1.45rem; }
.neko-float:nth-child(11) { top: 8%; left: 48%; animation-delay: -5s; font-size: 1.2rem; opacity: 0.2; }
.neko-float:nth-child(12) { bottom: 6%; right: 28%; animation-delay: -2.7s; font-size: 1.55rem; }

.neko-float:nth-child(odd) {
  animation-duration: 9.5s;
}

.neko-float:nth-child(even) {
  animation-duration: 7s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.35rem 1rem 2rem;
}

.theme-toggle {
  position: absolute;
  top: 0.35rem;
  right: 0;
  z-index: 2;
  padding: 0.4rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--purple-glow);
  box-shadow: 0 0 12px var(--card-glow-a);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 14px var(--card-glow-b);
}

header.hero {
  text-align: center;
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  box-shadow: 0 0 24px var(--hero-glow-a);
  animation: hero-glow 7s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  from {
    box-shadow: 0 0 18px var(--hero-glow-a);
  }
  to {
    box-shadow: 0 0 28px var(--hero-glow-b), 0 0 40px var(--hero-glow-a);
  }
}

.doro-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.doro-wrap img {
  display: block;
}

.doro-mascot {
  width: 88px;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
  animation: doro-wiggle 5.5s ease-in-out infinite;
}

@keyframes doro-wiggle {
  0%, 100% {
    transform: rotate(-2deg) translateY(0);
  }
  25% {
    transform: rotate(3deg) translateY(-3px);
  }
  50% {
    transform: rotate(-1deg) translateY(0);
  }
  75% {
    transform: rotate(2deg) translateY(-2px);
  }
}

.hero-title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(
    110deg,
    #e9d5ff 0%,
    #c084fc 25%,
    #f472b6 50%,
    #c084fc 75%,
    #e9d5ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shimmer 14s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.45));
}

html[data-theme="light"] .hero-title {
  background: linear-gradient(
    110deg,
    #5b21b6 0%,
    #7c3aed 28%,
    #a21caf 52%,
    #7c3aed 72%,
    #5b21b6 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

@keyframes title-shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero p.sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Clocks */
.clocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.clock-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.5rem;
  text-align: center;
  box-shadow: 0 0 16px var(--card-glow-a);
  animation: card-pulse 6s ease-in-out infinite alternate;
}

.clock-card:nth-child(2) {
  animation-delay: -2.5s;
}

@keyframes card-pulse {
  from {
    box-shadow: 0 0 10px var(--card-glow-a);
    transform: translateY(0);
  }
  to {
    box-shadow: 0 0 22px var(--card-glow-b);
    transform: translateY(-1px);
  }
}

.clock-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-pink);
  margin-bottom: 0.25rem;
}

.clock-card .time {
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  text-shadow: 0 0 8px var(--clock-time-glow);
}

.clock-card .date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Sections */
section {
  margin-top: 1.25rem;
}

section h2 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-glow);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-shadow: 0 0 10px var(--h2-glow);
  animation: h2-pop 10s ease-in-out infinite;
}

@keyframes h2-pop {
  0%, 92%, 100% {
    transform: translateX(0);
    letter-spacing: 0.02em;
  }
  96% {
    transform: translateX(2px);
    letter-spacing: 0.06em;
  }
}

/* Weather */
.weather-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weather-place {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 0 20px var(--weather-shadow);
}

.weather-place h3 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-pink);
}

.weather-legend {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
  width: 100%;
  overflow: visible;
  padding: 0.1rem 0 0.2rem;
  margin: 0;
}

.week-day {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0.22rem 0.1rem 0.28rem;
  border-radius: 10px;
  border: 1px solid var(--place-border);
  background: var(--place-bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.04rem;
  box-shadow: 0 1px 6px var(--card-glow-a);
}

.week-dow {
  font-size: clamp(0.48rem, 2.4vw, 0.56rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--purple-glow);
  line-height: 1.05;
}

.week-dom {
  font-size: clamp(0.55rem, 2.8vw, 0.64rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.week-ico {
  font-size: clamp(0.95rem, 5.2vw, 1.2rem);
  line-height: 1.1;
  margin: 0.04rem 0;
}

.week-hi {
  font-size: clamp(0.52rem, 2.6vw, 0.62rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #ea580c;
  line-height: 1.05;
}

.week-lo {
  font-size: clamp(0.5rem, 2.4vw, 0.58rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #0284c7;
  line-height: 1.05;
}

.week-mid {
  font-size: clamp(0.46rem, 2.2vw, 0.54rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  line-height: 1.1;
  margin-top: 0.06rem;
  padding-top: 0.1rem;
  border-top: 1px solid var(--day-row-border);
  width: 100%;
}

html[data-theme="dark"] .week-hi {
  color: #fdba74;
}

html[data-theme="dark"] .week-lo {
  color: #7dd3fc;
}

/* Saved Google Map list (standalone preview + link) */
.saved-map-section {
  margin-top: 1.25rem;
}

.saved-map-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.65rem 0.65rem 0.75rem;
  box-shadow: 0 0 20px var(--weather-shadow);
}



.saved-map-hint {
  margin: 0.45rem 0 0.5rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.saved-map-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(168, 85, 247, 0.25));
  color: var(--map-btn-fg);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.saved-map-open-btn:hover,
.saved-map-open-btn:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  outline: none;
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.45);
}

html[data-theme="dark"] .saved-map-open-btn:hover,
html[data-theme="dark"] .saved-map-open-btn:focus-visible {
  color: #fff;
}

.badge {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: var(--badge-bg);
  border: 1px solid var(--border);
  margin-right: 0.25rem;
  margin-bottom: 0.15rem;
}

/* Filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.toolbar label {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 0.1rem;
}

.chip {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--chip-fg);
  font-size: 0.65rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.chip:hover,
.chip:focus-visible {
  color: var(--text);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.35);
  outline: none;
}

.chip.active {
  background: linear-gradient(135deg, var(--chip-active-a), var(--chip-active-b));
  color: var(--chip-active-fg);
  border-color: var(--purple-glow);
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.4);
}

.search-row {
  margin-bottom: 0.5rem;
}

.search-row input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
}

.search-row input::placeholder {
  color: var(--placeholder);
}

.search-row input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.35);
}

/* Accordion categories */
.category {
  margin-bottom: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 14px var(--category-shadow);
}

.category summary {
  list-style: none;
  cursor: pointer;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-glow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-shadow: 0 0 8px var(--category-summary-glow);
}

.category summary::-webkit-details-marker {
  display: none;
}

.category summary::after {
  content: "▸";
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.category[open] summary::after {
  transform: rotate(90deg);
}

.category .cat-body {
  padding: 0 0.5rem 0.65rem;
}

.place {
  border: 1px solid var(--place-border);
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  margin-bottom: 0.45rem;
  background: var(--place-bg);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.place:hover {
  border-color: var(--purple-glow);
  box-shadow: 0 0 18px var(--card-glow-b);
  transform: translateY(-1px);
}

.place:last-child {
  margin-bottom: 0;
}

.place.hidden {
  display: none;
}

.place-head {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.place-head input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--purple-core);
  cursor: pointer;
  flex-shrink: 0;
}

.place-head .title-block {
  flex: 1;
  min-width: 0;
}

.place-head .title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.place-head .title.done {
  text-decoration: line-through;
  opacity: 0.65;
  color: var(--text-muted);
}

.tags {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.tag {
  font-size: 0.58rem;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: var(--tag-bg);
  color: var(--text-muted);
  border: 1px solid var(--tag-border);
}

.note {
  margin: 0.4rem 0 0 1.55rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.map-btns {
  margin: 0.45rem 0 0 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

a.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(168, 85, 247, 0.25));
  color: var(--map-btn-fg);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
  font-family: inherit;
}

a.map-btn:hover,
a.map-btn:focus-visible {
  color: #fff;
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.45);
  outline: none;
}

html[data-theme="light"] a.map-btn:hover,
html[data-theme="light"] a.map-btn:focus-visible {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
}

a.map-btn-naver {
  border-color: rgba(3, 199, 90, 0.55);
  background: linear-gradient(135deg, rgba(3, 199, 90, 0.28), var(--map-naver-end));
  color: var(--map-naver-fg);
}

a.map-btn-naver:hover,
a.map-btn-naver:focus-visible {
  box-shadow: 0 0 14px rgba(3, 199, 90, 0.35);
  color: #fff;
}

html[data-theme="light"] a.map-btn-naver:hover,
html[data-theme="light"] a.map-btn-naver:focus-visible {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
}

footer.credit {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

footer.credit a {
  color: var(--purple-glow);
}

.loading,
.err {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.5rem;
}

.err {
  color: #fb7185;
}

html[data-theme="light"] .blob-a {
  background: #c4b5fd;
  opacity: 0.32;
}

html[data-theme="light"] .blob-b {
  background: #fbcfe8;
  opacity: 0.22;
}

html[data-theme="light"] .blob-c {
  background: #c7d2fe;
  opacity: 0.14;
}

html[data-theme="light"] .neko-float {
  opacity: 0.12;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

html[data-theme="light"] .neko-float:nth-child(7),
html[data-theme="light"] .neko-float:nth-child(11) {
  opacity: 0.08;
}

html[data-theme="light"] .doro-mascot {
  box-shadow: 0 2px 14px rgba(91, 33, 182, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  body,
  .blob,
  .neko-float,
  header.hero,
  .doro-mascot,
  .hero-title,
  .clock-card,
  section h2 {
    animation: none !important;
  }

  .neko-layer {
    will-change: auto;
  }

  body {
    filter: none;
  }

  .place {
    transition: none;
  }
}
