/* ─── Entrance Overlay ──────────────────────────────────────────── */
.entrance-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #1a0010 0%, #3d0030 50%, #1a0010 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.entrance-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.entrance-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.e-blob-1 {
  width: 600px; height: 600px;
  background: rgba(232,53,122,0.35);
  top: -150px; right: -150px;
  animation: eblobdrift 8s ease-in-out infinite alternate;
}
.e-blob-2 {
  width: 400px; height: 400px;
  background: rgba(180,0,100,0.25);
  bottom: -100px; left: -100px;
  animation: eblobdrift 10s ease-in-out infinite alternate-reverse;
}
@keyframes eblobdrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}
.entrance-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  padding: 2rem;
  animation: efadein 1.2s ease forwards;
}
@keyframes efadein {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.entrance-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; color: rgba(255,180,210,0.7);
  text-transform: uppercase; font-family: var(--font-body);
}
.entrance-name {
  font-family: var(--font-display); font-size: clamp(3rem, 12vw, 6rem);
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 60px rgba(232,53,122,0.8)) drop-shadow(0 4px 30px rgba(0,0,0,0.4));
}
.entrance-tag {
  font-size: 0.85rem; color: rgba(255,180,210,0.85);
  font-family: var(--font-body); letter-spacing: 0.05em;
}
.entrance-line {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2rem); color: rgba(255,255,255,0.92);
  line-height: 1.5; margin: 0.5rem 0;
}
.entrance-btn {
  margin-top: 0.5rem;
  background: var(--pink); color: #fff; border: none; cursor: pointer;
  padding: 1rem 3rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 40px rgba(232,53,122,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: epulse 2.5s ease-in-out infinite;
}
.entrance-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 50px rgba(232,53,122,0.8);
}
@keyframes epulse {
  0%,100% { box-shadow: 0 8px 40px rgba(232,53,122,0.6); }
  50%      { box-shadow: 0 8px 60px rgba(232,53,122,0.9); }
}
/* ─── Oath overlay ──────────────────────────────────────────────── */
.oath-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(135deg, #1a0010 0%, #3d0030 50%, #1a0010 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.oath-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.oath-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  padding: 2rem;
  animation: efadein 0.8s ease forwards;
}
.oath-question {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.8rem, 6vw, 3rem); color: #fff;
  text-shadow: 0 0 40px rgba(232,53,122,0.6);
}
.oath-sub {
  font-size: 1rem; color: rgba(255,180,210,0.85);
  font-family: var(--font-body); line-height: 1.7; max-width: 320px;
}
.oath-skip {
  background: none; border: none; color: rgba(255,255,255,0.25);
  font-size: 0.72rem; font-family: var(--font-body);
  cursor: pointer; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.oath-skip:hover { color: rgba(255,255,255,0.45); }

/* ─── Scarcity banner ───────────────────────────────────────────── */

/* ─── Timed popup ───────────────────────────────────────────────── */
.timed-popup {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(20,0,12,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.timed-popup.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.timed-inner {
  position: relative; background: linear-gradient(145deg,#3d0030,#1a0010);
  border: 1px solid rgba(232,53,122,0.4);
  border-radius: 24px; padding: 2.5rem 2rem;
  text-align: center; max-width: 340px; width: 90%;
  box-shadow: 0 20px 80px rgba(232,53,122,0.4);
  animation: efadein 0.5s ease forwards;
}
.timed-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 1rem; cursor: pointer; transition: color 0.2s;
}
.timed-close:hover { color: rgba(255,255,255,0.7); }
.timed-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.timed-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: 2rem; color: #fff; margin-bottom: 0.5rem;
}
.timed-body {
  font-size: 0.9rem; color: rgba(255,180,210,0.85);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.timed-btn { width: 100%; }

/* ─── Calculator commitment ─────────────────────────────────────── */
.calc-commit {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; color: var(--pink);
  min-height: 1.4rem; margin-bottom: 0.2rem;
  animation: efadein 0.4s ease forwards;
}

/* ─── Tap hint ──────────────────────────────────────────────────── */
.tap-hint {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: rgba(232,53,122,0.85); color: #fff;
  font-size: 0.78rem; font-family: var(--font-body); font-weight: 500;
  padding: 0.5rem 1.3rem; border-radius: 50px;
  backdrop-filter: blur(8px); z-index: 500;
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: opacity 0.5s ease;
}
.tap-hint.show { opacity: 1; }

.entrance-sub {
  font-size: 0.9rem; color: rgba(255,180,210,0.8);
  font-family: var(--font-body); font-style: italic;
  max-width: 340px; line-height: 1.6;
}
.entrance-legal {
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em; margin-top: 0.5rem;
}

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

:root {
  --pink:        #e8357a;
  --pink-mid:    #e85595;
  --pink-light:  #f090b8;
  --pink-pale:   #f5d0e5;
  --pink-bg:     #fdf1f7;
  --pink-soft:   #f8e2f0;
  --white:       #fffafc;
  --dark:        #2e1020;
  --muted:       #b87898;
  --gold:        #c9a84c;
  --gold-light:  #f2d96b;
  --gold-pale:   rgba(201,168,76,0.12);
  --font-display: 'Pacifico', cursive;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       20px;
}

html { scroll-behavior: smooth; }

/* Prevent emojis from being italicised */
.no-italic { font-style: normal !important; }

/* Prevent emojis from being italicised — maps emoji unicode range to
   the normal (non-skewed) variant of the system emoji font */
@font-face {
  font-family: 'EmojiNoItalic';
  src: local('Apple Color Emoji'), local('Segoe UI Emoji'), local('Noto Color Emoji'), local('Segoe UI Symbol');
  font-style: italic;
  font-weight: normal;
  unicode-range:
    U+00A9, U+00AE, U+203C, U+2049, U+2122, U+2139, U+2194-2199,
    U+231A-231B, U+23CF, U+23E9-23F3, U+23F8-23FA, U+24C2,
    U+25AA-25AB, U+25B6, U+25C0, U+25FB-25FE,
    U+2600-2604, U+260E, U+2611, U+2614-2615, U+261D, U+2620,
    U+2622-2623, U+262A, U+262E-262F, U+2638-263A, U+2640, U+2642,
    U+2648-2653, U+265F-2660, U+2663, U+2665-2666, U+2668, U+267B,
    U+267E-267F, U+2692-2697, U+2699, U+269B-269C, U+26A0-26A1,
    U+26AA-26AB, U+26BD-26BE, U+26C4-26C5, U+26CE-26CF, U+26D1,
    U+26D3-26D4, U+26E9-26EA, U+26F0-26F5, U+26F7-26FA, U+26FD,
    U+2702, U+2705, U+2708-270D, U+270F, U+2712, U+2714, U+2716,
    U+271D, U+2721, U+2728, U+2733-2734, U+2744, U+2747, U+274C,
    U+274E, U+2753-2755, U+2757, U+2763-2764, U+2795-2797, U+27A1,
    U+27B0, U+27BF, U+2934-2935, U+2B05-2B07, U+2B1B-2B1C, U+2B50, U+2B55,
    U+1F000-1F02F, U+1F0A0-1F0FF, U+1F100-1F2FF, U+1F300-1F5FF,
    U+1F600-1F64F, U+1F680-1F6FF, U+1F700-1F7FF, U+1F800-1F8FF,
    U+1F900-1F9FF, U+1FA00-1FA6F, U+1FA70-1FAFF;
}

/* ─── Smooth theme fade transition ─────────────────────────────── */
body, .about, .packages, .rules, .footer,
.pkg-card, .pay-card, .rule-card,
.section-title, .section-sub, .about-p,
.fact-chip, .pkg-name, .pkg-list li, .pkg-price,
.pkg-note, .pkg-more, .pay-label, .pay-url,
.strip, .footer-links a, .footer-legal,
.about-blob-bg, .pay-top {
  transition:
    background-color 0.25s ease,
    color            0.25s ease,
    border-color     0.2s ease;
}
/* Nav excluded — it sits over the hero which never changes, causing a jarring flash */

html { overscroll-behavior: none; }
body { margin: 0; font-family: var(--font-body); background: var(--pink-bg); color: var(--dark); overflow-x: hidden; overscroll-behavior: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }


.container { max-width: 1080px; margin: 0 auto; padding: 0 2.5rem; }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.82rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-pink   { background: var(--pink); color: #fff; box-shadow: 0 6px 25px rgba(247,37,133,0.35); }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(247,37,133,0.45); }
.btn-ghost  { background: rgba(255,255,255,0.18); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-outline-pink { background: transparent; color: var(--pink); border: 1.5px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink-soft); }
.btn-white  { background: #fff; color: var(--pink); font-weight: 600; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-full   { display: block; width: 100%; text-align: center; }

/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(212, 46, 114, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: none;
  transition: opacity 1s ease, transform 1s ease;
}
.nav.nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
/* Pakistani flag gradient — reusable */
.pak-flag-text {
  background: linear-gradient(90deg, #01411C 0%, #fff 50%, #01411C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-pill {
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3) !important;
  transition: opacity 1s ease, transform 1s ease;
}
.nav-pill:hover { background: rgba(255,255,255,0.3) !important; }
.nav-pill.nav-pill-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}


/* ─── Blobs ────────────────────────────────────────────────────── */
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: rgba(255,100,180,0.45); top: -100px; right: -80px; }
.blob-2 { width: 350px; height: 350px; background: rgba(247,37,133,0.3);  bottom: 0;   left: -60px;  }
.blob-3 { width: 250px; height: 250px; background: rgba(201,168,76,0.18); top: 40%;    left: 30%;    }

/* ─── Deco elements ─────────────────────────────────────────────── */
.deco {
  position: absolute; pointer-events: none; z-index: 1;
  font-weight: 900; animation: floatDeco 6s ease-in-out infinite;
}
.deco-star   { font-size: 1.4rem; color: rgba(255,255,255,0.5); }
.deco-heart  { font-size: 1.8rem; color: rgba(255,255,255,0.35); }
.deco-dollar { font-size: 1.6rem; color: rgba(255,255,255,0.4); font-family: var(--font-display); }

@keyframes floatDeco {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(8deg); }
}
.deco:nth-child(2) { animation-delay: 1s; }
.deco:nth-child(3) { animation-delay: 2s; }
.deco:nth-child(4) { animation-delay: 0.5s; }
.deco:nth-child(5) { animation-delay: 1.8s; }
.deco:nth-child(6) { animation-delay: 3s; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 10rem 3rem 4rem;
  background: linear-gradient(135deg, #d42e72 0%, #e85592 45%, #f5a8c8 100%);
  overflow: hidden;
}
/* grain texture overlay for luxury editorial feel */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* hero text */
.hero-sticker {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.22); color: #fff;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.45rem 1rem;
  border-radius: 50px; border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px); margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-h1 {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, rgba(255,255,255,0.95) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}
@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.82);
  line-height: 1.7; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-pills span {
  background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* hero photos */
.hero-photos {
  position: relative; height: 560px;
}
.photo-frame {
  position: absolute; border-radius: 24px; overflow: hidden;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,168,76,0.4),
    0 0 40px rgba(201,168,76,0.18),
    0 0 80px rgba(201,168,76,0.08);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-back {
  width: 240px; height: 340px; top: 30px; right: 20px;
  transform: rotate(4deg);
  border: 3px solid rgba(201,168,76,0.4);
}
.frame-front {
  width: 280px; height: 400px; bottom: 10px; left: 0;
  transform: rotate(-3deg);
  border: 3px solid rgba(201,168,76,0.75);
}
.frame-sticker {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  font-family: var(--font-display); font-size: 0.7rem;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}

/* ─── Wave dividers ─────────────────────────────────────────────── */
.wave-divider { line-height: 0; margin-bottom: -1px; }
.wave-divider svg { display: block; width: 100%; }

/* ─── Section shared ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
  text-shadow: 0 0 18px rgba(201,168,76,0.4);
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--pink); }
.section-sub { font-size: 0.95rem; color: var(--muted); font-weight: 300; margin-bottom: 3rem; }

/* ─── About ────────────────────────────────────────────────────── */
.about { padding: 6rem 0; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}

.about-photo-wrap {
  position: relative; display: flex; justify-content: center;
}
.about-blob-bg {
  position: absolute; width: 380px; height: 420px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, rgba(201,168,76,0.12) 50%, var(--pink-soft) 100%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  33%     { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%     { border-radius: 55% 45% 60% 40% / 40% 60% 50% 50%; }
}
.about-photo {
  position: relative; z-index: 1;
  width: 300px; height: 420px; object-fit: cover; object-position: top;
  border-radius: 40% 40% 45% 45%;
  border: 3px solid rgba(201,168,76,0.6);
  box-shadow:
    0 20px 60px rgba(201,168,76,0.2),
    0 0 0 1px rgba(201,168,76,0.2),
    0 0 40px rgba(201,168,76,0.12);
}
.about-photo-tag {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  font-family: var(--font-display); font-size: 0.68rem;
  padding: 0.4rem 1.2rem; border-radius: 50px;
  box-shadow: 0 4px 15px rgba(247,37,133,0.4);
  z-index: 2; white-space: nowrap;
}

.about-p {
  font-size: 1rem; font-weight: 300; color: #666; line-height: 1.85;
  margin-bottom: 1rem;
}
.about-p em { font-style: italic; color: var(--pink); font-weight: 400; }
.about-facts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.fact-chip {
  background: var(--pink-soft); color: var(--pink);
  font-size: 0.75rem; font-weight: 500; padding: 0.4rem 1rem;
  border-radius: 50px; border: 1px solid var(--pink-pale);
}

/* ─── Packages ─────────────────────────────────────────────────── */
.packages { padding: 6rem 0; background: var(--pink-bg); text-align: center; }
.pkg-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-bottom: 2rem;
}

.pkg-card {
  background: #fff; border: 1.5px solid #f0d8e8;
  border-radius: 24px; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  text-align: left; position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(247,37,133,0.06);
}
.pkg-card .pkg-list { flex: 1; }
.pkg-card .btn { margin-top: auto; }
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(247,37,133,0.14);
  border-color: var(--pink-light);
}
.pkg-star {
  background: linear-gradient(145deg, #1a0010 0%, #4a0035 50%, #7a0050 100%);
  border: 1px solid rgba(201,168,76,0.4); color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.1);
}
.pkg-star:hover {
  box-shadow: 0 22px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.7);
}

.pkg-crown {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
  background: var(--gold); padding: 0.25rem 0.9rem; border-radius: 50px;
  text-shadow: none;
}
.pkg-icon  { font-size: 2.2rem; line-height: 1; height: 2.4rem; }
.pkg-name  { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: inherit; min-height: 2em; }
.pkg-price {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--pink); background: var(--pink-soft);
  padding: 0.3rem 0.9rem; border-radius: 50px; width: fit-content;
}
.pkg-star .pkg-price { color: #fff; background: rgba(255,255,255,0.25); }
.pkg-list { list-style: none; flex-grow: 1; margin: 0.3rem 0 1.2rem; }
.pkg-list li {
  font-size: 0.86rem; font-weight: 300; color: #777;
  padding: 0.45rem 0; border-bottom: 1px solid #f5eaf0;
  padding-left: 1.2rem; position: relative;
}
.pkg-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--pink-light); font-size: 0.55rem;
  top: 50%; transform: translateY(-50%);
}
.pkg-star .pkg-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.pkg-star .pkg-list li::before { color: rgba(255,255,255,0.6); }
.pkg-more {
  display: inline-block; font-size: 0.85rem; color: var(--pink);
  font-weight: 500; text-decoration: underline; text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.pkg-more:hover { opacity: 0.75; }

/* ─── Marquee strip ─────────────────────────────────────────────── */
.strip {
  background: #0d0008; padding: 1rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.strip-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.strip-track span {
  font-family: var(--font-display); font-size: 0.82rem;
  color: var(--gold-light); letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Tribute ──────────────────────────────────────────────────── */
.tribute {
  position: relative; padding: 7rem 0; overflow: hidden;
  background: linear-gradient(135deg, #1e0f18 0%, #2e1828 100%);
}
.blob-trib-1 {
  width: 400px; height: 400px;
  background: rgba(247,37,133,0.2); top: -100px; right: -80px;
}
.blob-trib-2 {
  width: 300px; height: 300px;
  background: rgba(255,80,160,0.15); bottom: -60px; left: -50px;
}

.trib-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
}
.trib-title { color: #fff !important; }
.trib-title em { color: var(--pink-light) !important; }
.tribute .section-eyebrow { color: var(--gold-light); }
.tribute .about-p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

.pay-cards { display: flex; flex-direction: column; gap: 1rem; }
.pay-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.3rem 1.8rem;
  cursor: pointer; transition: all 0.25s ease; position: relative;
}
.pay-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(201,168,76,0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
}
.pay-top { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.06); }
.pay-stripe { border-color: rgba(99,91,255,0.5); background: linear-gradient(135deg, rgba(99,91,255,0.08) 0%, rgba(168,85,247,0.08) 100%); }
.pay-stripe:hover { border-color: rgba(99,91,255,0.8); box-shadow: 0 4px 24px rgba(99,91,255,0.15); }
.pay-fave {
  position: absolute; top: -11px; left: 1.5rem;
  background: var(--pink); color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.28rem 0.9rem; border-radius: 50px;
  white-space: nowrap;
}
.pay-icon  { font-size: 2rem; line-height: 1; }
.pay-label { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: #fff; flex-grow: 1; }
.pay-url   { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.pay-card:hover .pay-url { color: var(--pink-light); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  position: relative; overflow: hidden;
  background: var(--dark); padding: 5rem 2rem 3rem; text-align: center;
  border-top: 1px solid rgba(255,105,180,0.15);
}
.footer-blob {
  position: absolute; width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(247,37,133,0.12) 0%, transparent 70%);
  top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-logo {
  font-family: var(--font-display); font-size: 2.5rem;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 30px rgba(255,128,192,0.3));
  background: linear-gradient(90deg, #01411C 0%, #fff 50%, #01411C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
.footer-flag { font-size: 0.85rem; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.footer-links {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-light); }
.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.15); margin-top: 0.4rem; }

/* ─── Mobile polaroid photos (hidden on desktop) ───────────────── */
.hero-mobile-photos {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 1rem 0.5rem 0;
  margin-bottom: 2.5rem;
}

.polaroid {
  position: relative;
  background: #fff;
  padding: 8px 8px 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  width: 155px;
  flex-shrink: 0;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
.pol-caption {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: #c06080;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.pol-left  { transform: rotate(-6deg) translateY(10px); z-index: 2; margin-right: -20px; }
.pol-right { transform: rotate(5deg)  translateY(25px); z-index: 1; }

/* washi tape strip */
.washi-tape {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 55px; height: 22px;
  border-radius: 3px;
  opacity: 0.82;
  z-index: 5;
}
.tape-pink  { background: repeating-linear-gradient(90deg, #ff80c0 0px, #ffb3d9 8px, #ff80c0 16px); }
.tape-white { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.9) 0px, rgba(255,200,230,0.7) 8px, rgba(255,255,255,0.9) 16px); }

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

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-photos         { display: none; }
  .about-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap    { margin-bottom: 0; }
  .pkg-grid            { grid-template-columns: 1fr; }
  .trib-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .nav                 { padding: 1rem 1.5rem; }
  .nav-links a:not(.nav-pill) { display: none; }
  .hero                { padding: 6rem 1.5rem 4rem; }
  .about               { padding: 4rem 0; }
  .packages            { padding: 4rem 0; }
  .tribute             { padding: 4rem 0; }
}

@media (max-width: 480px) {
  /* Nav */
  .nav-logo            { font-size: 1rem; }

  /* Hero — full column stack */
  .hero                { padding: 5rem 1.2rem 3rem; min-height: auto; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .hero-mobile-photos  { display: flex; }
  .hero-inner          { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-sticker        { margin: 0 auto 1rem; }
  .hero-pills          { justify-content: center; }
  .hero-btns           { flex-direction: column; align-items: center; }
  .hero-btns .btn      { width: 100%; }
  .hero-sticker        { font-size: 0.65rem; }
  .hero-sub            { font-size: 0.9rem; }
  .hero-btns           { flex-direction: column; }
  .hero-btns .btn      { width: 100%; justify-content: center; }
  .hero-pills          { gap: 0.4rem; }
  .hero-pills span     { font-size: 0.65rem; }

  /* About */
  .about-blob-bg       { width: 280px; height: 320px; }
  .about-photo         { width: 230px; height: 330px; }
  .about-copy          { padding: 0 0.5rem; }
  .about-p             { font-size: 0.95rem; }
  .fact-chip           { font-size: 0.7rem; }

  /* Packages */
  .pkg-card            { padding: 2rem 1.5rem; }
  .section-title       { font-size: 1.7rem; }

  /* Marquee */
  .strip               { padding: 0.8rem 0; }
  .strip-track span    { font-size: 0.75rem; }

  /* Tribute */
  .trib-copy           { text-align: center; }
  .trib-copy .btn      { width: 100%; justify-content: center; }
  .pay-card            { padding: 1.2rem 1.2rem; gap: 1rem; }
  .pay-label           { font-size: 1rem; }
  .pay-url             { font-size: 0.68rem; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* Footer */
  .footer              { padding: 3rem 1.5rem 2rem; }
  .footer-logo         { font-size: 2rem; }
  .footer-links        { gap: 1.2rem; }
  .footer-links a      { font-size: 0.7rem; }

  /* Container */
  .container           { padding: 0 1.2rem; }
}

/* ─── Worth Calculator ──────────────────────────────────────────── */
.calc-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}
[data-theme="dark"] .calc-section { background: #241018; }

.calc-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--pink-bg);
  border: 1.5px solid var(--pink-pale);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(247,37,133,0.1);
}
[data-theme="dark"] .calc-card { background: #2e1825; border-color: rgba(247,37,133,0.2); }

.calc-amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.calc-currency {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
}
.calc-amount {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  min-width: 3ch;
  transition: color 0.2s;
}

/* Slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--pink) var(--pct, 4%), var(--pink-pale) var(--pct, 4%));
  outline: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(247,37,133,0.2);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(247,37,133,0.25);
}

.calc-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.calc-verdict {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1.5px solid var(--pink-pale);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  min-height: 90px;
  transition: border-color 0.3s;
}
[data-theme="dark"] .calc-verdict { background: #241018; border-color: rgba(247,37,133,0.2); }

.verdict-emoji {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.calc-slider:active ~ .calc-marks + .calc-verdict .verdict-emoji,
.verdict-emoji:hover { transform: scale(1.2); }

.verdict-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
[data-theme="dark"] .verdict-title { color: #fff; }

.verdict-sub {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

.calc-btn { width: 100%; justify-content: center; }

/* ─── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ─── Click burst particles ─────────────────────────────────────── */
.burst-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: burst-fly ease-out forwards;
  user-select: none;
  line-height: 1;
}
@keyframes burst-fly {
  0%   { transform: translate(-50%,-50%) translate(0,0) scale(1);   opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(-50%,-50%) translate(var(--dx),var(--dy)) scale(0.3); opacity: 0; }
}


/* ─── Dark Mode ────────────────────────────────────────────────── */
/* ─── Light mode explicit resets (when toggled back from dark) ─── */
:root:not([data-theme="dark"]) body         { background: #fdf1f7; color: #3a1828; }
:root:not([data-theme="dark"]) .about       { background: #fff; }
:root:not([data-theme="dark"]) .packages    { background: #fff5fa; }
:root:not([data-theme="dark"]) .pkg-card    { background: #fff; border-color: #f0d0e0; }
:root:not([data-theme="dark"]) .pkg-name    { color: #2e1020; }
:root:not([data-theme="dark"]) .pkg-list li { color: #777; border-color: #f5eaf0; }
:root:not([data-theme="dark"]) .pkg-price   { background: #ffe0f0; color: #f72585; }
:root:not([data-theme="dark"]) .section-title { color: #2e1020; }
:root:not([data-theme="dark"]) .section-sub   { color: #9e4d72; }
:root:not([data-theme="dark"]) .about-p        { color: #666; }
:root:not([data-theme="dark"]) .fact-chip      { background: #ffe0f0; color: #f72585; border-color: #ffd6e8; }
:root:not([data-theme="dark"]) .rules          { background: #fff; }
:root:not([data-theme="dark"]) .rule-card      { background: #fff5fa; border-color: #f0d0e0; }
:root:not([data-theme="dark"]) .rule-card h3   { color: #2e1020; }
:root:not([data-theme="dark"]) .rule-card p    { color: #9e4d72; }
:root:not([data-theme="dark"]) .strip          { background: #0d0008; }
/* pay-card stays dark — tribute section always has dark background */

/* ─── Dark mode base ───────────────────────────────────────────── */
[data-theme="dark"] body               { background: #1a0d14; color: #f0d8e6; }
[data-theme="dark"] .about             { background: #241018; }
[data-theme="dark"] .about-p           { color: #d4a0b8; }
[data-theme="dark"] .section-title     { color: #fff; }
[data-theme="dark"] .section-sub       { color: #c090a8; }
[data-theme="dark"] .fact-chip         { background: rgba(247,37,133,0.15); color: #ff80c0; border-color: rgba(247,37,133,0.25); }
[data-theme="dark"] .packages          { background: #1a0d14; }
[data-theme="dark"] .pkg-card          { background: #241018; border-color: rgba(247,37,133,0.2); }
[data-theme="dark"] .pkg-name          { color: #fff; }
[data-theme="dark"] .pkg-list li       { color: #c090a8; border-color: rgba(247,37,133,0.1); }
[data-theme="dark"] .pkg-price         { background: rgba(247,37,133,0.18); color: #ff80c0; }
[data-theme="dark"] .pkg-note          { color: #a06080; }
[data-theme="dark"] .pkg-more          { color: #ff80c0; }
[data-theme="dark"] .rules             { background: #241018; }
[data-theme="dark"] .rule-card         { background: #2e1825; border-color: rgba(247,37,133,0.15); }
[data-theme="dark"] .rule-card h3      { color: #fff; }
[data-theme="dark"] .rule-card p       { color: #c090a8; }
[data-theme="dark"] .tribute-sub       { color: #c090a8; }
[data-theme="dark"] .polaroid          { background: #fff; }
[data-theme="dark"] .pol-caption       { color: #c06080; }
[data-theme="dark"] .footer            { background: #14090f; }
[data-theme="dark"] .pay-card          { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .pay-url           { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .pay-top           { background: rgba(247,37,133,0.12); border-color: #f72585; }
[data-theme="dark"] .strip             { background: #a0005a; }
[data-theme="dark"] .about-blob-bg     { background: linear-gradient(135deg, rgba(247,37,133,0.25), rgba(255,80,160,0.15)); }

/* ─── Floating Ambient Hearts ───────────────────────────────────── */
.float-heart {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  bottom: -70px;
  animation: float-up linear forwards;
  user-select: none;
  line-height: 1;
  opacity: 0.35;
}
@keyframes float-up {
  0%   { transform: translateY(0)       rotate(-8deg);  opacity: 0.4; }
  20%  {                                                 opacity: 0.35; }
  80%  {                                                 opacity: 0.3; }
  100% { transform: translateY(-115vh)  rotate(12deg);  opacity: 0; }
}



/* ─── Sticky Tribute Bar (mobile only) ──────────────────────────── */
/* ─── Scarcity Bar ──────────────────────────────────────────────── */
.scarcity-bar {
  position: fixed; bottom: 1.5rem; left: 50%; z-index: 98;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
  background: rgba(212, 46, 114, 0.3);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #fff; text-align: center;
  font-size: 0.68rem; font-family: var(--font-body);
  letter-spacing: 0.04em; padding: 0.5rem 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  white-space: nowrap;
}
.scarcity-bar.scarcity-visible {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.scarcity-text { line-height: 1; }
.scarcity-bar strong { color: var(--pink-light); font-weight: 700; }
.scarcity-bar a { color: var(--pink-light); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(232,53,122,0.5); transition: color 0.2s; }
.scarcity-bar a:hover { color: #fff; }
.scarcity-dot {
  display: inline-block; width: 6px; height: 6px; flex-shrink: 0;
  background: var(--pink); border-radius: 50%;
  box-shadow: 0 0 6px rgba(232,53,122,0.9);
  animation: scarcitypulse 1.2s ease-in-out infinite;
}
@keyframes scarcitypulse {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(232,53,122,0.9); }
  50%      { opacity: 0.5; transform: scale(0.6); box-shadow: 0 0 2px rgba(232,53,122,0.4); }
}

/* ─── Money Rain Overlay ─────────────────────────────────────────── */
.rain-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(6, 0, 4, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rain-overlay.rain-show { opacity: 1; pointer-events: all; }

.rain-msg {
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
  animation: rain-msg-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes rain-msg-pop {
  from { transform: scale(0.75); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.rain-big {
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  animation: rain-spin 0.6s ease both;
}
@keyframes rain-spin {
  from { transform: rotate(-15deg) scale(0.5); }
  to   { transform: rotate(0deg)   scale(1); }
}
.rain-who {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: #ff80c0;
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}
.rain-action {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}
.rain-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
}

.rain-coin {
  position: absolute;
  top: -3rem;
  line-height: 1;
  pointer-events: none;
  animation: coin-fall linear forwards;
}
@keyframes coin-fall {
  0%   { transform: translateY(0)      rotate(0deg);   opacity: 1; }
  85%  { opacity: 0.9; }
  100% { transform: translateY(115vh)  rotate(380deg); opacity: 0; }
}

/* ─── Whisper DM Notifications ──────────────────────────────────── */
.whisper-toast {
  position: fixed;
  bottom: 4rem;
  left: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(30, 10, 20, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(247, 37, 133, 0.3);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  max-width: 320px;
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(247, 37, 133, 0.15);
}
.whisper-toast.whisper-show {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.whisper-avatar {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(247, 37, 133, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whisper-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.whisper-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pink-light);
  letter-spacing: 0.04em;
}
.whisper-typing {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  animation: whisper-blink 1s ease-in-out infinite;
}
@keyframes whisper-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.whisper-msg {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 300;
}
