/* ============================================================
   GUERREIRAS DO K-POP — CONVITE VALENTINA
   Estética: Guerreiras do K-Pop (filme) — azul-safira, dourado,
   branco glacial, ambiente de palco épico com magia
   ============================================================ */

:root {
  --gold:      #F5C842;
  --gold2:     #FFE082;
  --gold3:     #C9920E;
  --sapphire:  #1A4FC4;
  --sapphire2: #2563EB;
  --sky:       #60A5FA;
  --sky2:      #BAE6FD;
  --teal:      #14B8A6;
  --white:     #FFFFFF;
  --pearl:     #E8F4FD;
  --dark:      #050D1F;
  --dark2:     #091428;
  --dark3:     #0D1F3C;
  --card-bg:   rgba(10, 25, 55, 0.65);
  --text:      #FFFFFF;
  --text-soft: rgba(255,255,255,0.75);

  --gradient-main:   linear-gradient(135deg, #F5C842 0%, #60A5FA 50%, #1A4FC4 100%);
  --gradient-gold:   linear-gradient(135deg, #F5C842, #FFE082, #C9920E);
  --gradient-blue:   linear-gradient(135deg, #1A4FC4, #2563EB, #60A5FA);
  --gradient-lilac: linear-gradient(135deg, #7C3AED, #A78BFA, #C4B5FD);
  --gradient-hero:   linear-gradient(180deg, #060F25 0%, #091428 50%, #0D1F3C 100%);
  --shadow-gold:     0 0 30px rgba(245,200,66,0.45);
  --glow-lilac: 0 0 20px rgba(167,139,250,0.7), 0 0 50px rgba(167,139,250,0.3);

  --glow-gold:       0 0 20px rgba(245,200,66,0.7), 0 0 50px rgba(245,200,66,0.3);
  --font-display:    'Orbitron', sans-serif;
  --font-body:       'Nunito', sans-serif;
  --font-kr:         'Noto Sans KR', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ctext y='24' font-size='22'%3E✦%3C/text%3E%3C/svg%3E"), auto;
}

#glitterCanvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.4;
}
.floating-stars {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.fstar {
  position: absolute;
  animation: floatStar linear infinite; opacity: 0;
}
@keyframes floatStar {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; z-index: 10;
padding: 80px 20px 120px 20px;  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(37,99,235,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,200,66,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(20,184,166,0.1) 0%, transparent 60%),
    var(--gradient-hero);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 30% 60% at 15% 100%, rgba(245,200,66,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 85% 100%, rgba(96,165,250,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
  max-width: 720px; width: 100%; position: relative;
}

.badge-top {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.35);
  backdrop-filter: blur(12px); border-radius: 100px;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  animation: fadeSlideDown 0.6s ease both;
}
.badge-star { font-size: 14px; animation: spin 3s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeSlideDown {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-photo-frame {
  position: relative; width: 240px; height: 240px;
  animation: fadeSlideDown 0.7s 0.1s ease both;
}
.photo-ring {
  position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid transparent;
}
.ring1 {
  background: var(--gradient-gold) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: ringRotate 8s linear infinite; inset: -8px;
}
.ring2 {
  background: var(--gradient-blue) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: ringRotate 5s linear infinite reverse; inset: -18px; opacity: 0.8;
}
.ring3 {
  background: var(--gradient-main) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: ringRotate 14s linear infinite; inset: -30px; border-width: 1px; opacity: 0.4;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.birthday-photo-container {
  position: relative; width: 100%; height: 100%;
  border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, rgba(26,79,196,0.3), rgba(245,200,66,0.2));
  box-shadow: 0 0 50px rgba(245,200,66,0.25), inset 0 0 30px rgba(37,99,235,0.3);
}
.birthday-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.photo-shimmer {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(120deg, transparent 30%, rgba(245,200,66,0.15) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { transform: translateX(-100%) rotate(10deg); }
  50%      { transform: translateX(100%) rotate(10deg); }
}
.star-orbit { position: absolute; inset: -45px; animation: ringRotate 18s linear infinite; }
.orbit-star { position: absolute; left: 50%; top: 50%; transform-origin: 0 0; font-size: 16px; }
.orbit-star:nth-child(1) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }
.orbit-star:nth-child(2) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }
.orbit-star:nth-child(3) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }
.orbit-star:nth-child(4) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }
.orbit-star:nth-child(5) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }
.orbit-star:nth-child(6) { transform: rotate(calc(var(--i)*60deg)) translateY(-130px); }

.hero-title {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; text-align: center;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}
.title-line-1, .title-line-3 {
  font-size: 13px; font-weight: 600;
  color: var(--sky2); letter-spacing: 4px; text-transform: uppercase;
}
.title-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 10vw, 76px); font-weight: 900;
  background: var(--gradient-lilac);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
 filter: drop-shadow(0 0 20px rgba(167,139,250,0.5));
 letter-spacing: 2px;
}
.title-age {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px); font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kpop-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-soft);
  animation: fadeSlideDown 0.9s 0.25s ease both;
}
.kpop-han { font-family: var(--font-kr); font-size: 13px; }
.kpop-divider { color: var(--gold); font-size: 16px; }

.countdown-container {
  text-align: center; animation: fadeSlideDown 1s 0.35s ease both;
}
.countdown-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sky2); margin-bottom: 14px; font-weight: 700;
}
.countdown { display: flex; align-items: center; gap: 6px; }
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(10,25,55,0.85);
  border: 1px solid rgba(245,200,66,0.25); border-radius: 14px;
  padding: 14px 20px; min-width: 72px; backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(245,200,66,0.1);
}
.countdown-val {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900; line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.countdown-lbl {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-soft); margin-top: 4px;
}
.countdown-sep {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  color: var(--gold); opacity: 0.6; animation: blink 1s infinite;
}
@keyframes blink { 0%,100% { opacity: 0.6; } 50% { opacity: 0.1; } }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft);
  animation: float 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 18px; color: var(--gold); }
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

section { position: relative; z-index: 10; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-badge {
  display: inline-block;
  background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.35);
  border-radius: 100px; padding: 5px 18px;
  font-family: var(--font-display); font-size: 8px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-badge.blue { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.35); color: var(--sky); }
.section-badge.white { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: #fff; }
.section-badge.pink { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.3); color: #F472B6; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px); font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 1px;
}
.title-deco { color: var(--gold); font-size: 0.7em; }
.section-sub { margin-top: 10px; color: var(--text-soft); font-size: 15px; }

/* INFO */
.info-section {
  padding: 80px 20px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26,79,196,0.15) 0%, transparent 70%);
}
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; max-width: 860px; margin: 0 auto;
}
.info-card {
  background: var(--card-bg); border: 1px solid rgba(245,200,66,0.15);
  backdrop-filter: blur(20px); border-radius: 20px; padding: 28px 20px;
  text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold); opacity: 0.6;
}
.info-card:hover {
  transform: translateY(-6px); border-color: rgba(245,200,66,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(245,200,66,0.1);
}
.card-icon { font-size: 36px; margin-bottom: 12px; }
.card-label {
  font-family: var(--font-display); font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 700;
}
.card-value { font-size: 17px; font-weight: 900; margin-bottom: 4px; }
.card-sub { font-size: 13px; color: var(--text-soft); }

/* CHARACTERS */
.characters-section { padding: 80px 20px; }
.characters-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.character-card {
  background: var(--card-bg); border: 1px solid rgba(96,165,250,0.15);
  backdrop-filter: blur(20px); border-radius: 24px; padding: 24px 18px;
  text-align: center; position: relative; width: 175px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden;
}
.character-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,200,66,0.06), transparent 70%);
}
.character-card.featured {
  border-color: rgba(245,200,66,0.4); width: 200px;
  box-shadow: 0 0 40px rgba(245,200,66,0.15);
}
.character-card:hover { transform: translateY(-10px) scale(1.03); }
.char-glow { position: absolute; inset: 0; border-radius: 24px; transition: all 0.3s ease; }
.featured-badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold); color: var(--dark); border-radius: 100px;
  padding: 4px 14px; font-family: var(--font-display);
  font-size: 7px; font-weight: 900; letter-spacing: 1px; white-space: nowrap;
}
.char-photo-frame {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(26,79,196,0.3), rgba(245,200,66,0.2));
  border: 2px solid rgba(245,200,66,0.2); position: relative;
}
.character-card.featured .char-photo-frame {
  width: 130px; height: 130px;
  border-color: rgba(245,200,66,0.5); box-shadow: 0 0 20px rgba(245,200,66,0.2);
}
.char-photo { width: 100%; height: 100%; object-fit: cover; }
.char-name {
  font-family: var(--font-display); font-size: 10px; font-weight: 900; letter-spacing: 1px;
  margin-bottom: 4px; background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.char-role { font-size: 12px; color: var(--text-soft); margin-bottom: 6px; }
.char-emoji { font-size: 20px; }

/* GIFTS */
.gifts-section { padding: 80px 20px; position: relative; }
.gifts-bg-deco {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(20,184,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.gifts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto 32px;
}
.gift-card {
  background: var(--card-bg); border: 1px solid rgba(245,200,66,0.12);
  backdrop-filter: blur(16px); border-radius: 18px; padding: 18px;
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s; position: relative; overflow: hidden;
}
.gift-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gradient-gold); border-radius: 3px 0 0 3px;
}
.gift-card:hover { transform: translateX(6px); border-color: rgba(245,200,66,0.35); }
.gift-img {
  width: 70px; height: 70px; border-radius: 12px;
  object-fit: cover; flex-shrink: 0; border: 1px solid rgba(245,200,66,0.2);
}
.gift-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }
.gift-info { flex: 1; min-width: 0; }
.gift-name { font-size: 15px; font-weight: 900; margin-bottom: 3px; }
.gift-desc { font-size: 13px; color: var(--text-soft); }
.gift-price { font-family: var(--font-display); font-size: 10px; color: var(--gold); margin-top: 4px; font-weight: 700; }
.gifts-loading { text-align: center; padding: 40px; color: var(--text-soft); }
.loading-heart { font-size: 40px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.gifts-note {
  text-align: center; color: var(--text-soft); font-style: italic;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 15px; max-width: 900px; margin: 0 auto;
}
.note-star { color: var(--gold); }

/* VIBE */
.vibe-section {
  padding: 80px 20px;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,79,196,0.2) 0%, transparent 70%);
}
.vibe-content { max-width: 860px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.vibe-left { flex-shrink: 0; }
.vibe-emoji-stack { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.vibe-emoji {
  font-size: 32px; display: inline-block;
  animation: floatEmoji 3s ease-in-out var(--delay) infinite;
}
@keyframes floatEmoji {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-12px) rotate(5deg); }
}
.vibe-right { flex: 1; }
.vibe-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.vibe-title .gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 15px rgba(245,200,66,0.4));
}
.vibe-desc { color: var(--text-soft); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.vibe-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.vibe-tag {
  background: rgba(10,25,55,0.8); border: 1px solid rgba(245,200,66,0.2);
  border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.vibe-tag:hover { border-color: rgba(245,200,66,0.5); background: rgba(245,200,66,0.08); transform: translateY(-2px); }

/* RSVP */
.rsvp-section { padding: 80px 20px; position: relative; overflow: hidden; }
.rsvp-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26,79,196,0.25) 0%, rgba(5,13,31,0.5) 100%);
}
.rsvp-content {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px; position: relative;
}
.rsvp-photo-frame { flex-shrink: 0; position: relative; width: 200px; height: 200px; }
.rsvp-photo {
  width: 200px; height: 200px; border-radius: 24px; object-fit: cover;
  border: 2px solid rgba(245,200,66,0.3); box-shadow: 0 0 40px rgba(26,79,196,0.3);
}
.rsvp-photo-deco {
  position: absolute; bottom: -10px; right: -10px; font-size: 36px;
  background: var(--dark2); border-radius: 50%; padding: 4px;
}
.rsvp-text { flex: 1; }
.rsvp-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px); font-weight: 900; line-height: 1.2; margin: 14px 0 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rsvp-desc { color: var(--text-soft); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.rsvp-deadline {
  display: inline-block; background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.25); border-radius: 10px; padding: 10px 18px;
  font-size: 13px; color: var(--gold2); margin-bottom: 24px; font-weight: 700;
}
.rsvp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; text-decoration: none; border-radius: 100px; padding: 16px 32px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rsvp-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.45); }
.rsvp-btn-icon { font-size: 20px; }
.rsvp-hint { margin-top: 12px; font-size: 12px; color: var(--text-soft); }

/* FOOTER */
.site-footer {
  position: relative; z-index: 10; background: var(--dark2);
  border-top: 1px solid rgba(245,200,66,0.15); padding: 32px 20px 24px; text-align: center;
}
.footer-stars { display: flex; justify-content: center; gap: 10px; font-size: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; color: var(--text-soft);
}
.footer-han { font-family: var(--font-kr); font-size: 14px; color: var(--gold); }
.footer-divider { color: var(--gold); }
.footer-msg { font-size: 13px; color: var(--text-soft); }
.footer-wave { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-main); opacity: 0.4; }

/* CONFETTI */
.confetti-container { position: fixed; inset: 0; pointer-events: none; z-index: 999; overflow: hidden; }
.confetti-piece {
  position: absolute; top: -20px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { top: -20px; transform: rotate(0deg) translateX(0); opacity: 1; }
  100% { top: 100vh; transform: rotate(720deg) translateX(80px); opacity: 0; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  .countdown-unit { min-width: 56px; padding: 10px 10px; }
  .countdown-val { font-size: 26px; }
  .vibe-content { flex-direction: column; text-align: center; }
  .vibe-emoji-stack { flex-direction: row; }
  .rsvp-content { flex-direction: column; align-items: center; text-align: center; }
  .rsvp-photo-frame { display: none; }
  .characters-grid { gap: 10px; }
  .character-card { width: 140px; padding: 16px 10px; }
  .character-card.featured { width: 155px; }
  .gifts-grid { grid-template-columns: 1fr; }
}
