/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FCF8F2;
  --gold: #C9A84C;
  --gold-soft: rgba(201,168,76,0.3);
  --gold-dark: #A07830;
  --rose: #B3262D;
  --rose-deep: #6B1F2A;
  --maroon: #5C0F14;
  --ink: #3a3028;
  --sage-deep: #4A5D3A;
  --amber: #92700C;
  --transition-elegant: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

.font-script { font-family: 'Pinyon Script', cursive; }
.font-cinzel { font-family: 'Cinzel', serif; }
.font-cursive { font-family: 'Alex Brush', cursive; }

/* ============ FALLING PETALS ============ */
.petals-container {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 50;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -60px;
  animation: float-petal linear infinite;
}

.petal img {
  width: var(--size, 30px);
  height: var(--size, 30px);
  object-fit: contain;
}

.petal .petal-emoji {
  font-size: calc(var(--size, 30px) * 0.55);
  display: inline-block;
}

@keyframes float-petal {
  0% { transform: translateY(-10vh) translate(0) rotate(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  to { transform: translateY(110vh) translate(40px) rotate(360deg); opacity: 0; }
}

/* ============ ENVELOPE SCREEN ============ */
.envelope-screen {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 1000;
  background: var(--cream);
  transition: opacity 0.8s var(--transition-elegant),
              transform 0.8s var(--transition-elegant);
}

.envelope-screen.opened {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.envelope-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.envelope-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(252,248,242,0.2),
    transparent 50%,
    rgba(252,248,242,0.4)
  );
  pointer-events: none;
}

.deco-emoji {
  position: absolute;
  font-size: 28px;
  opacity: 0.7;
  pointer-events: none;
  animation: drift 6s ease-in-out infinite;
}

.deco-lotus { top: 24px; left: 24px; }
.deco-leaf { bottom: 32px; left: 40px; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

.envelope-center {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  max-width: 420px; width: 100%;
  text-align: center;
  padding: 0 24px;
}

/* Ganesha on envelope screen */
.ganesh-wrap {
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.ganesh-wrap.hidden {
  opacity: 0;
  transform: scale(0.95);
}

.ganesh-envelope {
  width: 80px; height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  animation: shimmer 3s ease-in-out infinite;
}

@media (min-width: 640px) {
  .ganesh-envelope { width: 96px; height: 96px; }
}

@keyframes shimmer {
  0%, 100% { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
  50% { filter: drop-shadow(0 4px 16px rgba(201,168,76,0.4)); }
}

/* Envelope button */
.envelope-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  padding: 0;
  transition: transform 0.5s ease;
  perspective: 1000px;
}

.envelope-btn:hover { transform: scale(1.05); }
.envelope-btn:active { transform: scale(0.95); }

/* Opening animation - matches original */
.envelope-btn.animate-open {
  animation: envelope-open 1s var(--transition-elegant) forwards;
}

@keyframes envelope-open {
  0% { transform: scale(1) rotateX(0); }
  50% { transform: scale(1.05) rotateX(-15deg); }
  to { transform: scale(1.4) rotateX(-90deg); opacity: 0; }
}

.envelope-img {
  width: 280px; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (min-width: 640px) { .envelope-img { width: 340px; } }
@media (min-width: 768px) { .envelope-img { width: 380px; } }

.seal-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.seal-img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.5s ease;
}

.envelope-btn:hover .seal-img { transform: rotate(12deg); }

@media (min-width: 640px) {
  .seal-img { width: 64px; height: 64px; }
}

/* Envelope text */
.envelope-text {
  margin-top: 40px;
  text-align: center;
  transition: all 0.5s ease;
}

.envelope-text.hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.invited-title {
  font-family: 'Cinzel', serif;
  font-size: 28px; font-weight: 600;
  color: var(--rose-deep);
  letter-spacing: 0.15em;
}

@media (min-width: 640px) {
  .invited-title { font-size: 32px; }
}

.invited-sub {
  margin-top: 12px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(58,48,40,0.8);
  font-size: 16px;
}

@media (min-width: 640px) {
  .invited-sub { font-size: 18px; }
}

/* ============ MAIN CONTENT ============ */
.main-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.main-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 48px 24px;
  background: var(--cream);
  background-image: url('assets/g-welcome-bg-BCda9f2G.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(252,248,242,0.1);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 640px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-top: 48px;
}

.ganesh-area {
  margin-bottom: 16px;
  animation: fade-up 1s var(--transition-elegant) both;
}

.ganesh-hero {
  width: 96px; height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  animation: shimmer 3s ease-in-out infinite;
  margin: 0 auto;
  display: block;
}

.ganesh-mantra {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--maroon); font-weight: 700;
  background: rgba(252,248,242,0.9);
  border: 1px solid var(--gold-soft);
  padding: 6px 24px; border-radius: 999px;
  margin-top: 12px;
  display: inline-block;
}

.sloka-card {
  max-width: 480px;
  background: rgba(252,248,242,0.95);
  border: 2px solid var(--gold-soft);
  padding: 20px; border-radius: 16px;
  margin-bottom: 24px;
  animation: fade-up 1s var(--transition-elegant) 0.2s both;
}

.sloka-hindi {
  font-size: 16px; color: var(--maroon);
  font-weight: 700; letter-spacing: 0.05em;
  line-height: 1.6;
}

.gold-divider {
  width: 80px; height: 1px;
  background: var(--gold-soft);
  margin: 12px auto;
}

.sloka-english {
  font-size: 12px; color: rgba(107,31,42,0.8);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; line-height: 1.6;
}

.invite-line {
  font-size: 15px; color: rgba(58,48,40,0.8);
  max-width: 420px; margin-bottom: 24px;
  animation: fade-up 1s var(--transition-elegant) 0.3s both;
}

.names-area {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  margin-top: 24px;
}

.name-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 72px; color: var(--rose);
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.5s ease;
  animation: fade-up 1s var(--transition-elegant) 0.4s both;
}

.name-script:hover { transform: scale(1.05); }

.parents-info {
  font-size: 14px; color: rgba(58,48,40,0.8);
  margin-top: 8px; font-weight: 500;
  letter-spacing: 0.05em;
}

.grandparents-info {
  font-size: 12px; color: rgba(58,48,40,0.6);
  font-style: italic; margin-top: 2px;
}

.weds-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 12px 0;
  animation: fade-up 1s var(--transition-elegant) 0.5s both;
}

.line-gold {
  width: 40px; height: 1px;
  background: var(--gold-soft);
}

.weds-text {
  font-family: 'Pinyon Script', cursive;
  font-size: 28px; color: var(--rose-deep);
  font-style: italic;
}

.couple-caricature {
  margin-top: 32px;
  max-width: 280px;
  animation: fade-up 1s var(--transition-elegant) 1s both;
}

.couple-img {
  width: 100%; height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

/* ============ SAVE THE DATE ============ */
.save-date-section {
  position: relative;
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  text-align: center;
  z-index: 10;
  overflow: hidden;
}

.section-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}

.section-inner {
  position: relative; z-index: 10;
  max-width: 700px; margin: 0 auto;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 24px; letter-spacing: 0.2em;
  color: var(--rose-deep); font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .section-title { font-size: 28px; }
}

.section-sub {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(107,31,42,0.75);
  margin-top: 4px;
}

/* Ornament divider (matches original Po component) */
.ornament-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px 0;
}

.orn-line {
  width: 64px; height: 1px;
  background: var(--gold-soft);
}

.orn-icon {
  color: #92700C; font-size: 18px;
}

.gold-ornament {
  color: var(--gold); font-size: 20px;
  margin: 16px 0;
}

.gold-ornament-sm {
  color: var(--gold); font-size: 16px;
  margin: 12px 0;
}

/* Scratch Card */
.scratch-wrapper {
  position: relative;
  width: 100%;
  max-width: 448px;
  height: 128px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold-soft);
  box-shadow: 0 20px 60px -20px hsl(350, 55%, 30%, 0.25);
  user-select: none;
}

.scratch-underneath {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream);
}

.scratch-label {
  font-family: 'Cinzel', serif;
  font-size: 14px; letter-spacing: 0.35em;
  color: var(--sage-deep); font-weight: 600;
}

.scratch-date {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--rose-deep);
  margin-top: 4px;
}

@media (min-width: 640px) {
  .scratch-date { font-size: 28px; }
}

.scratch-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  cursor: grab;
  touch-action: none;
}

.scratch-canvas:active { cursor: grabbing; }

/* Countdown (appears after scratch reveal) */
.countdown-wrap {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
}

.countdown-wrap.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 640px) {
  .countdown-wrap { gap: 24px; }
}

.count-box {
  display: flex; flex-direction: column; align-items: center;
  min-width: 68px;
}

@media (min-width: 640px) {
  .count-box { min-width: 90px; }
}

.count-inner {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 8px 30px -10px hsl(350, 40%, 25%, 0.14);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}

.count-num {
  font-family: 'Cinzel', serif;
  font-size: 24px; font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .count-num { font-size: 36px; }
}

.count-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--sage-deep);
  text-transform: uppercase;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .count-label { font-size: 12px; letter-spacing: 0.2em; }
}

/* ============ EVENTS ============ */
.events-section {
  position: relative;
  padding: 80px 24px;
  background: var(--cream);
}

.section-header {
  text-align: center; margin-bottom: 48px;
}

.event-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background: #fff;
  margin-bottom: 48px;
  min-height: 480px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.5s ease;
}

.event-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.event-bg {
  position: absolute; inset: 0; z-index: 0;
}

.event-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.event-content {
  position: relative; z-index: 10;
  text-align: center; padding: 24px;
  margin-top: auto;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  margin: 16px;
  margin-top: 160px;
}

.event-hashtag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  font-weight: 600; letter-spacing: 0.05em;
}

.event-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.2em;
  margin-top: 8px; opacity: 0.8;
}

.event-desc {
  font-size: 14px; margin-top: 4px;
  font-style: italic; opacity: 0.9;
}

.event-name {
  font-family: 'Cinzel', serif;
  font-size: 24px; letter-spacing: 0.15em;
  font-weight: 700; margin-top: 8px;
}

.event-date-badge {
  display: inline-block;
  padding: 8px 24px; border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 600;
  margin-top: 16px;
}

.event-caricature {
  position: relative; z-index: 10;
  display: flex; justify-content: center;
  padding: 16px;
}

.caricature-img {
  max-width: 200px; width: 100%; height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

.event-card:hover .caricature-img {
  transform: scale(1.05);
}

/* Event colors */
.event-haldi .event-content { color: #92700C; }
.event-haldi .event-hashtag { color: #92700C; }
.event-haldi .event-name { color: #92700C; }
.badge-haldi { background: rgba(146,112,12,0.1); border: 1px solid rgba(146,112,12,0.3); color: #92700C; }

.event-mehndi .event-content { color: #1B5E20; }
.event-mehndi .event-hashtag { color: #1B5E20; }
.event-mehndi .event-name { color: #1B5E20; }
.badge-mehndi { background: rgba(27,94,32,0.1); border: 1px solid rgba(27,94,32,0.3); color: #1B5E20; }

.event-sangeet .event-content { color: #47296b; }
.event-sangeet .event-hashtag { color: #47296b; }
.event-sangeet .event-name { color: #47296b; }
.badge-sangeet { background: rgba(71,41,107,0.1); border: 1px solid rgba(71,41,107,0.3); color: #47296b; }

.event-wedding .event-content { color: #6B1F2A; }
.event-wedding .event-hashtag { color: #6B1F2A; }
.event-wedding .event-name { color: #6B1F2A; }
.event-date-main { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 0.15em; font-weight: 600; color: var(--gold); margin-top: 8px; }

.wedding-timeline {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px; padding: 16px 24px;
  margin-top: 16px; text-align: left;
  max-width: 300px; margin-left: auto; margin-right: auto;
}

.tl-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 4px 0;
  color: #6B1F2A;
}

.tl-time { font-weight: 600; color: #6B1F2A; }

/* ============ WARDROBE ============ */
.wardrobe-section {
  position: relative;
  padding: 80px 24px;
  background: #FAF6F0;
  border-top: 1px solid var(--gold-soft);
}

.monogram-sm {
  width: 56px; height: 56px;
  object-fit: contain; margin: 0 auto 8px;
  opacity: 0.8; display: block;
}

.wardrobe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .wardrobe-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.wardrobe-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-soft);
  padding: 24px; border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.5s ease;
}

.wardrobe-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.wardrobe-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  overflow: hidden; background: #fff;
}

.wardrobe-icon img {
  width: 100%; height: 100%; object-fit: cover;
}

.wardrobe-event {
  font-family: 'Cinzel', serif;
  font-size: 14px; letter-spacing: 0.15em;
  font-weight: 700; color: #92700C;
}

.wardrobe-theme {
  font-family: 'Pinyon Script', cursive;
  font-size: 22px; color: #92700C;
  line-height: 1; margin-top: 2px;
}

.wardrobe-info p {
  font-size: 14px; color: rgba(58,48,40,0.8);
  line-height: 1.5; margin-top: 4px;
}

.wardrobe-green { color: #1B5E20 !important; }
.wardrobe-indigo { color: #4A148C !important; }
.wardrobe-rose { color: #880E4F !important; }

/* ============ PRESENCE ============ */
.presence-section {
  position: relative;
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--gold-soft);
  text-align: center;
}

.presence-title {
  font-family: 'Pinyon Script', cursive;
  font-size: 36px; color: var(--rose-deep);
  font-weight: 400;
}

.presence-msg {
  font-style: italic; font-size: 18px;
  color: rgba(58,48,40,0.9);
  max-width: 480px; margin: 0 auto;
  line-height: 1.6;
}

.invited-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.25em;
  color: rgba(107,31,42,0.7);
  margin-top: 24px;
}

.family-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 32px; color: var(--rose);
}

.inviter-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 20px; color: var(--rose);
  margin-top: 4px;
}

.inviter-note {
  font-size: 12px; color: rgba(58,48,40,0.6);
  font-style: italic; margin-top: 4px;
}

/* ============ VENUE ============ */
.venue-section {
  position: relative;
  padding: 80px 24px;
  background: #FAF6F0;
  border-top: 1px solid var(--gold-soft);
  text-align: center;
}

.venue-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.25em;
  color: rgba(107,31,42,0.8);
}

.venue-title {
  font-family: 'Pinyon Script', cursive;
  font-size: 42px; color: var(--rose-deep);
  margin-top: 4px;
}

.venue-address {
  font-size: 16px; line-height: 1.8;
  color: rgba(58,48,40,0.8);
  margin-top: 16px;
}

.venue-address strong { color: var(--rose-deep); }
.venue-address em { font-size: 14px; color: rgba(58,48,40,0.6); }

.map-container {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 640px; margin-left: auto; margin-right: auto;
}

.venue-map { width: 100%; height: 320px; border: none; }

@media (min-width: 640px) { .venue-map { height: 380px; } }

.directions-btn {
  display: inline-block; margin-top: 24px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; text-decoration: none;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 0.15em;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: opacity 0.3s ease;
}

.directions-btn:hover { opacity: 0.9; }

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  padding: 64px 24px;
  background: linear-gradient(180deg, #3A050B, #5C0F14);
  text-align: center; color: #F5D78E;
  border-top: 2px solid var(--gold-soft);
}

.footer-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(245,215,142,0.8);
}

.footer-names {
  font-family: 'Pinyon Script', cursive;
  font-size: 48px; color: #F5D78E;
  margin-top: 12px;
}

.footer-hearts {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  margin: 20px 0;
}

.footer-line {
  width: 48px; height: 1px;
  background: rgba(201,168,76,0.3);
}

.heart-emoji { font-size: 24px; }

.footer-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(245,215,142,0.9);
}

.footer-hashtag {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(245,215,142,0.8);
  margin-top: 12px;
}

/* ============ MUSIC BUTTON ============ */
.music-btn {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 100;
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(58,48,40,0.8);
  color: #FCF8F2; font-size: 20px;
  cursor: pointer; backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  display: none; align-items: center; justify-content: center;
}

.music-btn.visible { display: flex; }
.music-btn:hover { transform: scale(1.1); }

/* ============ ANIMATIONS ============ */
@keyframes fade-up {
  0% { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  0% { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--transition-elegant),
              transform 0.9s var(--transition-elegant);
}

.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .name-script { font-size: 52px; }
  .footer-names { font-size: 36px; }
  .presence-title { font-size: 28px; }
  .venue-title { font-size: 32px; }
  .countdown { gap: 16px; }
  .count-num { font-size: 28px; }
  .section-title { font-size: 22px; }
  .event-name { font-size: 20px; }
}
