/* King Family — Disney Treasure Cruise 2026 */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&family=Pacifico&display=swap');

:root {
  --navy: #0b1f4a;
  --navy-deep: #071533;
  --royal: #1d4ed8;
  --sky: #38bdf8;
  --gold: #f5c542;
  --gold-deep: #eab308;
  --coral: #ff6b6b;
  --magenta: #d946ef;
  --mint: #34d399;
  --cream: #fff8ef;
  --ink: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.94);
  --shadow: 0 14px 44px rgba(11, 31, 74, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(56,189,248,0.22), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(245,197,66,0.24), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(217,70,239,0.14), transparent 24%),
    linear-gradient(180deg, #eaf6ff 0%, var(--cream) 42%, #fff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.font-display { font-family: 'Fredoka', sans-serif; }
.font-script { font-family: 'Pacifico', cursive; }

.bg-bubbles, .sparkle-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-bubbles span {
  position: absolute;
  bottom: -80px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  animation: rise 14s linear infinite;
}
.bg-bubbles span:nth-child(1) { left: 8%; width: 12px; height: 12px; animation-duration: 11s; }
.bg-bubbles span:nth-child(2) { left: 22%; animation-duration: 16s; animation-delay: 2s; }
.bg-bubbles span:nth-child(3) { left: 40%; width: 24px; height: 24px; animation-duration: 13s; animation-delay: 4s; }
.bg-bubbles span:nth-child(4) { left: 58%; animation-duration: 18s; animation-delay: 1s; }
.bg-bubbles span:nth-child(5) { left: 72%; width: 14px; height: 14px; animation-duration: 12s; animation-delay: 3s; }
.bg-bubbles span:nth-child(6) { left: 88%; animation-duration: 15s; animation-delay: 5s; }
.bg-bubbles span:nth-child(7) { left: 50%; width: 10px; height: 10px; animation-duration: 10s; animation-delay: 1.5s; }
.bg-bubbles span:nth-child(8) { left: 33%; width: 20px; height: 20px; animation-duration: 17s; animation-delay: 6s; }
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.75; }
  100% { transform: translateY(-110vh) scale(1.4); opacity: 0; }
}

.sparkle {
  position: absolute;
  font-size: 1.1rem;
  animation: twinkle 2.8s ease-in-out infinite;
  opacity: 0.75;
  pointer-events: none;
}
@keyframes twinkle {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.35; }
  50% { transform: scale(1.25) rotate(12deg); opacity: 1; }
}

.site-wrap { position: relative; z-index: 1; }

/* NAV */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .25s ease;
  background: transparent;
}
.nav-bar.scrolled, .nav-bar.solid {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(11,31,74,0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}
.nav-bar.scrolled .nav-logo,
.nav-bar.solid .nav-logo { color: var(--navy); }
.nav-logo span { font-size: 1.35rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-bar.scrolled .nav-link,
.nav-bar.solid .nav-link { color: var(--navy); }
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.18);
}
.nav-bar.scrolled .nav-link:hover,
.nav-bar.solid .nav-link:hover,
.nav-bar.scrolled .nav-link.active,
.nav-bar.solid .nav-link.active {
  background: rgba(29,78,216,0.1);
  color: var(--royal);
}

.hamburger-btn {
  display: grid;
  place-items: center;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  cursor: pointer;
  background: rgba(255,255,255,0.18);
  color: white;
  font-size: 1.35rem;
  z-index: 1001;
  transition: .2s ease;
}
.nav-bar.scrolled .hamburger-btn,
.nav-bar.solid .hamburger-btn {
  background: rgba(11,31,74,0.08);
  color: var(--navy);
}
.hamburger-btn:hover { transform: scale(1.05); }

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  background: linear-gradient(165deg, #0b1f4a 0%, #1d4ed8 55%, #7c3aed 100%);
  color: white;
  z-index: 1000;
  transform: translateX(105%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  padding: 88px 22px 28px;
  overflow-y: auto;
}
.menu-panel.open { transform: translateX(0); }
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,21,51,0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 800;
  margin: 18px 0 10px;
}
.menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
  color: white;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
  transition: .15s ease;
}
.menu-link:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(4px);
}
.menu-link .emoji { font-size: 1.2rem; }
.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.day-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  font-weight: 800;
  transition: .15s ease;
}
.day-chip:hover {
  background: rgba(245,197,66,0.25);
  border-color: rgba(245,197,66,0.5);
  transform: translateY(-2px);
}
.day-chip .d { font-family: 'Fredoka', sans-serif; font-size: 1rem; }
.day-chip .m { font-size: 0.78rem; opacity: 0.85; font-weight: 700; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 110px 18px 70px;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(7,21,51,0.72), rgba(29,78,216,0.35) 45%, rgba(245,197,66,0.22)),
    url('../img/ship-hero.jpg') center 55%/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(56,189,248,0.25), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(245,197,66,0.18), transparent 24%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}
.hero-logo {
  width: min(280px, 70vw);
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-kicker {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 10px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero .sub {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.countdown-item {
  min-width: 88px;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 30px rgba(0,0,0,0.15);
  animation: pulse-soft 3s ease-in-out infinite;
}
.countdown-item:nth-child(2) { animation-delay: .4s; }
.countdown-item:nth-child(3) { animation-delay: .8s; }
.countdown-item:nth-child(4) { animation-delay: 1.2s; }
@keyframes pulse-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.countdown-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.countdown-label {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd76a);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(245,197,66,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.16);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-navy {
  background: linear-gradient(135deg, var(--royal), #2563eb);
  color: white;
  box-shadow: 0 10px 24px rgba(29,78,216,0.28);
}

.section { padding: 72px 18px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-kicker {
  font-family: 'Pacifico', cursive;
  color: var(--coral);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 0 0 10px;
}
.section-copy {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(6, 1fr); } }

.stat-card, .card, .day-card, .idea-card, .doc-card, .checklist-card, .info-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card {
  text-align: center;
  padding: 22px 14px;
  transition: transform .2s ease;
  position: relative;
  overflow: hidden;
}
.stat-card:hover { transform: translateY(-6px) rotate(-1deg); }
.stat-emoji { font-size: 1.7rem; }
.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: var(--royal);
  margin-top: 6px;
}
.stat-label { color: var(--muted); font-weight: 700; font-size: 0.9rem; }

/* Clickable timeline */
.timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(128px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  margin-top: 28px;
  scroll-snap-type: x mandatory;
}
.timeline-item {
  border-radius: 20px;
  padding: 16px 12px;
  color: white;
  min-height: 132px;
  background: linear-gradient(160deg, #1d4ed8, #0ea5e9);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.timeline-item::after {
  content: '→';
  position: absolute;
  right: 12px;
  bottom: 10px;
  opacity: 0.7;
  font-weight: 900;
}
.timeline-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(29,78,216,0.28);
}
.timeline-item.sea { background: linear-gradient(160deg, #0369a1, #22d3ee); }
.timeline-item.port { background: linear-gradient(160deg, #0f766e, #34d399); }
.timeline-item.special { background: linear-gradient(160deg, #7c3aed, #d946ef); }
.timeline-item.hotel { background: linear-gradient(160deg, #b45309, #f59e0b); }
.timeline-item.travel { background: linear-gradient(160deg, #1e3a8a, #60a5fa); }
.timeline-item.hp { background: linear-gradient(160deg, #4c1d95, #f59e0b); }
.timeline-item.embark { background: linear-gradient(160deg, #0c4a6e, #38bdf8); }
.timeline-item.home { background: linear-gradient(160deg, #334155, #94a3b8); }
.timeline-item .date { font-weight: 800; font-size: 0.85rem; opacity: 0.92; }
.timeline-item .title { font-family: 'Fredoka', sans-serif; font-size: 1.08rem; margin-top: 6px; }
.timeline-item .meta { font-size: 0.82rem; opacity: 0.92; margin-top: 6px; }

.magic-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}
@media (min-width: 760px) { .magic-strip { grid-template-columns: repeat(4, 1fr); } }
.magic-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 170px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.8);
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: transform .2s ease;
  cursor: default;
}
.magic-card:hover { transform: translateY(-5px) scale(1.02) rotate(-0.5deg); }
.magic-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,51,0.88), rgba(7,21,51,0.05) 55%);
}
.magic-card span {
  position: relative;
  z-index: 1;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.page-hero {
  padding: 120px 18px 48px;
  color: white;
  background-size: cover !important;
  background-position: center !important;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 0 0 10px;
}
.page-hero p { margin: 0; opacity: 0.95; font-size: 1.08rem; max-width: 720px; }

.content-grid { display: grid; gap: 18px; }
@media (min-width: 900px) {
  .content-grid.two { grid-template-columns: 1.2fr 0.8fr; }
  .content-grid.equal { grid-template-columns: 1fr 1fr; }
  .content-grid.three { grid-template-columns: repeat(3, 1fr); }
}

.card, .info-card, .idea-card, .doc-card, .checklist-card { padding: 22px; }
.card h2, .info-card h2, .idea-card h3, .doc-card h3, .checklist-card h2, .day-detail h2 {
  font-family: 'Fredoka', sans-serif;
  color: var(--navy);
  margin: 0 0 10px;
}
.card p, .info-card p, .idea-card p, .doc-card p, .checklist-card p, .day-detail p {
  color: var(--muted);
  line-height: 1.6;
}
.card-media {
  height: 150px;
  border-radius: 16px;
  margin: -6px -6px 14px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e8f0ff;
}
.list .icon { font-size: 1.1rem; line-height: 1.3; }
.list strong { color: var(--navy); display: block; }
.list span { color: var(--muted); font-size: 0.95rem; }

.schedule { display: grid; gap: 12px; }
.schedule-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #e7efff;
}
.schedule-item .time {
  font-family: 'Fredoka', sans-serif;
  color: var(--royal);
  font-weight: 700;
}
.schedule-item h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
}
.schedule-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.idea-card h3 { font-size: 1.2rem; }
.idea-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag {
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}
.tag.easy { background: #ecfdf5; color: #047857; }
.tag.family { background: #fff7ed; color: #c2410c; }
.tag.adventure { background: #eff6ff; color: #1d4ed8; }
.tag.relax { background: #fdf4ff; color: #a21caf; }

.checklist { display: grid; gap: 10px; }
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid #e8eefc;
  cursor: pointer;
  transition: .15s ease;
}
.check-item:hover { border-color: #bfdbfe; transform: translateX(3px); }
.check-item input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--royal);
}
.check-item.done {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.check-item.done .check-text {
  text-decoration: line-through;
  color: #64748b;
}
.check-text strong { display: block; color: var(--navy); }
.check-text span { color: var(--muted); font-size: 0.92rem; }
.progress-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 18px;
}
.progress-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #38bdf8, #f5c542);
  transition: width .25s ease;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doc-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #dbeafe, #fef3c7);
}

.footer {
  padding: 40px 18px 80px;
  text-align: center;
  color: var(--muted);
}
.footer .brand {
  font-family: 'Fredoka', sans-serif;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Easter eggs */
.hidden-mickey {
  position: absolute;
  width: 34px;
  height: 34px;
  opacity: 0.22;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  z-index: 5;
}
.hidden-mickey:hover, .hidden-mickey.found {
  opacity: 1;
  transform: scale(1.2) rotate(-8deg);
}
.hidden-mickey::before,
.hidden-mickey::after,
.hidden-mickey i {
  content: '';
  position: absolute;
  background: #111827;
  border-radius: 50%;
}
.hidden-mickey i {
  width: 18px;
  height: 18px;
  left: 8px;
  top: 12px;
}
.hidden-mickey::before, .hidden-mickey::after {
  width: 12px;
  height: 12px;
  top: 2px;
}
.hidden-mickey::before { left: 2px; }
.hidden-mickey::after { right: 2px; }

.egg-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  background: linear-gradient(135deg, #111827, #1d4ed8 50%, #7c3aed);
  color: white;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  z-index: 2000;
  opacity: 0;
  transition: .3s ease;
  font-weight: 800;
  max-width: min(90vw, 440px);
  text-align: center;
}
.egg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.floating-ship {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  font-size: 2.2rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
  animation: bob 3s ease-in-out infinite;
  cursor: pointer;
  user-select: none;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.egg-counter {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 50;
  background: rgba(11,31,74,0.88);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.fun-banner {
  margin: 18px auto 0;
  max-width: 720px;
  background: linear-gradient(90deg, #fef3c7, #dbeafe, #fce7f3);
  border: 2px dashed #f59e0b;
  border-radius: 18px;
  padding: 12px 16px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  animation: wiggle 5s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-0.4deg); }
  75% { transform: rotate(0.4deg); }
}

.confetti-piece {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 14px;
  z-index: 1500;
  pointer-events: none;
  animation: confetti-fall 2.8s linear forwards;
}
@keyframes confetti-fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0.2; }
}

.note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
}
.note.blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}
.note.green {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #065f46;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; justify-content: center; }
.family-pill {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(15,23,42,0.05);
  transition: transform .15s ease;
}
.family-pill:hover { transform: scale(1.06) rotate(-2deg); }

.day-detail .hero-strip {
  border-radius: 24px;
  padding: 28px;
  color: white;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}
.day-detail .hero-strip h2 { color: white; margin-bottom: 6px; }
.day-detail .hero-strip p { color: rgba(255,255,255,0.92); }

body.konami-mode {
  animation: rainbow 3s linear infinite;
}
@keyframes rainbow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@media (max-width: 640px) {
  .schedule-item { grid-template-columns: 1fr; gap: 4px; }
  .countdown-item { min-width: 72px; padding: 12px 10px; }
  .countdown-number { font-size: 1.55rem; }
}

/* Classic 3-circle Hidden Mickey */
.hidden-mickey {
  position: absolute;
  width: 36px;
  height: 36px;
  opacity: 0.22;
  cursor: pointer;
  z-index: 5;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.hidden-mickey:hover,
.hidden-mickey.found {
  opacity: 1;
  transform: scale(1.15) rotate(-6deg);
}
.hidden-mickey::before,
.hidden-mickey::after,
.hidden-mickey i {
  content: '';
  position: absolute;
  background: #111827;
  border-radius: 50%;
}
.hidden-mickey i {
  width: 20px;
  height: 20px;
  left: 8px;
  top: 14px;
  display: block;
}
.hidden-mickey::before,
.hidden-mickey::after {
  width: 14px;
  height: 14px;
  top: 2px;
}
.hidden-mickey::before { left: 2px; }
.hidden-mickey::after { right: 2px; left: auto; }

button.magic-card,
a.magic-card {
  border: 0;
  cursor: pointer;
  font: inherit;
  color: white;
  text-align: left;
  text-decoration: none;
}

a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
a.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,31,74,0.16);
}
a.card-link h2,
a.card-link p {
  color: inherit;
}
.food-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .food-grid { grid-template-columns: repeat(3, 1fr); } }
.food-card {
  border: 0; border-radius: 18px; overflow: hidden; cursor: pointer; text-align: left;
  background: white; box-shadow: var(--shadow); padding: 0; transition: transform .15s ease;
}
.food-card:hover { transform: translateY(-4px) scale(1.02); }
.food-card img { width: 100%; height: 140px; object-fit: cover; display: block; background: #e2e8f0; }
.food-card .meta { padding: 12px 14px; }
.food-card strong { display: block; color: var(--navy); font-family: 'Fredoka', sans-serif; }
.food-card span { color: var(--muted); font-size: .9rem; }
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(7,21,51,.65); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 18px;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  width: min(560px, 100%); background: white; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.modal-card img { width: 100%; max-height: 320px; object-fit: cover; display: block; background: #e2e8f0; }
.modal-card .body { padding: 18px 18px 22px; }
.modal-card h3 { margin: 0 0 8px; font-family: 'Fredoka', sans-serif; color: var(--navy); }
.modal-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.modal-close {
  margin-top: 14px; border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 800;
  background: linear-gradient(135deg, #1d4ed8, #2563eb); color: white; cursor: pointer;
}
.ride-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.ride-table td { background: #f8fbff; padding: 12px 14px; border: 1px solid #e8f0ff; vertical-align: top; }
.ride-table tr td:first-child { border-radius: 14px 0 0 14px; font-weight: 800; color: var(--navy); width: 32%; }
.ride-table tr td:last-child { border-radius: 0 14px 14px 0; color: var(--muted); }
.hp-section { margin-bottom: 28px; }
.hp-badge {
  display: inline-block; background: #fef3c7; color: #92400e; font-weight: 800;
  border-radius: 999px; padding: 6px 12px; font-size: .8rem; margin-bottom: 10px;
}
