/* ============================================================
   ISLANDA — Gift Website
   Editorial Design System
   ============================================================ */

:root {
  --bg-primary: #0d0b1a;
  --bg-secondary: #11102a;
  --bg-card: rgba(18, 18, 35, 0.7);
  --bg-card-hover: rgba(25, 25, 50, 0.85);

  --aurora-green: #7fff4f;
  --aurora-blue: #c8ffa0;
  --aurora-violet: #9b5fc7;

  --gold: #d4a843;
  --gold-light: #e8c668;

  --text-primary: #eeeef2;
  --text-secondary: rgba(238, 238, 242, 0.65);
  --text-muted: rgba(238, 238, 242, 0.35);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(66, 184, 255, 0.15);

  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-hero: clamp(3.5rem, 9vw, 8rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: #0d0b1a;
  background-image:
    radial-gradient(ellipse 130% 65% at 50% -5%, rgba(127, 255, 79, 0.30), transparent 50%),
    radial-gradient(ellipse 80% 50% at 25% 5%, rgba(155, 95, 199, 0.25), transparent 45%),
    radial-gradient(ellipse 90% 55% at 80% 0%, rgba(127, 255, 79, 0.20), transparent 45%),
    radial-gradient(ellipse 60% 40% at 65% 10%, rgba(200, 127, 215, 0.15), transparent 40%),
    radial-gradient(ellipse 100% 45% at 40% 0%, rgba(200, 255, 160, 0.10), transparent 45%);
  background-attachment: fixed;
}

/* Aurora div: animated overlay for extra movement */
#aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-layer {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}
.aurora-layer-1 {
  background:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(127, 255, 79, 0.15), transparent 50%),
    radial-gradient(ellipse 70% 55% at 20% 5%, rgba(155, 95, 199, 0.12), transparent 45%);
  animation: auroraA 8s ease-in-out infinite alternate;
}
.aurora-layer-2 {
  background:
    radial-gradient(ellipse 100% 50% at 75% 0%, rgba(127, 255, 79, 0.10), transparent 50%),
    radial-gradient(ellipse 60% 45% at 60% 10%, rgba(200, 127, 215, 0.08), transparent 40%);
  animation: auroraB 12s ease-in-out infinite alternate;
}
.aurora-layer-3 {
  top: 0; left: 0; right: 0;
  height: 60vh;
  background: linear-gradient(180deg,
    rgba(127, 255, 79, 0.04) 0%,
    rgba(155, 95, 199, 0.03) 40%,
    transparent 100%);
  animation: auroraC 5s ease-in-out infinite alternate;
}
@keyframes auroraA {
  0% { opacity: 0.6; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(12px); }
}
@keyframes auroraB {
  0% { opacity: 0.4; transform: scaleX(1); }
  100% { opacity: 0.9; transform: scaleX(1.06); }
}
@keyframes auroraC {
  0% { opacity: 0.3; transform: translateX(-3%); }
  100% { opacity: 0.7; transform: translateX(3%); }
}
.section { position: relative; z-index: 1; }

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--aurora-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--aurora-green); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aurora-blue);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--fs-md);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========== QUIZ OVERLAY =========== */
#quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #161630 0%, var(--bg-primary) 70%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#quiz-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quiz-content {
  max-width: 520px;
  width: 100%;
  padding: var(--space-xl);
  text-align: center;
}

.quiz-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  animation: quizIconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

@keyframes quizIconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Quiz success celebration */
.quiz-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: successFadeIn 0.3s ease-out;
  overflow: hidden;
}

.quiz-success-overlay.fade-out {
  animation: successFadeOut 0.4s ease-in forwards;
}

.quiz-success-content {
  text-align: center;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}

.quiz-success-emoji {
  font-size: 5rem;
  margin-bottom: var(--space-md);
  animation: successEmojiBounce 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s both;
}

.quiz-success-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff88;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
  animation: successTextIn 0.5s ease-out 0.4s both;
}

.quiz-sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleExplode 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes successFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes successFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes successPop {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes successEmojiBounce {
  0% { transform: scale(0) rotate(-30deg); }
  60% { transform: scale(1.3) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes successTextIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes sparkleExplode {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

.quiz-pretitle {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.quiz-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--fs-lg), 3.5vw, var(--fs-2xl));
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.quiz-warning {
  font-size: var(--fs-sm);
  color: #e05555;
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

.quiz-start-btn,
.quiz-retry-btn {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: var(--text-primary);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}
.quiz-start-btn:hover,
.quiz-retry-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.quiz-question {
  animation: fade-up 0.5s ease forwards;
}

.quiz-progress {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.quiz-question-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-2xl));
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.quiz-option {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}
.quiz-option:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}
.quiz-option.correct {
  border-color: var(--aurora-green);
  background: rgba(61, 255, 160, 0.08);
  color: var(--aurora-green);
}
.quiz-option.wrong {
  border-color: #e05555;
  background: rgba(224, 85, 85, 0.08);
  color: #e05555;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.quiz-strikes {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: #e05555;
  font-weight: 500;
  min-height: 20px;
}

.quiz-fail {
  animation: fade-up 0.5s ease forwards;
}

.quiz-fail-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.quiz-fail-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.hidden {
  display: none !important;
}

/* =========== GIFT OVERLAY =========== */
#gift-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #161630 0%, var(--bg-primary) 70%);
  cursor: pointer;
}

.gift-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gift-pretitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.gift-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: var(--space-2xl);
}

/* Gift Box */
.gift-box-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-lg);
  cursor: pointer;
  transition: transform var(--transition-base);
}
.gift-box-wrapper:hover { transform: scale(1.06); }
.gift-box-wrapper:active { transform: scale(0.96); }

.gift-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.gift-box-body {
  width: 100%;
  height: 75%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(135deg, #9e1b32, #6b0f22);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(158, 27, 50, 0.25);
}
.gift-box-body::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.gift-box-body::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.gift-box-lid {
  width: 110%;
  height: 32%;
  position: absolute;
  top: 0;
  left: -5%;
  background: linear-gradient(135deg, #b52240, #801528);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transform-origin: left bottom;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
}
.gift-box-lid::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.gift-bow {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.gift-bow::before, .gift-bow::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.gift-bow::before { left: -30px; transform: rotate(-45deg); }
.gift-bow::after { right: -30px; transform: rotate(45deg); }

.gift-bow-center {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.gift-box-wrapper.opening .gift-box-lid {
  transform: rotate(-110deg);
}

.gift-hint {
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

/* =========== REVEAL =========== */
#reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050510;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
#reveal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#reveal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 136, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 40% at 25% 15%, rgba(139, 92, 246, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 45% at 75% 10%, rgba(0, 195, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 30% at 40% 5%, rgba(0, 255, 200, 0.15), transparent 50%);
  animation: aurora-dance 6s ease-in-out infinite alternate;
}
.reveal-aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 35% at 60% 0%, rgba(0, 255, 100, 0.12), transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 10%, rgba(100, 50, 255, 0.1), transparent 50%);
  animation: aurora-dance2 10s ease-in-out infinite alternate;
}
.reveal-aurora::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 136, 0.06) 0%,
    rgba(0, 200, 255, 0.04) 30%,
    rgba(139, 92, 246, 0.03) 60%,
    transparent 100%
  );
  animation: aurora-wave 4s ease-in-out infinite alternate;
}
@keyframes aurora-dance {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  100% { transform: translateY(15px) scaleX(1.08); opacity: 1; }
}
@keyframes aurora-dance2 {
  0% { transform: translateX(0) scaleY(1); opacity: 0.4; }
  100% { transform: translateX(20px) scaleY(1.1); opacity: 0.8; }
}
@keyframes aurora-wave {
  0% { opacity: 0.3; transform: translateX(-3%); }
  100% { opacity: 0.7; transform: translateX(3%); }
}

.reveal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl);
}

.reveal-icon {
  font-size: 5rem;
  margin-bottom: var(--space-md);
  animation: revealIconIn 0.8s ease-out 0.3s both, revealIconPulse 3s ease-in-out 1.5s infinite;
}

@keyframes revealIconIn {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes revealIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.reveal-year {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-md);
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.7s ease 0.3s forwards;
}

.reveal-destination {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-hero);
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
  margin: var(--space-md) 0;
  opacity: 0;
  transform: scale(0.9);
  animation: fade-up 0.9s ease 0.7s forwards;
}

.reveal-subtitle {
  font-size: clamp(var(--fs-sm), 2.5vw, var(--fs-md));
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.7s ease 1.3s forwards;
}

.reveal-cta {
  margin-top: var(--space-2xl);
  opacity: 0;
  animation: fade-up 0.7s ease 1.8s forwards;
}

.reveal-cta button {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: var(--text-primary);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}
.reveal-cta button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Particles */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-fly 2.5s ease-out forwards;
}
@keyframes particle-fly {
  0% { opacity: 0.8; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* =========== HERO =========== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 20, 0.2) 0%,
    rgba(11, 11, 20, 0.5) 50%,
    rgba(11, 11, 20, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(var(--fs-sm), 2vw, var(--fs-md));
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  letter-spacing: 0.02em;
}

/* Countdown */
.countdown-wrapper {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.countdown-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.countdown-separator {
  font-size: var(--fs-2xl);
  color: var(--text-muted);
  align-self: flex-start;
  line-height: 1;
  opacity: 0.2;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-indicator-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce-arrow 2.5s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 0.8; }
}

/* =========== ITINERARY =========== */
#itinerary {
  background: transparent;
}

.itinerary-grid {
  display: grid;
  gap: var(--space-3xl);
}

.day-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}
.day-card:hover {
  border-color: var(--border-accent);
}

.day-card:nth-child(even) {
  direction: rtl;
}
.day-card:nth-child(even) > * {
  direction: ltr;
}

.day-card-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.day-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.25s ease;
}
.day-card:hover .day-card-image img {
  transform: scale(1.04);
}

.day-number {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.day-card-content {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.day-date {
  font-size: var(--fs-xs);
  color: var(--aurora-blue);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.day-title {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.day-route-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-md);
  padding: 10px 14px;
  background: rgba(0, 195, 255, 0.04);
  border: 1px solid rgba(0, 195, 255, 0.1);
  border-radius: 8px;
}

a.route-stop {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a.route-stop:hover {
  color: var(--aurora-green);
  text-decoration-color: var(--aurora-green);
}

.route-arrow {
  font-size: 0.7rem;
  color: var(--aurora-green);
  opacity: 0.7;
}

.day-planb {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--space-sm);
  padding: 8px 12px;
  background: rgba(212, 169, 55, 0.08);
  border-left: 2px solid #d4a937;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

.day-hotel {
  margin-top: var(--space-md);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.day-hotel-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aurora-green);
  margin-bottom: 8px;
  font-weight: 600;
}
.day-hotel-option {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  line-height: 1.45;
}
.day-hotel-option:last-child {
  margin-bottom: 0;
}
.day-hotel-option strong {
  color: var(--text-primary);
}
.day-hotel-option span {
  opacity: 0.6;
  font-size: 0.7rem;
}
a.day-hotel-option {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 6px 8px;
  margin: 0 -8px 4px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
a.day-hotel-option:hover {
  background: rgba(0, 255, 136, 0.08);
}
a.day-hotel-option:last-child {
  margin-bottom: 0;
}
.day-cost {
  font-size: var(--fs-xs);
  color: var(--aurora-green);
  margin-top: 6px;
  opacity: 0.8;
}

/* Checklist progress */
.checklist-progress {
  margin-bottom: var(--space-xl);
  text-align: center;
}
.checklist-progress-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 8px;
}
.checklist-progress-bar {
  width: 100%;
  max-width: 400px;
  height: 6px;
  background: var(--border-subtle);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}
.checklist-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--aurora-green), var(--aurora-blue));
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* Booking links group */
.booking-links-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding-top: 6px;
}
.booking-links-group .booking-link {
  font-size: var(--fs-xs);
  border-top: none;
  padding-top: 0;
}

/* Hero parallax */
.hero-bg img {
  will-change: transform;
}

/* Countdown flip animation */
.countdown-number {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.countdown-number.flip {
  transform: rotateX(90deg) scale(0.8);
  opacity: 0;
}

.day-spots-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  margin-bottom: var(--space-md);
  scrollbar-width: none;
  touch-action: pan-x;
  flex-shrink: 0;
}
.day-spots-gallery::-webkit-scrollbar { display: none; }

.spot-thumb {
  flex: 0 0 auto;
  width: 140px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.spot-thumb.active {
  border-color: var(--aurora-blue);
}
.spot-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.spot-thumb:hover img { transform: scale(1.08); }

.spot-label {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 5px 4px;
  background: var(--bg-card);
  letter-spacing: 0.02em;
}

.day-mini-map {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.day-mini-map .leaflet-control-attribution {
  font-size: 8px !important;
  background: rgba(10,12,20,0.7) !important;
  color: var(--text-muted) !important;
}
.day-mini-map .leaflet-control-attribution a {
  color: var(--text-muted) !important;
}

.day-schedule {
  margin-bottom: var(--space-lg);
}

.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-md);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.schedule-item:last-child { border-bottom: none; }

.schedule-time {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--aurora-blue);
  white-space: nowrap;
  padding-top: 2px;
}

.schedule-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

.day-info {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.day-info-item {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* =========== MAP =========== */
#map-section {
  background: transparent;
}

.map-container {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.leaflet-popup-content-wrapper {
  background: rgba(18, 18, 35, 0.92) !important;
  border: 1px solid var(--border-accent) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg) !important;
}
.leaflet-popup-tip { background: rgba(18, 18, 35, 0.92) !important; }
.leaflet-popup-content {
  font-family: 'Inter', sans-serif !important;
  font-size: var(--fs-sm) !important;
  margin: 10px 14px !important;
}

.map-popup-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  margin-bottom: 2px;
}
.map-popup-desc {
  color: var(--text-secondary);
  font-size: var(--fs-xs);
}

/* Override Leaflet default divIcon styling */
.numbered-marker {
  background: none !important;
  border: none !important;
}

/* =========== BOOKINGS =========== */
#bookings {
  background: transparent;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base);
}
.booking-card:hover { border-color: var(--border-accent); }

.booking-card-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.booking-card-body {
  flex: 1;
}

.booking-card-detail {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}
.booking-card-detail strong {
  color: var(--text-primary);
  font-weight: 600;
}

.booking-link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--aurora-blue);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  transition: color var(--transition-base);
}
.booking-link:hover { color: var(--aurora-green); }

.booking-status {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #d4a937;
  letter-spacing: 0.04em;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}

/* =========== CHECKLIST =========== */
#checklist {
  background: transparent;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.checklist-category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.checklist-category-title {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: opacity var(--transition-fast);
  user-select: none;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item.checked { opacity: 0.4; }
.checklist-item.checked .checklist-text { text-decoration: line-through; }

.checklist-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.checklist-item.checked .checklist-checkbox {
  background: var(--aurora-green);
  border-color: var(--aurora-green);
}
.checklist-item.checked .checklist-checkbox::after {
  content: '✓';
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 700;
}

.checklist-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.checklist-note {
  font-size: 0.7rem;
  color: var(--gold);
  line-height: 1.6;
  margin-top: var(--space-md);
  padding: 10px 12px;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 6px;
}

/* =========== TIPS =========== */
#tips {
  background: transparent;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base);
}
.tip-card:hover {
  border-color: var(--border-accent);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.tip-title {
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.tip-list {
  list-style: none;
  padding: 0;
}

.tip-list li {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.tip-list li:last-child { border-bottom: none; }

.tip-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--aurora-green);
  font-weight: 700;
}

.tip-list li strong {
  color: var(--text-primary);
}

.tip-list li a {
  color: var(--aurora-blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 195, 255, 0.3);
  text-underline-offset: 2px;
}
.tip-list li a:hover {
  color: var(--aurora-green);
}

/* =========== WEATHER =========== */
#weather {
  background: transparent;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
}

.weather-day {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.weather-day-name {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.weather-icon {
  font-size: var(--fs-xl);
  margin-bottom: 4px;
}

.weather-temp {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1;
}

.weather-desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-top: 6px;
}

.weather-detail {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =========== BUDGET =========== */
#budget {
  background: transparent;
}

.budget-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.budget-table th,
.budget-table td {
  padding: 14px var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.budget-table th {
  background: rgba(66, 184, 255, 0.04);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.budget-table td {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.budget-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}
.budget-table td:last-child {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.budget-table tr:last-child td { border-bottom: none; }

.budget-table .budget-total {
  background: rgba(212, 168, 67, 0.04);
}
.budget-table .budget-total td {
  font-size: var(--fs-md);
  color: var(--gold);
  font-weight: 700;
  padding: var(--space-lg);
}

/* =========== GALLERY =========== */
#gallery { background: transparent; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-base);
}
.gallery-item:hover { border-color: var(--border-accent); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.gallery-placeholder-text {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =========== FOOTER =========== */
#footer {
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--text-secondary);
}

.footer-sub {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--space-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========== NAVIGATION =========== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(11, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
}
#main-nav.visible { transform: translateY(0); }

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
  letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-replay {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-left: 8px;
  margin-right: auto;
}
.nav-replay:hover {
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
  .day-card { grid-template-columns: 1fr; }
  .day-card:nth-child(even) { direction: ltr; }
  .day-card-image {
    min-height: 220px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .day-card-content { padding: var(--space-xl); }
  .schedule-item { grid-template-columns: 90px 1fr; gap: var(--space-sm); }
  .countdown-wrapper { gap: var(--space-sm); }
  .countdown-item { min-width: 55px; }
  .booking-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .weather-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-container { height: 320px; }
  .budget-table th:nth-child(2),
  .budget-table td:nth-child(2) { display: none; }
  .gift-box-wrapper { width: 130px; height: 130px; }
  .section { padding: var(--space-4xl) 0; }

  /* Mobile hamburger menu */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 11, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 1005;
    padding: var(--space-2xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: var(--fs-xl);
    font-family: 'Playfair Display', serif;
    padding: 14px 32px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    display: block;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text-primary);
  }
}

@media (max-width: 480px) {
  .weather-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--space-3xl) 0; }
}

/* ============================================================
   NEW FEATURES
   ============================================================ */

/* Itinerary day navigation */
.itinerary-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.itinerary-nav-btn {
  background: var(--card-bg);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s ease;
}
.itinerary-nav-btn:hover,
.itinerary-nav-btn.active {
  background: var(--aurora-green);
  color: #0a0a1a;
  border-color: var(--aurora-green);
}
.itinerary-nav-btn.print-btn {
  margin-left: auto;
}

/* ISK Converter */
.isk-converter {
  margin-top: var(--space-md);
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}
.isk-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.isk-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.isk-inputs input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--text-primary);
  font-size: var(--fs-sm);
  font-family: var(--font-sans);
  outline: none;
  width: 80px;
}
.isk-inputs input:focus {
  border-color: var(--aurora-green);
}
.isk-arrow {
  color: var(--aurora-green);
  font-size: 1.1rem;
}
.isk-rate {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 6px;
  display: block;
}

/* Aurora animated background on hero */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 200, 100, 0.04) 30%,
    rgba(0, 150, 255, 0.03) 60%,
    transparent 100%
  );
  animation: auroraShift 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes auroraShift {
  0% { opacity: 0.3; transform: translateX(-5%) scaleY(1); }
  50% { opacity: 0.7; transform: translateX(5%) scaleY(1.2); }
  100% { opacity: 0.4; transform: translateX(-3%) scaleY(0.9); }
}

/* Smoother scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Category checklist counters */
.checklist-category-count {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
  opacity: 0.7;
}

/* Easter egg */
.easter-egg-msg {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--aurora-purple);
  animation: fadeInUp 0.6s ease;
  text-align: center;
}
.easter-egg-msg.hidden {
  display: none;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Booking link */
.booking-link {
  display: inline-block;
  font-size: var(--fs-xs);
  color: var(--aurora-blue);
  text-decoration: none;
  padding-top: 6px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
  transition: color 0.2s;
}
.booking-link:hover {
  color: var(--aurora-green);
}

/* Print styles */
@media print {
  body { background: white; color: black; }
  #quiz-overlay, #gift-overlay, #reveal-overlay,
  #main-nav, .scroll-indicator, .hero-bg,
  .day-mini-map, #trip-map, .map-container,
  .itinerary-nav, .checklist-checkbox,
  .booking-link, .booking-status,
  .isk-converter, #footer, .weather-grid,
  .day-spots-gallery { display: none !important; }
  .section { padding: 10px 0; }
  .day-card { break-inside: avoid; page-break-inside: avoid; border: 1px solid #ddd; margin-bottom: 10px; }
  .day-card-image { display: none; }
  .hero-content { position: static; color: black; }
  .hero-title, .section-title, .day-title { color: black; }
  .day-schedule, .day-info { color: #333; }
  .countdown-wrapper { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
