@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #07070f;
  --surface: #0e0e1c;
  --surface2: #13132a;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.18);
  --text: #f0f0ff;
  --muted: #6b6b8a;
  --accent: #ffd93d;
  --radius: 20px;
}

html { scroll-behavior: smooth; }

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ===== AMBIENT BG ===== */
.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
body::before {
  content: '';
  position: fixed;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(120,60,255,0.15) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: drift1 12s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,80,60,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: drift2 15s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(60px, 40px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(-40px, -60px) scale(1.15); } }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(7,7,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,150,0,0.3);
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }

.change-region-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.change-region-btn:hover {
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px 70px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 7px; height: 7px;
  background: #6bcb77;
  border-radius: 50%;
  box-shadow: 0 0 8px #6bcb77;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 22px;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 38%, #6bcb77 68%, #4d96ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 500;
}

/* Festival pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: default;
}
.hero-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* CTA */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  color: #000;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 8px 32px rgba(255,150,0,0.3);
  letter-spacing: 0.2px;
}
.hero-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255,150,0,0.4);
  opacity: 0.95;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-avatars {
  display: flex;
  gap: -4px;
}
.hero-avatars span {
  font-size: 1.3rem;
  margin-right: -4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.hero-proof-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.hero-scroll-hint {
  color: rgba(255,255,255,0.18);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ===== FESTIVALS SECTION ===== */
.festivals-section {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.festivals-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.region-header-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.region-header h2 { font-size: 1.3rem; font-weight: 800; }
.festival-count {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== FESTIVAL CARDS ===== */
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.festival-card {
  position: relative;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  border-radius: var(--radius);
  padding: 28px 16px 22px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  animation: cardIn 0.4s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.festival-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.festival-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.festival-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.festival-card .emoji {
  font-size: 3rem; line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  position: relative; z-index: 1;
}
.festival-card .fname {
  font-size: 0.92rem; font-weight: 700;
  position: relative; z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.festival-card .fdate {
  font-size: 0.68rem; opacity: 0.8; font-weight: 600;
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.22);
  padding: 3px 10px; border-radius: 20px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  position: relative; z-index: 1;
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent);
}
.how-wrap { max-width: 900px; margin: 0 auto; }
.section-heading {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
  letter-spacing: -2px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ===== STATS STRIP ===== */
.stats-strip {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd93d, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1;
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.footer-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.footer-langs {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 28px;
  opacity: 0.7;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); opacity: 0.6; }

/* ===== REGION GRID (modal) ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.region-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.region-card:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.region-card .flag { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.region-card .rname { font-size: 0.88rem; font-weight: 700; }
.region-card .rlang { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: #0f0f1e;
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 100%; max-width: 660px;
  max-height: 82vh; overflow-y: auto;
  padding: 28px;
  animation: slideUp 0.25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; font-size: 1.1rem; font-weight: 800;
}
.modal-close {
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  color: var(--text); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 0.85rem;
  transition: background 0.2s; font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }

/* ===== WISH PAGE ===== */
.wish-page {
  position: relative; z-index: 1;
  min-height: calc(100vh - 62px);
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 16px 160px;
}
.back-btn {
  align-self: flex-start;
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  margin-bottom: 24px; max-width: 500px; width: 100%;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--text); }

.received-banner {
  background: linear-gradient(90deg, #6bcb77, #4d96ff);
  color: #000; padding: 14px 22px; border-radius: 14px;
  margin-bottom: 20px; font-weight: 700; font-size: 0.95rem;
  max-width: 500px; width: 100%; text-align: center;
  box-shadow: 0 8px 28px rgba(75,200,120,0.3);
  animation: bannerIn 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes bannerIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.wish-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 28px;
  max-width: 500px; width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: relative; overflow: hidden;
}
.wish-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #a855f7);
}
.wish-card .fest-emoji {
  font-size: 4.5rem; margin-bottom: 12px; display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  animation: emojiFloat 3s ease-in-out infinite;
}
@keyframes emojiFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.wish-card h2 { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; margin-bottom: 4px; }
.wish-card .region-tag { font-size: 0.78rem; color: var(--muted); margin-bottom: 22px; display: block; font-weight: 500; }

.wish-message {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  margin: 16px 0; font-size: 1.05rem;
  line-height: 1.85; color: #ccc;
  min-height: 120px; text-align: left;
  transition: opacity 0.4s; position: relative;
}
.wish-message::before {
  content: '"';
  position: absolute; top: 8px; left: 14px;
  font-size: 3.5rem; color: rgba(255,255,255,0.04);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.wish-message .sender-name   { color: #ffd93d; font-weight: 700; }
.wish-message .receiver-name { color: #6bcb77; font-weight: 700; }

.name-section { margin: 20px 0 0; text-align: left; }
.name-section label {
  display: block; font-size: 0.78rem; color: var(--muted);
  margin-bottom: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.name-section input {
  width: 100%; padding: 14px 18px;
  border-radius: 12px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.05); color: var(--text);
  font-size: 1rem; font-family: inherit; outline: none;
  transition: border 0.2s, background 0.2s;
}
.name-section input:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.name-section input::placeholder { color: #2e2e4a; }

.btn-generate {
  width: 100%; padding: 15px; border-radius: 12px; border: none;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  color: #000; font-size: 1rem; font-weight: 800;
  font-family: inherit; cursor: pointer; margin-top: 12px;
  transition: opacity 0.2s, transform 0.15s; letter-spacing: 0.2px;
}
.btn-generate:hover { opacity: 0.9; transform: scale(1.01); }
.btn-generate:active { transform: scale(0.99); }

/* Also try section */
.also-try {
  margin-top: 24px; text-align: center;
  max-width: 500px; width: 100%;
}
.also-try p { color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; }
.also-try-btn {
  display: inline-block;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); padding: 10px 20px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.also-try-btn:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.06); }

/* Wish page footer */
.wish-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 20px;
  font-size: 0.8rem; color: var(--muted);
  border-top: 1px solid var(--border);
}
.wish-footer a { color: var(--muted); text-decoration: none; font-weight: 700; }
.wish-footer a:hover { color: var(--text); }

/* ===== STICKY SHARE BAR ===== */
.sticky-share {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 20px;
  display: flex; gap: 10px;
  justify-content: center; align-items: center;
  border-top: 1px solid var(--border);
  z-index: 100; flex-wrap: wrap;
  animation: shareBarIn 0.3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes shareBarIn { from { transform: translateY(100%); } to { transform: translateY(0); } }

.btn-share-app {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  white-space: nowrap; color: #fff; letter-spacing: 0.1px;
}
.btn-share-app:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.btn-share-app.dark-text { color: #1a1a1a; }

.btn-copy {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); color: var(--text);
  padding: 12px 18px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; font-family: inherit;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-copy:hover { background: rgba(255,255,255,0.13); border-color: var(--border-hover); }

/* ===== UTILS ===== */
.hidden { display: none !important; }

#confetti-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 999;
}

/* ===== RTL ===== */
[dir="rtl"] .wish-message { text-align: right; }
[dir="rtl"] .name-section { text-align: right; }
[dir="rtl"] .back-btn { align-self: flex-end; }
[dir="rtl"] .wish-message::before { left: auto; right: 14px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #1e1e38; border-radius: 4px; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 24px; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Navbar */
  .navbar { padding: 12px 16px; }
  .nav-logo-text { font-size: 1rem; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 0.9rem; border-radius: 8px; }
  .change-region-btn { padding: 7px 12px; font-size: 0.78rem; gap: 4px; }
  .change-region-btn #currentRegionLabel { display: none; }

  /* Hero */
  .hero { padding: 52px 16px 40px; width: 100%; }
  .hero-inner { width: 100%; align-items: center; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -1px; }
  .hero-sub { font-size: 0.92rem; max-width: 100%; }
  .hero-pills { gap: 7px; justify-content: center; width: 100%; }
  .hero-pill { font-size: 0.72rem; padding: 5px 11px; }
  .hero-cta-wrap { width: 100%; align-items: center; }
  .hero-cta-btn { font-size: 0.92rem; padding: 13px 26px; width: 100%; max-width: 280px; text-align: center; }
  .hero-social-proof { flex-direction: column; gap: 6px; align-items: center; }
  .hero-proof-text { text-align: center; }
  .hero-eyebrow { font-size: 0.72rem; padding: 6px 14px; text-align: center; }

  /* Festivals */
  .festivals-section { width: 100%; }
  .festivals-wrap { padding: 0 14px; width: 100%; }
  .festivals-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
  .festival-card { padding: 20px 10px 16px; border-radius: 14px; width: 100%; }
  .festival-card .emoji { font-size: 2.2rem; }
  .festival-card .fname { font-size: 0.82rem; }
  .festival-card .fdate { font-size: 0.65rem; }
  .region-header { flex-wrap: wrap; gap: 8px; }

  /* How it works */
  .how-section { padding: 56px 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-heading { font-size: 1.5rem; margin-bottom: 28px; }

  /* Stats */
  .stats-strip { padding: 28px 16px; gap: 0; flex-wrap: wrap; }
  .stat-item { padding: 10px 20px; }
  .stat-num { font-size: 1.8rem; }
  .stat-divider { display: none; }

  /* About */
  .about-section { padding: 56px 16px; }
  .about-title { font-size: 1.7rem; }
  .about-desc { font-size: 0.88rem; }

  /* Testimonials */
  .testimonials-section { padding: 56px 16px; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Modal */
  .modal-box { padding: 20px 14px; border-radius: 18px; }
  .regions-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .region-card { padding: 14px 8px; border-radius: 12px; }
  .region-card .flag { font-size: 1.9rem; }
  .region-card .rname { font-size: 0.78rem; }
  .region-card .rlang { font-size: 0.65rem; }

  /* Wish page */
  .wish-page { padding: 20px 12px 140px; }
  .wish-card { padding: 24px 16px; border-radius: 18px; }
  .back-btn { font-size: 0.82rem; margin-bottom: 16px; }
  .wish-result-page { max-width: 100%; }

  /* Wish result */
  .wr-sender-wrap { padding: 28px 16px 22px; border-radius: 18px 18px 0 0; }
  .wr-sender-name { font-size: clamp(2rem, 13vw, 3rem); letter-spacing: -1.5px; }
  .wr-fest-wrap { padding: 20px 16px 18px; }
  .wr-greeting { font-size: 1.3rem; }
  .wr-year { font-size: 2rem; }
  .wr-body { padding: 0 16px 22px; font-size: 0.92rem; }
  .wr-receiver-section { padding: 16px 16px 20px; }

  /* Share bar */
  .sticky-share { padding: 10px 10px; gap: 7px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .btn-share-app { padding: 10px 14px; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }
  .btn-copy { padding: 10px 12px; font-size: 0.8rem; flex-shrink: 0; }

  /* Footer */
  .footer { padding: 40px 16px 28px; }
  .footer-langs { font-size: 0.72rem; }
}

/* Small mobile */
@media (max-width: 380px) {
  .festivals-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .festival-card .emoji { font-size: 1.9rem; }
  .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-share { gap: 6px; }
  .btn-share-app { padding: 9px 11px; font-size: 0.75rem; }
}

/* ===== WISH CARD RESULT ===== */
.wish-card-result {
  margin: 20px 0 0;
  text-align: center;
  animation: wishReveal 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes wishReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wish-to-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.wish-receiver-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 30%, #6bcb77 60%, #4d96ff 85%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  text-shadow: none;
  /* 3D effect via filter */
  filter: drop-shadow(0 4px 0 rgba(255,100,100,0.25)) drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.wish-greeting {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.wish-body {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  text-align: left;
  margin-bottom: 18px;
  white-space: pre-line;
}

.wish-from {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 4px;
}
.wish-from-dash {
  color: var(--muted);
  font-size: 1.1rem;
}
.wish-from-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd93d, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== WISH RESULT PAGE ===== */
.wish-result-page {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: wishReveal 0.5s cubic-bezier(.34,1.56,.64,1) both;
}

/* Sender naam block */
.wr-sender-wrap {
  width: 100%;
  text-align: center;
  padding: 36px 20px 28px;
  background: linear-gradient(180deg, rgba(120,60,255,0.08) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}
.wr-sender-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.wr-sender-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 10vw, 4rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 28%, #6bcb77 55%, #4d96ff 78%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  filter: drop-shadow(0 6px 0 rgba(255,100,100,0.2)) drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}

/* Festival + greeting block */
.wr-fest-wrap {
  width: 100%;
  text-align: center;
  padding: 28px 20px 24px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.wr-fest-emoji {
  font-size: 3.5rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  animation: emojiFloat 3s ease-in-out infinite;
}
.wr-wishing {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.wr-greeting {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.wr-year {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-top: 6px;
  background: linear-gradient(135deg, #4d96ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content body */
.wr-body {
  width: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 24px 28px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: pre-line;
}

/* Receiver input (when opened via link) */
.wr-receiver-section {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 0 24px 24px;
  padding: 20px 24px 24px;
  text-align: left;
}
.wr-receiver-section label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.wr-receiver-section input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
}
.wr-receiver-section input:focus { border-color: var(--accent); }

/* Bottom rounded cap */
.wr-body:last-child,
.wr-body + .wr-receiver-section:last-child {
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid var(--border);
}
.wr-body {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 24px 24px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative; z-index: 1;
  padding: 80px 24px;
}
.about-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.about-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-features { display: flex; flex-direction: column; gap: 12px; }
.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.about-feat span:first-child { font-size: 1.1rem; flex-shrink: 0; }

/* About visual card */
.about-visual {
  display: flex;
  justify-content: center;
}
.about-card-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about-card-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #a855f7);
}
.acp-from {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 6px;
}
.acp-name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px;
}
.acp-emoji { font-size: 2.2rem; margin-bottom: 8px; }
.acp-wishing {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 4px;
}
.acp-greeting {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--accent);
}
.acp-year {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, #4d96ff, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative; z-index: 1;
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);
}
.testi-wrap { max-width: 960px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-stars { color: #ffd93d; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { font-size: 1.6rem; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-loc { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ===== SEARCH BAR ===== */
.search-wrap {
  margin-bottom: 20px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color 0.2s, background 0.2s;
}
.search-box:focus-within {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}
.search-icon {
  color: var(--muted);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  padding: 14px 0;
}
.search-box input::placeholder { color: #3a3a5a; }
.search-clear {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--muted);
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.search-clear:hover { background: rgba(255,255,255,0.15); color: var(--text); }

.search-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
}
.search-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.search-empty p { font-size: 0.9rem; }
