/* --------------------------------------------------
 * DESIGN SYSTEM & ROOT VARIABLES
 * -------------------------------------------------- */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-tertiary: #1b1b22;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #aa861b;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-gradient: linear-gradient(135deg, #aa861b 0%, #D4AF37 50%, #fcf0be 100%);
  
  --text-white: #ffffff;
  --text-gold: #e5c158;
  --text-muted: #a0a0ab;
  --text-dark: #121212;

  --border-glass: rgba(212, 175, 55, 0.2);
  --bg-glass: rgba(18, 18, 22, 0.7);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.1);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --serif-font: 'Cinzel', 'Playfair Display', Georgia, serif;
  --sans-font: 'Montserrat', 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--sans-font);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Sparkle Canvas */
#sparkles-canvas, #confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

#confetti-canvas {
  z-index: 999;
}

/* Typography Utilities */
.serif-font {
  font-family: var(--serif-font);
}

.text-center {
  text-align: center;
}

.gold-text {
  color: var(--text-gold);
}

.subtitle-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: -10px;
  margin-bottom: 25px;
}

/* Glassmorphism Styling */
.glassmorphic {
  background: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
}

/* --------------------------------------------------
 * BUTTONS & INTERACTIVE ELEMENTS
 * -------------------------------------------------- */
.gold-btn {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 15px var(--gold-primary);
}

.gold-btn:active {
  transform: translateY(-1px);
}

.gold-btn-outline {
  background: transparent;
  color: var(--text-gold);
  border: 2px solid var(--gold-primary);
  padding: 12px 26px;
  font-family: var(--sans-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gold-btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

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

/* --------------------------------------------------
 * FLOATING AUDIO PLAYER
 * -------------------------------------------------- */
.audio-control-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  max-width: 320px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.audio-btn {
  background: var(--gold-gradient);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.audio-btn:hover {
  transform: scale(1.1);
}

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

.audio-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gold);
}

/* Visualizer Bars */
.audio-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 15px;
  margin-top: 3px;
}

.audio-visualizer .bar {
  width: 3px;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.audio-visualizer.playing .bar {
  animation: visualize 1.2s infinite ease-in-out alternate;
}

.audio-visualizer.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.audio-visualizer.playing .bar:nth-child(2) { animation-delay: 0.4s; }
.audio-visualizer.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.audio-visualizer.playing .bar:nth-child(4) { animation-delay: 0.5s; }

@keyframes visualize {
  0% { height: 2px; }
  100% { height: 15px; }
}

/* Volume Slider */
.volume-slider-container {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.volume-slider-container input[type="range"] {
  -webkit-appearance: none;
  width: 60px;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  outline: none;
}

.volume-slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
}

/* --------------------------------------------------
 * ENVELOPE SECTION (STEP 1)
 * -------------------------------------------------- */
.celebration-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.envelope-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  perspective: 1000px;
  z-index: 20;
}

.envelope {
  position: relative;
  width: 320px;
  height: 220px;
  background: #181820;
  border: 1px solid var(--border-glass);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.envelope:hover {
  transform: translateY(-5px) rotateX(5deg);
}

.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-top: 110px solid #23232f;
  transform-origin: top;
  z-index: 30;
  transition: transform 0.5s ease;
}

.envelope.open .envelope-flap {
  transform: rotateX(180deg);
  z-index: 5;
}

.envelope-pocket {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #1e1e28;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 0 10px 10px;
  z-index: 20;
}

.envelope-pocket::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 160px solid #16161f;
  border-right: 160px solid transparent;
  border-bottom: 110px solid transparent;
}

.envelope-pocket::after {
  content: '';
  position: absolute;
  top: -110px;
  right: 0;
  width: 0;
  height: 0;
  border-right: 160px solid #16161f;
  border-left: 160px solid transparent;
  border-bottom: 110px solid transparent;
}

.envelope-letter-preview {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 290px;
  height: 180px;
  background: var(--gold-gradient);
  border-radius: 5px;
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.envelope.open .envelope-letter-preview {
  transform: translateY(-80px);
}

/* Wax Seal style */
.envelope-seal {
  position: absolute;
  top: 95px;
  left: 140px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #b12525 60%, #7e1616 100%);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
  z-index: 40;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.envelope-seal:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.seal-inner {
  width: 30px;
  height: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-initials {
  font-family: var(--serif-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f7d2d2;
}

.envelope.open .envelope-seal {
  opacity: 0;
  pointer-events: none;
}

/* Envelope Instructions typography */
.envelope-instructions {
  text-align: center;
  max-width: 400px;
}

.glow-text {
  font-family: var(--serif-font);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  margin-bottom: 8px;
}

.envelope-instructions p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------
 * MAIN CELEBRATION HUB (STEP 2)
 * -------------------------------------------------- */
.celebration-card-wrapper {
  width: 100%;
  max-width: 900px;
  z-index: 20;
  animation: revealWrapper 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.greeting-card {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  padding: 40px;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

/* Photo Frame Elements */
.director-photo-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ornate-frame {
  position: relative;
  width: 260px;
  height: 330px;
  border-radius: 12px;
  padding: 10px;
  background: var(--gold-gradient);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 25px rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.director-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #16161f;
  transition: var(--transition-smooth);
  filter: contrast(1.05) brightness(0.95);
}

.ornate-frame:hover .director-photo {
  transform: scale(1.03);
  filter: contrast(1.1) brightness(1.05);
}

.gold-sparkle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}

/* Director Leadership Badge */
.badge-director {
  position: absolute;
  bottom: -15px;
  background: #111116;
  border: 1px solid var(--gold-primary);
  padding: 6px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gold);
}

.gold-star {
  animation: pulseStar 1.5s infinite alternate;
}

@keyframes pulseStar {
  from { transform: scale(1); filter: drop-shadow(0 0 2px var(--gold-primary)); }
  to { transform: scale(1.2); filter: drop-shadow(0 0 6px var(--gold-primary)); }
}

/* Greeting Typography */
.tribute-text-container {
  display: flex;
  flex-direction: column;
}

.greeting-tagline {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-gold);
  margin-bottom: 5px;
}

.director-name {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0) 100%);
  width: 80px;
}

.gold-divider::after {
  background: linear-gradient(-90deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0) 100%);
}

.star-icon {
  color: var(--gold-primary);
  margin: 0 10px;
  font-size: 0.85rem;
}

.tribute-message {
  font-weight: 300;
  font-size: 0.95rem;
  color: #d1d1d6;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
}

.tribute-message::after {
  content: '|';
  color: var(--gold-primary);
  font-weight: 900;
  animation: cursorBlink 0.8s infinite;
  margin-left: 3px;
  display: inline-block;
  vertical-align: bottom;
}

.tribute-message.typing-complete::after {
  display: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.card-action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --------------------------------------------------
 * INTERACTIVE CAKE SECTION (STEP 3)
 * -------------------------------------------------- */
.interactive-cake-section {
  padding: 40px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cake-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.cake {
  position: relative;
  width: 200px;
  height: 140px;
}

/* Cake Layers styling */
.cake-bottom, .cake-middle, .cake-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 4px 4px;
}

.cake-bottom {
  bottom: 0;
  width: 180px;
  height: 50px;
  background: #3c2a21; /* Rich chocolate */
  border-top: 6px solid #e78895; /* Strawberry cream icing */
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.2);
}

.cake-middle {
  bottom: 44px;
  width: 140px;
  height: 44px;
  background: #54372b;
  border-top: 6px solid #fef3e2; /* Vanilla frosting drip */
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.2);
  z-index: 2;
}

.cake-top {
  bottom: 82px;
  width: 100px;
  height: 38px;
  background: #3c2a21;
  border-top: 6px solid #e78895;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.2);
  z-index: 3;
}

/* Cake Drips */
.cake-middle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 8px;
  background: #fef3e2;
  border-radius: 0 0 50% 50%;
}

.cake-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 8px;
  background: #e78895;
  border-radius: 0 0 50% 50%;
}

/* Candles & Flame Animations */
.candles-wrapper {
  position: absolute;
  bottom: 114px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 50px;
  display: flex;
  justify-content: space-around;
  z-index: 4;
}

.candle {
  position: relative;
  width: 8px;
  height: 35px;
  background: linear-gradient(to right, #e78895, #e78895 50%, #ffffff 50%, #ffffff);
  border-radius: 2px 2px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: var(--transition-smooth);
}

.candle::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 3px;
  width: 2px;
  height: 6px;
  background: #444;
}

.flame {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 16px;
  background: radial-gradient(circle at bottom, #ffdf00 20%, #ff8c00 60%, #ff3c00 100%);
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.8), 0 0 20px rgba(255, 223, 0, 0.4);
  transform-origin: bottom center;
  animation: flicker 1s infinite ease-in-out alternate;
  pointer-events: none;
}

@keyframes flicker {
  0% { transform: translateX(-50%) rotate(-2deg) scaleY(0.9); }
  50% { transform: translateX(-50%) rotate(2deg) scaleY(1.05) scaleX(0.95); }
  100% { transform: translateX(-50%) rotate(-1deg) scaleY(1.1) scaleX(1.05); }
}

.candle.extinguished .flame {
  display: none;
}

/* Blowing Smoke Effect */
.smoke {
  position: absolute;
  top: -15px;
  left: 2px;
  width: 4px;
  height: 4px;
  background: rgba(220, 220, 220, 0.7);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.candle.extinguished .smoke {
  animation: smokeFade 1.8s ease-out forwards;
}

@keyframes smokeFade {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  50% {
    transform: translateY(-20px) translateX(-5px) scale(2.5);
    filter: blur(1px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) translateX(5px) scale(4);
    filter: blur(3px);
  }
}

.cake-status-message {
  margin-top: 15px;
  font-size: 1.1rem;
  animation: pulseText 1.5s infinite alternate;
}

@keyframes pulseText {
  from { transform: scale(0.98); opacity: 0.9; }
  to { transform: scale(1.02); opacity: 1; }
}

/* --------------------------------------------------
 * WISH BOARD SECTION (STEP 4)
 * -------------------------------------------------- */
.wish-board-section {
  padding: 40px;
  margin-bottom: 40px;
}

.wish-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.wish-form input[type="text"],
.wish-form select,
.wish-form textarea {
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--sans-font);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.wish-form textarea {
  grid-column: span 2;
  resize: vertical;
}

.wish-form input:focus,
.wish-form select:focus,
.wish-form textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Wishes Board Display */
.wishes-display-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  perspective: 1000px;
}

/* Dynamic Sticky Notes Styling */
.sticky-note {
  padding: 22px;
  border-radius: 8px;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transform: rotateZ(var(--rotation, 0deg));
  transition: var(--transition-smooth);
  cursor: default;
}

.sticky-note:hover {
  transform: translateY(-5px) scale(1.03) rotateZ(0deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 10;
}

.sticky-note-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 15px;
}

.sticky-note-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}

/* Color Themes for Sticky Notes */
.gold-sticky {
  background: linear-gradient(135deg, #241e12 0%, #15120a 100%);
  border-left: 5px solid var(--gold-primary);
  color: var(--text-gold);
}
.gold-sticky .sticky-note-text { color: #f2e2bd; }

.dark-sticky {
  background: linear-gradient(135deg, #181820 0%, #0d0d12 100%);
  border-left: 5px solid var(--text-muted);
  color: var(--text-white);
}
.dark-sticky .sticky-note-text { color: #d1d1d6; }

.red-sticky {
  background: linear-gradient(135deg, #2c1318 0%, #170a0c 100%);
  border-left: 5px solid #ff4d6d;
  color: #ffb3c1;
}
.red-sticky .sticky-note-text { color: #ffe5ec; }

.blue-sticky {
  background: linear-gradient(135deg, #111d2e 0%, #080f18 100%);
  border-left: 5px solid #00b4d8;
  color: #caf0f8;
}
.blue-sticky .sticky-note-text { color: #ade8f4; }

/* --------------------------------------------------
 * FOOTER
 * -------------------------------------------------- */
.celebration-footer {
  margin-top: 60px;
  padding-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.celebration-footer p {
  margin-bottom: 5px;
}

/* --------------------------------------------------
 * MEDIA QUERIES FOR COMPACT RESPONSIVENESS
 * -------------------------------------------------- */
@media (max-width: 768px) {
  .greeting-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
  
  .director-photo-container {
    margin-bottom: 15px;
  }
  
  .ornate-frame {
    width: 220px;
    height: 280px;
  }
  
  .director-name {
    font-size: 2.3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .wish-form textarea {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px; /* Space for sticky header */
  }
  
  .audio-control-panel {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 8px 15px;
    border-radius: 30px;
  }
  
  .audio-title {
    font-size: 0.65rem;
  }
  
  .volume-slider-container {
    display: none; /* Hide volume on tiny screens to save space */
  }
  
  .envelope-wrapper {
    transform: scale(0.9);
  }
  
  .greeting-card {
    padding: 20px 15px;
    gap: 20px;
  }
  
  .director-name {
    font-size: 2rem;
  }
  
  .tribute-message {
    font-size: 0.85rem;
  }
  
  .card-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .card-action-buttons button, 
  .card-action-buttons a {
    width: 100%;
    justify-content: center;
  }
  
  .interactive-cake-section, 
  .wish-board-section {
    padding: 20px 15px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
}
