
    .swal-redesign.swal2-popup {
      border-radius: 24px !important;
      border: 1.5px solid rgba(201, 169, 110, 0.35) !important;
      box-shadow:
        0 0 0 1px rgba(201, 169, 110, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(180, 20, 70, 0.15),
        inset 0 0 50px rgba(200, 50, 80, 0.06) !important;
      padding: 28px 24px 24px !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
    }

    .swal2-backdrop-show {
      background: rgba(0, 0, 0, 0.72) !important;
      backdrop-filter: blur(6px) !important;
      -webkit-backdrop-filter: blur(6px) !important;
    }

    /* Thin neon-pink top accent line */
    .swal-redesign.swal2-popup::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 2px;
      border-radius: 0 0 4px 4px;
      background: linear-gradient(90deg, transparent, rgba(255, 80, 130, 0.8), rgba(201, 169, 110, 0.8), rgba(255, 80, 130, 0.8), transparent);
    }


    /* ===========================
   CSS VARIABLES & RESET
   =========================== */
    :root {
      --rose-gold: #C9A96E;
      --rose-gold-light: #E8C99A;
      --deep-rose: #8B1A4A;
      --hot-pink: #ff69b4;
      --soft-pink: #FFB3C6;
      --deep-purple: #1a0030;
      --mid-purple: #2d0050;
      --black: #000;
      --white: #fff;
      --cream: #FFF5FA;
      --font-playfair: 'Playfair Display', serif;
      --font-poppins: 'Poppins', sans-serif;
      --font-dancing: 'Dancing Script', cursive;
    }

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

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--deep-purple);
      font-family: var(--font-poppins);
      cursor: none;
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
      }
    }

    /* ===========================
   BACKGROUND CANVAS
   =========================== */
    #background-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
    }

    /* ===========================
   SCENES
   =========================== */
    .scene {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 10;
      will-change: transform, opacity;
    }

    .scene.active {
      display: flex;
    }

    /* ===========================
   STARS (Scene 1 + Global)
   =========================== */
    .stars-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }

    .star {
      position: absolute;
      background: white;
      border-radius: 50%;
      animation: twinkle var(--dur, 3s) var(--delay, 0s) infinite ease-in-out;
    }

    @keyframes twinkle {

      0%,
      100% {
        opacity: 0.2;
        transform: scale(1);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    /* ===========================
   FLOATING HEARTS
   =========================== */
    .hearts-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 2;
    }

    .floating-heart {
      position: absolute;
      bottom: -50px;
      font-size: clamp(10px, 2vw, 18px);
      animation: floatUp var(--dur, 12s) var(--delay, 0s) infinite linear;
      opacity: 0;
    }

    @keyframes floatUp {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
      }

      10% {
        opacity: 0.7;
      }

      90% {
        opacity: 0.4;
      }

      100% {
        transform: translateY(-110vh) translateX(var(--sway, 30px)) rotate(360deg);
        opacity: 0;
      }
    }

    /* ===========================
   ROSE PETALS
   =========================== */
    .petal {
      position: absolute;
      top: -20px;
      border-radius: 150% 0 150% 0;
      animation: petalFall var(--dur, 10s) var(--delay, 0s) infinite cubic-bezier(0.37, 0, 0.63, 1);
      opacity: 0.7;
    }

    @keyframes petalFall {
      0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0;
      }

      10% {
        opacity: 0.7;
      }

      90% {
        opacity: 0.5;
      }

      100% {
        transform: translateY(110vh) rotate(720deg) translateX(var(--sway, 40px));
        opacity: 0;
      }
    }

    /* ===========================
   CUSTOM CURSOR (Desktop)
   =========================== */
    #custom-cursor {
      position: fixed;
      width: 14px;
      height: 14px;
      background: radial-gradient(circle, var(--rose-gold-light), var(--rose-gold));
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: width 0.15s, height 0.15s;
      box-shadow: 0 0 10px rgba(201, 169, 110, 0.8);
    }

    .cursor-trail {
      position: fixed;
      pointer-events: none;
      z-index: 99998;
      font-size: 12px;
      transform: translate(-50%, -50%);
      opacity: 1;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    /* ===========================
   MUSIC TOGGLE (hidden - moved to navbar)
   =========================== */
    #music-toggle {
      display: none;
    }

    /* ===========================
   CURTAIN PANELS (Scene 7)
   =========================== */
    #curtain-left,
    #curtain-right {
      position: fixed;
      top: 0;
      width: 50vw;
      height: 100vh;
      background: linear-gradient(to bottom, #6B0000, #3d0020, #6B0000);
      z-index: 500;
      pointer-events: none;
      display: none;
    }

    #curtain-left {
      left: 0;
      transform-origin: left center;
    }

    #curtain-right {
      right: 0;
      transform-origin: right center;
    }

    /* ===========================
   PILL BUTTON (Global)
   =========================== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #C9A96E 0%, #8B1A4A 100%);
      color: white;
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.9rem, 2.5vw, 1.05rem);
      padding: clamp(12px, 3vw, 18px) clamp(28px, 7vw, 56px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
      min-width: 140px;
      min-height: 44px;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 25px rgba(201, 169, 110, 0.4);
      will-change: transform;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 40px rgba(201, 169, 110, 0.7);
    }

    .btn-primary:hover::after {
      opacity: 1;
    }

    .btn-primary:active {
      transform: scale(0.98);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--rose-gold);
      font-family: var(--font-poppins);
      font-weight: 400;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      padding: 12px 28px;
      border-radius: 100px;
      border: 1px solid rgba(201, 169, 110, 0.5);
      cursor: pointer;
      min-height: 44px;
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      background: rgba(201, 169, 110, 0.1);
      border-color: var(--rose-gold);
    }

    /* ===========================
   GLASSMORPHISM CARD
   =========================== */
    .glass-card {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 183, 197, 0.25);
      border-radius: 24px;
      padding: clamp(24px, 5vw, 48px);
    }

    /* ===========================
   SCENE 1 — WELCOME (Designer Redesign)
   =========================== */
    #scene-1 {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 20, 70, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 80% 70% at 20% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 80% 70% at 80% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, #0e0008 0%, #1c0012 30%, #2a0018 60%, #150010 100%);
      z-index: 10;
      overflow: hidden;
      justify-content: flex-start;
    }

    /* City bokeh background layer */
    .s1-city-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .s1-city-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle 3px at 15% 70%, rgba(255, 120, 60, 0.35) 0%, transparent 60%),
        radial-gradient(circle 4px at 25% 65%, rgba(255, 200, 80, 0.25) 0%, transparent 50%),
        radial-gradient(circle 3px at 35% 75%, rgba(255, 80, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle 5px at 50% 60%, rgba(200, 60, 100, 0.25) 0%, transparent 60%),
        radial-gradient(circle 3px at 65% 72%, rgba(255, 140, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle 4px at 75% 65%, rgba(255, 80, 160, 0.2) 0%, transparent 50%),
        radial-gradient(circle 3px at 85% 70%, rgba(255, 200, 100, 0.25) 0%, transparent 50%),
        radial-gradient(circle 80px at 20% 80%, rgba(120, 10, 40, 0.5) 0%, transparent 70%),
        radial-gradient(circle 100px at 80% 80%, rgba(120, 10, 40, 0.5) 0%, transparent 70%);
      filter: blur(1px);
    }

    /* Glowing building silhouettes */
    .s1-buildings {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 45%;
      z-index: 1;
      pointer-events: none;
      background:
        /* Left buildings */
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 0% 100% / 6% 55% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 7% 100% / 4% 35% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 12% 100% / 5% 65% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 18% 100% / 3% 45% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 22% 100% / 6% 70% no-repeat,
        /* Right buildings */
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 72% 100% / 6% 68% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 79% 100% / 5% 42% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 85% 100% / 4% 58% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 90% 100% / 7% 38% no-repeat,
        linear-gradient(to top, #0a0006 0%, #0a0006 100%) 98% 100% / 2% 48% no-repeat;
    }

    /* Top Navigation Bar */
    .s1-navbar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 32px);
    }

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

    .s1-hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      padding: 4px;
    }

    .s1-hamburger span {
      width: 20px;
      height: 2px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 2px;
    }

    .s1-nav-brand {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1.3rem, 4vw, 2rem);
      background: linear-gradient(135deg, #ffcce0, #ff8ab0, #ffcce0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.02em;
    }

    .s1-nav-brand::after {
      content: ' 💕';
      -webkit-text-fill-color: initial;
      font-size: 0.7em;
    }

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

    .s1-music-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 100px;
      border: 1.5px solid rgba(255, 255, 255, 0.5);
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: white;
      font-family: var(--font-poppins);
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.02em;
    }

    .s1-music-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .s1-music-note {
      font-size: 0.85rem;
    }

    .s1-music-pause {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    /* Main scene 1 content */
    .scene1-content {
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(6px, 1.2vh, 14px);
      text-align: center;
      padding: clamp(60px, 10vh, 80px) clamp(16px, 4vw, 40px) clamp(10px, 2vh, 20px);
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
      /* Ensure all content stays within viewport */
      max-height: 100vh;
      overflow: hidden;
    }

    /* 3D Gift Box */
    .s1-gift-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .s1-gift {
      font-size: clamp(2.2rem, 6vh, 4rem);
      filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.7)) drop-shadow(0 0 50px rgba(255, 60, 100, 0.4)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
      animation: s1GiftFloat 2.5s ease-in-out infinite;
      transform-style: preserve-3d;
    }

    @keyframes s1GiftFloat {

      0%,
      100% {
        transform: translateY(0px) rotate(-3deg);
        filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.7)) drop-shadow(0 0 50px rgba(255, 60, 100, 0.4)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
      }

      50% {
        transform: translateY(-18px) rotate(3deg);
        filter: drop-shadow(0 0 30px rgba(255, 100, 150, 1)) drop-shadow(0 0 70px rgba(255, 60, 100, 0.6)) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
      }
    }

    .s1-gift-glow {
      position: absolute;
      width: clamp(80px, 20vw, 130px);
      height: clamp(30px, 8vw, 50px);
      background: radial-gradient(ellipse, rgba(255, 80, 130, 0.5), transparent);
      bottom: -10px;
      border-radius: 50%;
      filter: blur(12px);
      animation: s1GiftFloat 2.5s ease-in-out infinite;
    }

    /* Heading Typography */
    .s1-heading {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(2rem, 5.5vh, 4rem);
      line-height: 1.12;
      letter-spacing: 0.02em;
      color: transparent;
      background: linear-gradient(135deg, #f5c06a 0%, #f9e4a0 30%, #e8a040 50%, #f9d070 70%, #f0b060 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: s1Shimmer 4s linear infinite;
      text-shadow: none;
      filter: drop-shadow(0 0 20px rgba(240, 180, 80, 0.4));
    }

    /* "You" part in a different color */
    .s1-heading-you {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(2rem, 5.5vh, 4rem);
      line-height: 1.12;
      letter-spacing: 0.02em;
      color: transparent;
      background: linear-gradient(135deg, #ff6b9d 0%, #ff3d7a 40%, #e8115e 70%, #ff6b9d 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: s1Shimmer 4s linear infinite reverse;
      display: inline;
    }

    @keyframes s1Shimmer {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    /* Sparkle characters next to heading */
    .s1-sparkle {
      display: inline-block;
      font-style: normal;
      -webkit-text-fill-color: initial;
      color: #e8d080;
      font-size: 0.55em;
      vertical-align: super;
      animation: s1SparkleAnim 2s ease-in-out infinite alternate;
      filter: drop-shadow(0 0 6px rgba(240, 210, 100, 0.9));
    }

    @keyframes s1SparkleAnim {
      0% {
        opacity: 0.5;
        transform: scale(0.8) rotate(-10deg);
      }

      100% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
      }
    }

    /* Ornamental Divider */
    .s1-ornament {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(201, 169, 110, 0.85);
      font-size: 1rem;
    }

    .s1-ornament-line {
      height: 1px;
      width: clamp(40px, 8vw, 80px);
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.7), transparent);
    }

    .s1-ornament-text {
      font-family: var(--font-dancing);
      font-size: 1.1rem;
      letter-spacing: 2px;
    }

    /* Subtitle */
    .s1-sub {
      font-family: var(--font-poppins);
      font-weight: 300;
      font-size: clamp(0.85rem, 2.5vw, 1.05rem);
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.01em;
      opacity: 0;
      animation: fadeInUp 1s ease forwards 0.8s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Photo Card Frame */
    .s1-photo-frame {
      position: relative;
      width: clamp(220px, 50vw, 400px);
      border-radius: clamp(10px, 1.5vw, 16px);
      overflow: hidden;
      border: 2px solid rgba(255, 100, 150, 0.7);
      box-shadow:
        0 0 20px rgba(255, 80, 140, 0.6),
        0 0 50px rgba(255, 60, 120, 0.35),
        0 0 80px rgba(200, 40, 90, 0.2),
        inset 0 0 25px rgba(255, 100, 150, 0.12);
      opacity: 0;
      animation: fadeInUp 1s ease forwards 1.2s;
      flex-shrink: 0;
    }

    .s1-photo-frame img,
    .s1-photo-frame .s1-photo-placeholder {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    .s1-photo-placeholder {
      background: linear-gradient(135deg, #3d0030 0%, #1a0020 50%, #2a0025 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      aspect-ratio: 16/9;
    }

    .s1-photo-overlay {
      position: absolute;
      bottom: 0;
      right: 0;
      padding: clamp(10px, 3vw, 20px);
      background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.35) 50%);
    }

    .s1-photo-watermark {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1rem, 3vw, 1.5rem);
      color: rgba(255, 235, 215, 0.95);
      text-align: right;
      line-height: 1.4;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    }

    .s1-photo-heart {
      font-size: 0.8em;
      display: inline-block;
      animation: s1HeartPulse 1.5s ease-in-out infinite;
    }

    @keyframes s1HeartPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.25);
      }
    }

    /* Neon glow animation on photo frame */
    @keyframes s1FrameGlow {

      0%,
      100% {
        box-shadow: 0 0 20px rgba(255, 80, 140, 0.6), 0 0 50px rgba(255, 60, 120, 0.35), 0 0 80px rgba(200, 40, 90, 0.2), inset 0 0 25px rgba(255, 100, 150, 0.12);
        border-color: rgba(255, 100, 150, 0.7);
      }

      50% {
        box-shadow: 0 0 30px rgba(255, 80, 140, 0.9), 0 0 70px rgba(255, 60, 120, 0.55), 0 0 110px rgba(200, 40, 90, 0.35), inset 0 0 35px rgba(255, 100, 150, 0.2);
        border-color: rgba(255, 130, 170, 1);
      }
    }

    .s1-photo-frame {
      animation: fadeInUp 1s ease forwards 1.2s, s1FrameGlow 3s ease-in-out infinite 1.2s;
    }

    /* Begin Button */
    #s1-begin-btn {
      background: linear-gradient(135deg, #e8547a 0%, #c8234a 40%, #a01040 70%, #e8547a 100%);
      background-size: 200% auto;
      animation: s1BtnShimmer 3s linear infinite;
      color: white;
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.9rem, 2.2vw, 1.05rem);
      padding: clamp(12px, 1.8vh, 18px) clamp(32px, 7vw, 56px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
      box-shadow:
        0 4px 25px rgba(220, 50, 90, 0.55),
        0 8px 40px rgba(180, 20, 60, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.02em;
      position: relative;
      overflow: hidden;
      min-width: 190px;
      min-height: 46px;
      flex-shrink: 0;
    }

    @keyframes s1BtnShimmer {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    #s1-begin-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: s1BtnGleam 3s ease-in-out infinite 1s;
    }

    @keyframes s1BtnGleam {
      0% {
        left: -100%;
      }

      50%,
      100% {
        left: 200%;
      }
    }

    #s1-begin-btn:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 8px 35px rgba(220, 50, 90, 0.75), 0 15px 50px rgba(180, 20, 60, 0.5);
    }

    #s1-begin-btn:active {
      transform: scale(0.97);
    }



    /* 3D Hearts floating in scene 1 */
    .s1-heart-3d {
      position: absolute;
      pointer-events: none;
      font-size: var(--sz, 2rem);
      filter: drop-shadow(0 4px 12px rgba(255, 60, 120, 0.6)) drop-shadow(0 0 20px rgba(255, 80, 140, 0.4));
      animation: s1Heart3dFloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
      opacity: 0;
      z-index: 3;
    }

    @keyframes s1Heart3dFloat {
      0% {
        transform: translateY(0) translateX(0) rotate(var(--rot, -15deg)) scale(1);
        opacity: 0;
      }

      15% {
        opacity: 0.85;
      }

      50% {
        transform: translateY(-25px) translateX(var(--sway, 15px)) rotate(var(--rot2, 10deg)) scale(1.05);
        opacity: 0.8;
      }

      85% {
        opacity: 0.7;
      }

      100% {
        transform: translateY(0) translateX(0) rotate(var(--rot, -15deg)) scale(1);
        opacity: 0;
      }
    }

    /* Corner Roses */
    .s1-rose {
      position: absolute;
      pointer-events: none;
      font-size: var(--sz, 4rem);
      z-index: 2;
      filter: drop-shadow(0 4px 15px rgba(200, 40, 90, 0.5));
      opacity: var(--op, 0.9);
    }

    /* Rose bottom left cluster */
    .s1-rose-bl {
      bottom: 0;
      left: 0;
      transform-origin: bottom left;
    }

    /* Rose bottom right cluster */
    .s1-rose-br {
      bottom: 0;
      right: 0;
      transform-origin: bottom right;
    }

    /* Light orbs / bokeh circles */
    .s1-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      animation: s1OrbFloat var(--dur, 10s) var(--delay, 0s) ease-in-out infinite;
    }

    @keyframes s1OrbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1);
        opacity: var(--op, 0.3);
      }

      50% {
        transform: translateY(-15px) scale(1.1);
        opacity: calc(var(--op, 0.3) * 1.5);
      }
    }

    /* ===========================
   RESPONSIVE — MOBILE SCENE 1
   =========================== */
    @media (max-width: 600px) {
      .s1-hamburger {
        display: flex;
      }

      .scene1-content {
        gap: clamp(8px, 2vw, 14px);
        padding-top: clamp(65px, 11vh, 80px);
      }

      .s1-heading {
        font-size: clamp(2rem, 11vw, 3rem);
      }

      .s1-heading-you {
        font-size: clamp(2rem, 11vw, 3rem);
      }

      .s1-photo-frame {
        width: clamp(240px, 88vw, 360px);
      }

      #s1-begin-btn {
        min-width: 180px;
        font-size: 0.9rem;
      }
    }

    /* ===========================
   SCENE 2 — YES/NO (Designer Redesign)
   =========================== */
    #scene-2 {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 20, 70, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 80% 70% at 20% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 80% 70% at 80% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, #0e0008 0%, #1c0012 30%, #2a0018 60%, #150010 100%);
      overflow: hidden;
      justify-content: center;
    }

    .s2-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 4vw, 32px) clamp(16px, 4vw, 40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(8px, 1.5vh, 18px);
      max-width: 700px;
      width: 100%;
      max-height: 100vh;
      overflow: hidden;
    }

    /* Gift + Sparkle Platform for Scene 2 */
    .s2-gift-stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .s2-gift-emoji {
      font-size: clamp(2.5rem, 7vh, 4.5rem);
      filter: drop-shadow(0 0 20px rgba(255, 160, 60, 0.8)) drop-shadow(0 0 45px rgba(220, 80, 30, 0.5)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
      animation: s2GiftFloat 2.8s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }

    @keyframes s2GiftFloat {

      0%,
      100% {
        transform: translateY(0px) rotate(-2deg);
      }

      50% {
        transform: translateY(-14px) rotate(2deg);
      }
    }

    .s2-gift-platform {
      width: clamp(80px, 20vw, 140px);
      height: clamp(14px, 3vh, 22px);
      background: radial-gradient(ellipse, rgba(255, 130, 80, 0.6) 0%, rgba(200, 60, 60, 0.3) 50%, transparent 80%);
      border-radius: 50%;
      filter: blur(4px);
      margin-top: -8px;
      position: relative;
      z-index: 1;
      animation: s2GiftFloat 2.8s ease-in-out infinite;
    }

    /* Sparkle dots around platform */
    .s2-sparkle-dot {
      position: absolute;
      width: 5px;
      height: 5px;
      background: #ffcf6e;
      border-radius: 50%;
      filter: blur(0.5px);
      box-shadow: 0 0 6px #ffcf6e, 0 0 12px rgba(255, 200, 80, 0.6);
      animation: s2SparklePop var(--dur, 1.5s) var(--delay, 0s) ease-in-out infinite;
    }

    @keyframes s2SparklePop {

      0%,
      100% {
        opacity: 0.2;
        transform: scale(0.7);
      }

      50% {
        opacity: 1;
        transform: scale(1.3);
      }
    }

    /* Ornament (shared) */
    .s2-ornament {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(201, 169, 110, 0.8);
    }

    .s2-ornament-line {
      height: 1px;
      width: clamp(30px, 6vw, 70px);
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
    }

    .s2-ornament-text {
      font-family: var(--font-dancing);
      font-size: 0.95rem;
      letter-spacing: 2px;
    }

    /* Heading */
    .s2-heading {
      font-family: var(--font-playfair);
      font-weight: 800;
      font-size: clamp(1.6rem, 4.5vh, 3rem);
      line-height: 1.2;
    }

    .s2-heading-white {
      color: rgba(255, 248, 240, 0.97);
      display: block;
    }

    .s2-heading-pink {
      background: linear-gradient(135deg, #ff6ba0 0%, #ff2d6f 50%, #e8115e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    /* Subtitle */
    .s2-subtitle {
      font-family: var(--font-poppins);
      font-weight: 300;
      font-size: clamp(0.8rem, 2vh, 1rem);
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.7;
    }

    /* Buttons */
    .s2-buttons {
      display: flex;
      align-items: center;
      gap: clamp(14px, 3vw, 32px);
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
    }

    #yes-btn {
      position: relative;
      width: clamp(140px, 30vw, 200px);
      height: clamp(50px, 7vh, 64px);
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      background: linear-gradient(135deg, #ff4d90 0%, #e8115e 50%, #c8005a 100%);
      background-size: 200% auto;
      animation: s2YesBtnShimmer 3s linear infinite;
      border-radius: 100px;
      border: none;
      color: white;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-poppins);
      box-shadow:
        0 0 20px rgba(255, 60, 130, 0.7),
        0 0 50px rgba(220, 20, 90, 0.45),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.02em;
    }

    @keyframes s2YesBtnShimmer {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    #yes-btn:hover {
      transform: scale(1.06) translateY(-2px);
      box-shadow: 0 0 35px rgba(255, 60, 130, 0.9), 0 0 70px rgba(220, 20, 90, 0.6), 0 8px 30px rgba(0, 0, 0, 0.35);
    }

    .yes-ring {
      position: absolute;
      inset: -6px;
      border: 2px solid rgba(255, 100, 160, 0.8);
      border-radius: 50px;
      animation: s2RingPulse 1.8s ease-out infinite;
      pointer-events: none;
    }

    @keyframes s2RingPulse {
      0% {
        transform: scale(1);
        opacity: 0.9;
      }

      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

    #no-btn {
      position: fixed;
      width: clamp(120px, 25vw, 170px);
      height: clamp(50px, 7vh, 64px);
      background: rgba(15, 5, 10, 0.7);
      color: rgba(255, 255, 255, 0.8);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      border-radius: 100px;
      cursor: pointer;
      font-family: var(--font-poppins);
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      font-weight: 500;
      z-index: 200;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: transform 0.15s, box-shadow 0.15s;
      letter-spacing: 0.02em;
    }

    /* Hint text */
    .s2-no-hint {
      font-family: var(--font-dancing);
      font-size: clamp(0.8rem, 2vw, 0.95rem);
      color: rgba(255, 255, 255, 0.5);
      font-style: italic;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ===========================
   SCENE 3 — MUSIC + LOADING
   =========================== */
    #scene-3 {
      background: radial-gradient(ellipse at center, #1a0030 0%, #000 100%);
    }

    .s3-content {
      z-index: 5;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }

    .s3-heart-svg {
      width: clamp(70px, 20vw, 100px);
      animation: heartBeat 0.8s ease-in-out infinite;
    }

    @keyframes heartBeat {

      0%,
      100% {
        transform: scale(0.9);
      }

      50% {
        transform: scale(1.15);
      }
    }

    #typed-s3 {
      font-family: var(--font-dancing);
      font-size: clamp(1.2rem, 4vw, 1.8rem);
      color: var(--rose-gold-light);
      min-height: 3.5em;
      text-align: center;
      line-height: 1.8;
    }

    /* ===========================
   SCENE 4 — UNLOCK (Designer Redesign)
   =========================== */
    #scene-4 {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 20, 70, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 80% 70% at 20% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 80% 70% at 80% 80%, rgba(120, 5, 40, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, #0e0008 0%, #1a000e 40%, #250015 70%, #100008 100%);
      overflow: hidden;
      justify-content: center;
    }

    /* Remove old before overlay */
    #scene-4::before {
      display: none;
    }

    .s4-content {
      position: relative;
      z-index: 5;
      text-align: center;
      width: min(90vw, 520px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 1.8vh, 20px);
      max-height: 100vh;
      overflow: hidden;
    }

    /* Glassmorphism card wrapper */
    .s4-card {
      width: 100%;
      background: rgba(10, 3, 8, 0.72);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1.5px solid rgba(201, 169, 110, 0.4);
      border-radius: clamp(16px, 3vw, 28px);
      padding: clamp(20px, 4vh, 40px) clamp(20px, 4vw, 40px) clamp(16px, 3vh, 30px);
      box-shadow:
        0 0 0 1px rgba(201, 169, 110, 0.1),
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(200, 50, 80, 0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 1.8vh, 18px);
    }

    /* Heart-Lock Icon with neon ring */
    .s4-lock-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: clamp(-20px, -3vh, -30px);
    }

    .s4-lock-ring {
      position: absolute;
      width: clamp(90px, 18vh, 130px);
      height: clamp(90px, 18vh, 130px);
      border-radius: 50%;
      border: 2.5px solid transparent;
      background: conic-gradient(rgba(255, 80, 150, 0.9) 0%,
          rgba(255, 160, 80, 0.8) 25%,
          rgba(255, 80, 150, 0.9) 50%,
          rgba(255, 160, 80, 0.8) 75%,
          rgba(255, 80, 150, 0.9) 100%) 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: s4RingRotate 4s linear infinite;
      box-shadow: 0 0 20px rgba(255, 80, 150, 0.5), 0 0 40px rgba(255, 80, 150, 0.25);
    }

    @keyframes s4RingRotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .s4-lock {
      font-size: clamp(2.5rem, 6vh, 4rem);
      filter:
        drop-shadow(0 0 15px rgba(255, 130, 60, 0.9)) drop-shadow(0 0 35px rgba(255, 80, 130, 0.6)) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
      animation: s4LockGlow 2.5s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }

    @keyframes s4LockGlow {

      0%,
      100% {
        filter: drop-shadow(0 0 15px rgba(255, 130, 60, 0.9)) drop-shadow(0 0 35px rgba(255, 80, 130, 0.6)) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
      }

      50% {
        filter: drop-shadow(0 0 25px rgba(255, 160, 80, 1)) drop-shadow(0 0 55px rgba(255, 100, 150, 0.8)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
      }
    }

    /* Heading */
    .s4-heading {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1.8rem, 4.5vh, 2.8rem);
      background: linear-gradient(135deg, #f5c06a 0%, #f9e4a0 40%, #e8a040 70%, #f9d070 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }

    .s4-sub {
      font-family: var(--font-poppins);
      font-size: clamp(0.78rem, 1.8vh, 0.95rem);
      color: rgba(255, 255, 255, 0.65);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.01em;
    }

    /* OTP-style date inputs */
    .date-inputs {
      display: flex;
      align-items: center;
      gap: clamp(6px, 1.5vw, 12px);
      justify-content: center;
      flex-wrap: wrap;
    }

    .date-sep {
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      color: var(--rose-gold);
      font-weight: 700;
      line-height: 1;
    }

    .digit-box {
      width: clamp(52px, 13vw, 72px);
      height: clamp(58px, 12vh, 74px);
      background: rgba(5, 2, 5, 0.6);
      border: 1.5px solid rgba(201, 169, 110, 0.55);
      border-radius: 14px;
      color: white;
      font-size: clamp(1.3rem, 4vw, 1.8rem);
      font-family: var(--font-playfair);
      text-align: center;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      caret-color: var(--rose-gold);
      backdrop-filter: blur(8px);
      letter-spacing: 0.05em;
    }

    .digit-box::placeholder {
      color: rgba(201, 169, 110, 0.4);
      font-size: clamp(0.75rem, 2vw, 0.9rem);
      font-family: var(--font-poppins);
    }

    .digit-box:focus {
      border-color: rgba(201, 169, 110, 0.9);
      box-shadow: 0 0 20px rgba(201, 169, 110, 0.35), 0 0 40px rgba(201, 169, 110, 0.15);
    }

    .date-hint {
      font-family: var(--font-poppins);
      font-size: clamp(0.72rem, 1.5vw, 0.82rem);
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.05em;
    }

    /* Unlock Button */
    #unlock-btn {
      background: linear-gradient(135deg, #f0956a 0%, #d96040 40%, #c04030 70%, #f0956a 100%);
      background-size: 200% auto;
      animation: s4BtnShimmer 3s linear infinite;
      color: white;
      font-family: var(--font-poppins);
      font-weight: 700;
      font-size: clamp(0.95rem, 2.2vw, 1.1rem);
      padding: clamp(13px, 1.8vh, 18px) clamp(36px, 8vw, 60px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
      box-shadow:
        0 4px 25px rgba(220, 90, 50, 0.55),
        0 8px 40px rgba(180, 50, 30, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.03em;
      min-width: 160px;
      min-height: 46px;
      position: relative;
      overflow: hidden;
    }

    @keyframes s4BtnShimmer {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    #unlock-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: s4BtnGleam 3s ease-in-out infinite 0.5s;
    }

    @keyframes s4BtnGleam {
      0% {
        left: -100%;
      }

      50%,
      100% {
        left: 200%;
      }
    }

    #unlock-btn:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 8px 35px rgba(220, 90, 50, 0.75), 0 15px 50px rgba(180, 50, 30, 0.5);
    }

    /* Bottom quote for Scene 4 */
    .s4-bottom-ornament {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(201, 169, 110, 0.7);
    }

    .s4-bottom-ornament-line {
      height: 1px;
      width: clamp(20px, 4vw, 50px);
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
    }

    .s4-quote {
      font-family: var(--font-dancing);
      font-size: clamp(0.78rem, 1.8vh, 0.92rem);
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    /* Mobile layout for Scene 4 date inputs */
    @media (max-width: 480px) {
      .date-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        max-width: 200px;
      }

      .date-inputs .date-sep {
        grid-column: 1 / -1;
        text-align: center;
      }
    }

    /* ===========================
   SCENE 5 — BIRTHDAY CAKE (Premium Redesign)
   =========================== */
    #scene-5 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 5%, rgba(200, 30, 100, 0.6) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 15% 85%, rgba(150, 10, 60, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 85% 85%, rgba(150, 10, 60, 0.65) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #130018 40%, #200020 70%, #0c000f 100%);
      overflow: hidden;
    }

    /* ---- String Fairy Lights ---- */
    .s5-lights {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      pointer-events: none;
      z-index: 3;
    }

    .s5-lights-svg {
      width: 100%;
      height: 80px;
      overflow: visible;
    }

    /* ---- Neon Heart Ring (behind cake) ---- */
    .s5-heart-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      z-index: 2;
      pointer-events: none;
    }

    .s5-heart-ring svg {
      width: clamp(260px, 55vw, 400px);
      height: auto;
      filter:
        drop-shadow(0 0 12px rgba(255, 80, 160, 0.9))
        drop-shadow(0 0 30px rgba(255, 60, 140, 0.6))
        drop-shadow(0 0 55px rgba(200, 20, 100, 0.35));
      animation: s5HeartPulse 3s ease-in-out infinite;
    }

    @keyframes s5HeartPulse {
      0%, 100% {
        filter: drop-shadow(0 0 12px rgba(255, 80, 160, 0.9)) drop-shadow(0 0 30px rgba(255, 60, 140, 0.6)) drop-shadow(0 0 55px rgba(200, 20, 100, 0.35));
      }
      50% {
        filter: drop-shadow(0 0 20px rgba(255, 100, 180, 1)) drop-shadow(0 0 50px rgba(255, 80, 160, 0.8)) drop-shadow(0 0 80px rgba(220, 40, 120, 0.55));
      }
    }

    /* ---- S5 Content ---- */
    .s5-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(60px, 10vh, 80px) clamp(16px, 4vw, 40px) clamp(12px, 2vh, 24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(6px, 1.2vh, 14px);
      max-height: 100vh;
      overflow: hidden;
      width: 100%;
    }

    /* ---- Premium CSS Birthday Cake ---- */
    .cake-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: clamp(180px, 45vw, 280px);
      filter:
        drop-shadow(0 0 20px rgba(255, 80, 160, 0.5))
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }

    /* Platform/Disc under cake */
    .cake-platform {
      width: 110%;
      height: clamp(10px, 2vh, 16px);
      background: linear-gradient(180deg, #ff69a8 0%, #d44080 60%, #b03060 100%);
      border-radius: 50%;
      box-shadow: 0 4px 20px rgba(255, 60, 130, 0.5), 0 0 30px rgba(200, 30, 100, 0.3);
    }

    .cake-tier {
      border-radius: clamp(6px, 2vw, 10px);
      position: relative;
      overflow: visible;
    }

    /* Bottom tier */
    .cake-tier-1 {
      width: 100%;
      height: clamp(44px, 10vh, 68px);
      background: linear-gradient(135deg, #f078b0 0%, #d84890 50%, #b83070 100%);
      border-radius: clamp(6px, 2vw, 10px);
      border: 1.5px solid rgba(255, 150, 200, 0.4);
    }

    /* Middle tier */
    .cake-tier-2 {
      width: 82%;
      height: clamp(40px, 9vh, 60px);
      background: linear-gradient(135deg, #f890c0 0%, #e060a0 50%, #c84888 100%);
      border-radius: clamp(6px, 2vw, 10px);
      margin-bottom: -2px;
      border: 1.5px solid rgba(255, 160, 210, 0.4);
    }

    /* Top tier */
    .cake-tier-3 {
      width: 62%;
      height: clamp(34px, 8vh, 52px);
      background: linear-gradient(135deg, #faa0d0 0%, #f070b0 50%, #d85098 100%);
      border-radius: clamp(6px, 2vw, 10px);
      margin-bottom: -2px;
      border: 1.5px solid rgba(255, 180, 220, 0.4);
    }

    .frosting-drip {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      overflow: visible;
      pointer-events: none;
    }

    .drip {
      position: absolute;
      top: 0;
      width: clamp(10px, 3vw, 16px);
      background: rgba(255, 255, 255, 0.85);
      border-radius: 0 0 50% 50%;
      animation: drip 2s ease-out forwards;
      animation-delay: var(--d, 0s);
    }

    @keyframes drip {
      from { height: 0; }
      to { height: var(--h, 20px); }
    }

    /* Gold ribbon on bottom tier */
    .cake-ribbon {
      position: absolute;
      top: 40%;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 2%, #f0c060 20%, #e8a040 50%, #f0c060 80%, transparent 98%);
      pointer-events: none;
    }

    /* Happy Birthday label */
    .cake-label {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      font-family: var(--font-dancing);
      color: rgba(255, 255, 255, 0.97);
      font-size: clamp(0.65rem, 2vw, 0.9rem);
      width: 100%;
      text-align: center;
      pointer-events: none;
      text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 150, 200, 0.4);
      letter-spacing: 0.04em;
      line-height: 1.3;
    }

    /* Rose decorations on cake */
    .cake-roses {
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-around;
      padding: 0 8px;
      pointer-events: none;
      font-size: clamp(0.9rem, 2.5vw, 1.3rem);
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    /* Gold bow at bottom */
    .cake-bow {
      position: absolute;
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-size: clamp(1.4rem, 4vw, 2rem);
      filter: drop-shadow(0 3px 12px rgba(200, 160, 40, 0.7)) drop-shadow(0 0 20px rgba(200, 160, 40, 0.4));
      z-index: 2;
      pointer-events: none;
    }

    .candles-row {
      display: flex;
      gap: clamp(6px, 2vw, 12px);
      justify-content: center;
      align-items: flex-end;
      margin-bottom: -4px;
      z-index: 6;
    }

    .candle-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .flame {
      width: clamp(9px, 2.5vw, 13px);
      height: clamp(14px, 4vw, 20px);
      background: radial-gradient(ellipse at bottom, #fff9aa 10%, #ffee44 30%, #ff9900 70%, rgba(255,80,0,0.4) 100%);
      border-radius: 50% 50% 30% 30%;
      animation: flicker var(--fd, 0.38s) ease-in-out infinite alternate;
      transform-origin: bottom center;
      cursor: pointer;
      position: relative;
      filter: drop-shadow(0 0 6px rgba(255, 200, 50, 0.9)) drop-shadow(0 0 14px rgba(255, 140, 0, 0.6));
    }

    @keyframes flicker {
      from { transform: scaleY(1) scaleX(1) rotate(-3deg); filter: drop-shadow(0 0 6px rgba(255, 200, 50, 0.9)) drop-shadow(0 0 14px rgba(255, 140, 0, 0.6)); }
      to { transform: scaleY(1.18) scaleX(0.86) rotate(4deg); filter: drop-shadow(0 0 9px rgba(255, 220, 80, 1)) drop-shadow(0 0 20px rgba(255, 160, 0, 0.8)); }
    }

    .candle-body {
      width: clamp(7px, 2vw, 10px);
      height: clamp(18px, 5vw, 28px);
      background: linear-gradient(to right, #fff9e8 0%, #ffe082 40%, #fdd835 70%, #f9a825 100%);
      border-radius: 3px 3px 2px 2px;
      box-shadow: inset -2px 0 4px rgba(0,0,0,0.15);
    }

    .smoke-puff {
      position: absolute;
      bottom: 100%;
      pointer-events: none;
      z-index: 20;
    }

    .smoke-circle {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(200, 200, 210, 0.7);
      position: absolute;
      animation: smokeRise 1s ease-out forwards;
    }

    @keyframes smokeRise {
      from { opacity: 0.7; transform: translateY(0) scale(1); }
      to { opacity: 0; transform: translateY(-32px) scale(2.2); }
    }

    /* ---- Scene 5 Heading ---- */
    .s5-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.4rem, 4.5vh, 2.6rem);
      background: linear-gradient(135deg, #ff5fa0 0%, #ff1a6e 45%, #e8005a 75%, #ff5fa0 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: s5TitleShimmer 4s linear infinite;
      line-height: 1.2;
      letter-spacing: -0.01em;
      filter: drop-shadow(0 0 20px rgba(255, 50, 120, 0.4));
    }

    @keyframes s5TitleShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    /* S5 ornament divider */
    .s5-ornament {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .s5-ornament-line {
      height: 1px;
      width: clamp(30px, 6vw, 70px);
      background: linear-gradient(90deg, transparent, rgba(255, 80, 150, 0.6), transparent);
    }

    .s5-ornament-dot {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .s5-ornament-dot span {
      font-size: 0.8rem;
      animation: s5HeartPulse 1.5s ease-in-out infinite;
    }

    .s5-sub {
      font-family: var(--font-poppins);
      font-size: clamp(0.82rem, 2vh, 1rem);
      color: rgba(255, 255, 255, 0.75);
      font-weight: 300;
      letter-spacing: 0.01em;
    }

    /* ---- Make a Wish Button ---- */
    #s5-wish-btn {
      background: linear-gradient(135deg, #f0a050 0%, #e07030 40%, #c85020 70%, #f0a050 100%);
      background-size: 200% auto;
      animation: s5BtnShimmer 3s linear infinite;
      color: white;
      font-family: var(--font-poppins);
      font-weight: 700;
      font-size: clamp(0.9rem, 2.2vw, 1.05rem);
      padding: clamp(12px, 1.8vh, 18px) clamp(28px, 6vw, 50px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
      box-shadow:
        0 4px 25px rgba(220, 100, 40, 0.6),
        0 8px 40px rgba(180, 60, 20, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.03em;
      min-width: 170px;
      min-height: 46px;
      position: relative;
      overflow: hidden;
    }

    @keyframes s5BtnShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    #s5-wish-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: s5BtnGleam 3s ease-in-out infinite 0.5s;
    }

    @keyframes s5BtnGleam {
      0% { left: -100%; }
      50%, 100% { left: 200%; }
    }

    #s5-wish-btn:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 8px 35px rgba(220, 100, 40, 0.8), 0 15px 50px rgba(180, 60, 20, 0.5);
    }

    /* ===========================
   SCENE 6 — BLOW CANDLE (Premium Redesign)
   =========================== */
    #scene-6 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 10%, rgba(200, 30, 100, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 15% 85%, rgba(150, 10, 60, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 85% 85%, rgba(150, 10, 60, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #130018 40%, #200020 70%, #0c000f 100%);
      overflow: hidden;
    }

    .s6-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(20px, 5vh, 40px) clamp(16px, 4vw, 40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 2vh, 20px);
      width: 100%;
    }

    /* Heading */
    .s6-heading {
      font-family: var(--font-dancing);
      font-size: clamp(1.5rem, 5vh, 3rem);
      background: linear-gradient(135deg, #f5c06a 0%, #ffe4a0 50%, #e8a040 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: s6HeadingShimmer 4s linear infinite;
      filter: drop-shadow(0 0 20px rgba(240, 180, 80, 0.4));
      line-height: 1.2;
    }

    @keyframes s6HeadingShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    /* Subtitle */
    .s6-sub {
      font-family: var(--font-poppins);
      font-size: clamp(0.82rem, 2vh, 1rem);
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    /* Ornament divider */
    .s6-ornament {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .s6-ornament-line {
      height: 1px;
      width: clamp(30px, 6vw, 70px);
      background: linear-gradient(90deg, transparent, rgba(240, 180, 80, 0.5), transparent);
    }

    /* Candle Stage — glassmorphism card */
    .s6-stage {
      position: relative;
      background: linear-gradient(135deg, rgba(80, 5, 40, 0.55) 0%, rgba(20, 0, 30, 0.65) 100%);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid rgba(255, 120, 180, 0.25);
      border-radius: clamp(20px, 4vw, 32px);
      padding: clamp(24px, 4vh, 40px) clamp(24px, 5vw, 52px);
      box-shadow:
        0 0 0 1px rgba(255, 80, 150, 0.08),
        0 12px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(180, 20, 80, 0.2),
        inset 0 0 40px rgba(200, 50, 100, 0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(14px, 2.5vh, 24px);
    }

    /* Top gold accent line on card */
    .s6-stage::before {
      content: '';
      position: absolute;
      top: 0; left: 12%; right: 12%;
      height: 2px;
      border-radius: 0 0 4px 4px;
      background: linear-gradient(90deg, transparent, rgba(255, 160, 60, 0.9), rgba(255, 200, 80, 0.9), rgba(255, 160, 60, 0.9), transparent);
    }

    /* Neon pulse ring */
    .s6-ring {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      animation: s6RingPulse 2.5s ease-in-out infinite;
    }

    @keyframes s6RingPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255, 160, 60, 0.3); }
      50% { box-shadow: 0 0 0 14px rgba(255, 160, 60, 0); }
    }

    /* Candle row */
    .s6-candles {
      display: flex;
      gap: clamp(14px, 4vw, 28px);
      justify-content: center;
      align-items: flex-end;
      padding: 8px 0 0;
    }

    .s6-candle-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: transform 0.2s;
      position: relative;
    }

    .s6-candle-wrap:hover {
      transform: scale(1.08) translateY(-4px);
    }

    /* Flame */
    .s6-flame {
      width: clamp(14px, 4vw, 20px);
      height: clamp(24px, 7vw, 34px);
      background: radial-gradient(ellipse at bottom, #fff9aa 5%, #ffee44 25%, #ff9900 65%, rgba(255, 60, 0, 0.35) 100%);
      border-radius: 50% 50% 30% 30%;
      animation: flicker 0.35s ease-in-out infinite alternate;
      transform-origin: bottom center;
      transition: opacity 0.4s, transform 0.4s;
      filter:
        drop-shadow(0 0 8px rgba(255, 220, 50, 0.9))
        drop-shadow(0 0 18px rgba(255, 140, 0, 0.6))
        drop-shadow(0 0 35px rgba(255, 100, 0, 0.35));
    }

    /* Wick */
    .s6-wick {
      width: 2px;
      height: clamp(8px, 2vw, 12px);
      background: linear-gradient(to bottom, #888 0%, #3a2000 100%);
      border-radius: 1px;
      margin-bottom: -1px;
    }

    /* Candle body */
    .s6-candle-body {
      width: clamp(14px, 4vw, 20px);
      height: clamp(60px, 16vw, 90px);
      background: linear-gradient(
        to right,
        #ffe8c0 0%,
        #fff9e8 15%,
        #ffe082 40%,
        #fdd835 65%,
        #f9a825 85%,
        #e68900 100%
      );
      border-radius: 4px 4px 3px 3px;
      box-shadow:
        inset -3px 0 8px rgba(0, 0, 0, 0.2),
        inset 3px 0 5px rgba(255, 255, 255, 0.3),
        0 4px 20px rgba(255, 180, 50, 0.35);
      position: relative;
    }

    /* Gold stripe on candle */
    .s6-candle-body::after {
      content: '';
      position: absolute;
      top: 30%;
      left: 0; right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, transparent 5%, rgba(255, 220, 80, 0.7) 30%, rgba(255, 200, 50, 0.9) 50%, rgba(255, 220, 80, 0.7) 70%, transparent 95%);
    }

    /* Candle base drip */
    .s6-candle-base {
      width: clamp(18px, 5vw, 26px);
      height: 5px;
      background: linear-gradient(to bottom, #fdd835 0%, #f9a825 100%);
      border-radius: 0 0 4px 4px;
      box-shadow: 0 3px 8px rgba(255, 180, 50, 0.4);
    }

    /* Counter */
    .s6-counter {
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.9rem, 2.5vh, 1.15rem);
      color: rgba(255, 220, 160, 0.9);
    }

    /* Progress bar */
    .s6-counter-bar {
      width: clamp(120px, 35vw, 200px);
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .s6-counter-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #ff9900, #ffee44);
      border-radius: 2px;
      transition: width 0.4s ease;
      box-shadow: 0 0 8px rgba(255, 180, 50, 0.6);
    }

    /* Mic tip */
    .s6-mic-tip {
      font-family: var(--font-poppins);
      font-size: clamp(0.75rem, 1.8vh, 0.88rem);
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.02em;
    }

    #flash-overlay {
      position: fixed;
      inset: 0;
      background: white;
      opacity: 0;
      pointer-events: none;
      z-index: 8000;
    }

    /* ===========================
   SCENE 7 — THE WORLD OF OURS (Premium Redesign)
   =========================== */
    #scene-7 {
      background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(140, 10, 90, 0.55) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 15% 85%, rgba(100, 5, 60, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 85% 85%, rgba(100, 5, 60, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #020008 0%, #08000f 35%, #100015 65%, #050005 100%);
      overflow: hidden;
    }

    /* Twinkling Stars canvas */
    #s7-star-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    /* Constellation SVG */
    .s7-constellation {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      opacity: 0.55;
    }

    /* Shooting stars */
    .s7-shoot {
      position: absolute;
      width: clamp(60px, 18vw, 120px);
      height: 1.5px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 200, 220, 0.5), transparent);
      border-radius: 2px;
      animation: s7Shoot var(--dur, 3.5s) var(--delay, 0s) ease-in-out infinite;
      opacity: 0;
      transform-origin: left center;
    }

    @keyframes s7Shoot {
      0% { opacity: 0; transform: translateX(-30px) translateY(0) rotate(var(--angle, -25deg)) scaleX(0); }
      5% { opacity: 1; transform: translateX(0) translateY(0) rotate(var(--angle, -25deg)) scaleX(1); }
      25% { opacity: 0; transform: translateX(200px) translateY(50px) rotate(var(--angle, -25deg)) scaleX(1); }
      100% { opacity: 0; transform: translateX(200px) translateY(50px) rotate(var(--angle, -25deg)) scaleX(0); }
    }

    /* Neon heart behind title */
    .s7-neon-heart {
      position: absolute;
      top: clamp(20px, 8vh, 60px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      pointer-events: none;
    }

    .s7-neon-heart svg {
      width: clamp(180px, 45vw, 300px);
      height: auto;
      filter:
        drop-shadow(0 0 10px rgba(255, 70, 150, 0.9))
        drop-shadow(0 0 25px rgba(255, 50, 130, 0.6))
        drop-shadow(0 0 50px rgba(200, 20, 100, 0.35));
      animation: s7NeonPulse 3.5s ease-in-out infinite;
    }

    @keyframes s7NeonPulse {
      0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 70, 150, 0.9)) drop-shadow(0 0 25px rgba(255, 50, 130, 0.6)) drop-shadow(0 0 50px rgba(200, 20, 100, 0.35)); }
      50% { filter: drop-shadow(0 0 18px rgba(255, 100, 180, 1)) drop-shadow(0 0 40px rgba(255, 70, 150, 0.8)) drop-shadow(0 0 70px rgba(220, 40, 120, 0.55)); }
    }

    /* Couple Silhouette at bottom */
    .s7-silhouette {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      pointer-events: none;
    }

    .s7-silhouette svg {
      width: 100%;
      height: clamp(120px, 28vh, 200px);
    }

    /* Corner roses (reusing s1 styles) */
    /* Already in s1-rose styles */

    /* S7 Content */
    .s7-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(40px, 8vh, 70px) clamp(16px, 4vw, 40px) clamp(120px, 28vh, 200px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(8px, 1.5vh, 18px);
      width: 100%;
    }

    /* WELCOME TO... */
    .s7-welcome-small {
      font-family: var(--font-poppins);
      font-weight: 500;
      font-size: clamp(0.7rem, 1.8vw, 0.9rem);
      color: rgba(201, 169, 110, 0.9);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .s7-welcome-small::before,
    .s7-welcome-small::after {
      content: '';
      height: 1px;
      width: clamp(20px, 5vw, 50px);
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.7), transparent);
    }

    /* Main Title — split style */
    .s7-main-title {
      line-height: 1.1;
      margin: 0;
    }

    .s7-title-line1 {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(2.2rem, 7vh, 4.5rem);
      color: rgba(255, 248, 240, 0.98);
      display: block;
      letter-spacing: -0.02em;
      text-shadow:
        0 0 40px rgba(255, 220, 240, 0.3),
        0 2px 20px rgba(0, 0, 0, 0.4);
    }

    .s7-title-line2 {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(2rem, 6.5vh, 4.2rem);
      background: linear-gradient(135deg, #ff6ba0 0%, #ff2d6f 50%, #e8115e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      filter: drop-shadow(0 0 15px rgba(255, 60, 120, 0.4));
    }

    .s7-title-heart-icon {
      font-size: 0.5em;
      -webkit-text-fill-color: initial;
      color: #ff6ba0;
      animation: s7HeartBeat 1.8s ease-in-out infinite;
    }

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

    /* Names */
    .s7-names {
      font-family: var(--font-dancing);
      font-weight: 700;
      font-size: clamp(1.1rem, 3.5vh, 1.8rem);
      background: linear-gradient(135deg, #f5c06a 0%, #f9e4a0 50%, #e8a040 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .s7-names-hearts {
      -webkit-text-fill-color: initial;
      color: #ff6ba0;
      font-size: 0.9em;
    }

    /* Gold divider with heart */
    .s7-divider {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .s7-divider-line {
      height: 1px;
      width: 0;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.7), transparent);
      border-radius: 2px;
      animation: s7DrawLine 0.9s ease-out forwards 0.5s;
    }

    @keyframes s7DrawLine {
      to { width: clamp(60px, 15vw, 120px); }
    }

    .s7-divider-heart {
      font-size: 0.8rem;
      animation: s7HeartBeat 1.8s ease-in-out infinite;
    }

    /* Romantic quote */
    .s7-quote {
      font-family: var(--font-poppins);
      font-size: clamp(0.8rem, 2vh, 0.95rem);
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
      font-style: italic;
      max-width: 420px;
      line-height: 1.7;
    }

    /* Continue Button */
    #s7-continue {
      background: linear-gradient(135deg, #f0956a 0%, #e05040 40%, #d03030 70%, #f0956a 100%);
      background-size: 200% auto;
      animation: s7BtnShimmer 3s linear infinite;
      color: white;
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.92rem, 2.2vw, 1.05rem);
      padding: clamp(13px, 1.8vh, 18px) clamp(32px, 7vw, 52px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
      box-shadow:
        0 4px 25px rgba(220, 80, 50, 0.55),
        0 8px 40px rgba(180, 40, 30, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.03em;
      min-width: 160px;
      min-height: 46px;
      position: relative;
      overflow: hidden;
    }

    @keyframes s7BtnShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    #s7-continue::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: s7BtnGleam 3s ease-in-out infinite 0.5s;
    }

    @keyframes s7BtnGleam {
      0% { left: -100%; }
      50%, 100% { left: 200%; }
    }

    #s7-continue:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 8px 35px rgba(220, 80, 50, 0.75), 0 15px 50px rgba(180, 40, 30, 0.5);
    }

    /* Let the magic begin footer */
    .s7-magic-footer {
      font-family: var(--font-dancing);
      font-size: clamp(0.82rem, 2vw, 0.95rem);
      color: rgba(255, 180, 120, 0.7);
      display: flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.02em;
    }

    /* ===========================
   SCENE 8 — PERSONAL MESSAGE (Premium Redesign)
   =========================== */
    #scene-8 {
      background:
        radial-gradient(ellipse 70% 50% at 50% 10%, rgba(200, 30, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 85%, rgba(140, 10, 55, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 85%, rgba(140, 10, 55, 0.55) 0%, transparent 60%),
        linear-gradient(180deg, #08000f 0%, #120016 40%, #1e0020 70%, #080010 100%);
      overflow: hidden;
    }

    .s8-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 4vw, 28px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 2vh, 18px);
      width: min(92vw, 660px);
    }

    .s8-from {
      font-family: var(--font-dancing);
      font-weight: 700;
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      background: linear-gradient(135deg, #f5c06a, #ffe4a0, #e8a040);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.04em;
    }

    /* Envelope animation */
    .envelope-container {
      position: relative;
      width: clamp(70px, 15vw, 90px);
      height: clamp(55px, 12vw, 68px);
      filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.5));
    }

    .envelope-body {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #C9A96E 0%, #8B1A4A 100%);
      border-radius: 6px;
      position: absolute;
      bottom: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .envelope-flap {
      width: 0;
      height: 0;
      border-left: calc(clamp(70px, 15vw, 90px) / 2) solid transparent;
      border-right: calc(clamp(70px, 15vw, 90px) / 2) solid transparent;
      border-top: calc(clamp(55px, 12vw, 68px) * 0.55) solid rgba(160, 100, 60, 0.9);
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: top center;
      animation: openFlap 1.5s ease-out forwards 0.5s;
    }

    @keyframes openFlap {
      from { transform: rotateX(0deg); }
      to { transform: rotateX(180deg); }
    }

    .envelope-heart {
      position: absolute;
      font-size: clamp(1.3rem, 4vw, 1.7rem);
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      animation: heartRise 1.5s ease-out forwards 1.5s;
      opacity: 0;
    }

    @keyframes heartRise {
      from { opacity: 0; transform: translateX(-50%) translateY(0); }
      to { opacity: 1; transform: translateX(-50%) translateY(-15px); }
    }

    .message-card {
      background: linear-gradient(135deg, rgba(100, 10, 55, 0.45) 0%, rgba(20, 0, 35, 0.6) 100%);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1.5px solid rgba(201, 169, 110, 0.35);
      border-radius: clamp(18px, 4vw, 28px);
      padding: clamp(20px, 4vw, 36px);
      box-shadow:
        0 0 0 1px rgba(255, 80, 150, 0.07),
        0 12px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(180, 20, 80, 0.15),
        inset 0 0 40px rgba(201, 169, 110, 0.04);
      width: 100%;
      text-align: left;
      position: relative;
      min-height: clamp(160px, 35vh, 240px);
    }

    /* Gold top accent */
    .message-card::before {
      content: '';
      position: absolute;
      top: 0; left: 12%; right: 12%;
      height: 2px;
      border-radius: 0 0 4px 4px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.9), rgba(255, 215, 80, 0.9), rgba(201, 169, 110, 0.9), transparent);
    }

    .quote-open {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      color: var(--rose-gold);
      line-height: 0.5;
      font-family: var(--font-playfair);
      opacity: 0.55;
    }

    .quote-close {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      color: var(--rose-gold);
      line-height: 0.5;
      font-family: var(--font-playfair);
      text-align: right;
      display: block;
      opacity: 0;
      transition: opacity 0.5s;
    }

    #typed-s8 {
      font-family: var(--font-dancing);
      font-size: clamp(1rem, 3vw, 1.3rem);
      color: rgba(255, 245, 250, 0.97);
      line-height: 2;
      min-height: 7em;
      display: block;
    }

    .s8-signature {
      font-family: var(--font-dancing);
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      color: var(--rose-gold);
      text-align: right;
      margin-top: 12px;
      opacity: 0;
      transition: opacity 0.8s;
    }

    .s8-rising-hearts {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    /* ===========================
   SCENE 9 — PHOTO GALLERY (Premium Redesign)
   =========================== */
    #scene-9 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 15%, rgba(190, 25, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 90%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 90%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #110016 40%, #1c001e 70%, #070010 100%);
      overflow: hidden;
    }

    .s9-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 3vh, 28px) clamp(12px, 4vw, 24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 2vh, 18px);
      width: 100%;
    }

    .s9-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.4rem, 4.5vw, 2.5rem);
      background: linear-gradient(135deg, #f5c06a 0%, #ffe4a0 50%, #e8a040 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 16px rgba(240, 180, 80, 0.35));
    }

    .s9-sub {
      font-family: var(--font-poppins);
      font-size: clamp(0.8rem, 2vw, 0.92rem);
      color: rgba(255, 255, 255, 0.65);
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    .gallery-container {
      position: relative;
      width: clamp(240px, 75vw, 310px);
      height: clamp(320px, 85vw, 400px);
    }

    .photo-card {
      position: absolute;
      top: 0;
      left: 0;
      width: clamp(240px, 75vw, 310px);
      height: clamp(320px, 85vw, 400px);
      background: #fff;
      border-radius: 6px;
      padding: 8px 8px 40px 8px;
      box-shadow:
        0 0 0 3px #C9A96E,
        0 0 30px rgba(201, 169, 110, 0.6),
        8px 8px 30px rgba(0, 0, 0, 0.55);
      cursor: pointer;
      will-change: transform;
      display: flex;
      flex-direction: column;
    }

    .photo-card img {
      width: 100%;
      flex: 1;
      object-fit: cover;
      border-radius: 2px;
      display: block;
      min-height: 0;
    }

    .photo-placeholder {
      width: 100%;
      flex: 1;
      background: linear-gradient(135deg, #2d0050, #1a0030);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }

    .photo-caption {
      font-family: var(--font-dancing);
      font-size: clamp(0.85rem, 2.5vw, 1rem);
      color: #2a001e;
      text-align: center;
      padding-top: 6px;
      line-height: 1.4;
    }

    .gallery-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: center;
    }

    .gallery-arrow {
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, rgba(120, 10, 60, 0.5), rgba(60, 0, 30, 0.6));
      backdrop-filter: blur(12px);
      border: 1.5px solid rgba(201, 169, 110, 0.5);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: var(--rose-gold-light);
      font-size: 1.3rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .gallery-arrow:hover {
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.3), rgba(140, 20, 70, 0.5));
      box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
      transform: scale(1.08);
    }

    .gallery-counter {
      font-family: var(--font-poppins);
      font-size: 0.9rem;
      color: var(--rose-gold);
      letter-spacing: 0.05em;
    }

    /* ===========================
   SCENE 10 — VIDEO (Premium Redesign)
   =========================== */
    #scene-10 {
      background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(150, 10, 60, 0.4) 0%, transparent 70%),
        linear-gradient(180deg, #04000a 0%, #0c0012 50%, #060010 100%);
      overflow: hidden;
    }

    .scanlines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, rgba(255,255,255,0.008) 0px, rgba(255,255,255,0.008) 1px, transparent 1px, transparent 4px);
      pointer-events: none;
      z-index: 2;
    }

    .curtain-deco {
      position: absolute;
      top: 0;
      height: 100%;
      width: clamp(16px, 3.5vw, 36px);
      background: linear-gradient(to right, rgba(100, 5, 30, 0.9), rgba(60, 0, 20, 0.3));
      z-index: 3;
    }

    .curtain-left { left: 0; }
    .curtain-right { right: 0; transform: scaleX(-1); }

    .s10-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 3vh, 28px) clamp(12px, 4vw, 24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 2vh, 18px);
      width: min(92vw, 720px);
    }

    .s10-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.1rem, 3.5vw, 1.9rem);
      background: linear-gradient(135deg, #f5c06a, #ffe4a0, #e8a040);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(240, 180, 80, 0.35));
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      border-radius: clamp(14px, 3vw, 20px);
      overflow: hidden;
      box-shadow:
        0 0 0 2px rgba(201, 169, 110, 0.4),
        0 0 60px rgba(201, 169, 110, 0.3),
        0 16px 60px rgba(0, 0, 0, 0.6);
    }

    #our-video {
      width: 100%;
      display: block;
      background: #111;
    }

    .video-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      padding: 28px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .progress-bar-container {
      height: 4px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 4px;
      cursor: pointer;
      position: relative;
    }

    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--rose-gold), var(--hot-pink));
      border-radius: 4px;
      width: 0%;
      transition: width 0.1s;
      box-shadow: 0 0 6px rgba(255, 100, 160, 0.5);
    }

    .controls-row {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: space-between;
    }

    .ctrl-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: white;
      font-size: 1.2rem;
      min-width: 36px;
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.15s;
    }

    .ctrl-btn:hover { transform: scale(1.2); }

    .time-display {
      font-family: var(--font-poppins);
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.75);
    }

    /* Love reaction row — glassmorphism pill */
    .love-reactions {
      display: flex;
      gap: 6px;
      justify-content: center;
      flex-wrap: wrap;
      background: linear-gradient(135deg, rgba(80, 5, 40, 0.5), rgba(20, 0, 30, 0.6));
      backdrop-filter: blur(12px);
      border: 1px solid rgba(201, 169, 110, 0.25);
      border-radius: 50px;
      padding: 8px 16px;
    }

    .love-react-btn {
      font-size: 1.35rem;
      cursor: pointer;
      background: none;
      border: none;
      transition: transform 0.2s;
      min-width: 44px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .love-react-btn:hover { transform: scale(1.35); }

    #love-count {
      font-family: var(--font-poppins);
      font-size: 0.88rem;
      color: var(--rose-gold);
      display: flex;
      align-items: center;
    }

    /* ===========================
   SCENE 11 — BREATHER (Premium Redesign)
   =========================== */
    #scene-11 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 20%, rgba(190, 25, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 85%, rgba(130, 10, 55, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 85%, rgba(130, 10, 55, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #12001a 40%, #1c0020 70%, #080010 100%);
      overflow: hidden;
    }

    .s11-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(20px, 4vh, 40px) clamp(16px, 4vw, 32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(14px, 2.5vh, 28px);
    }

    .s11-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.4rem, 4.5vw, 2.4rem);
      background: linear-gradient(135deg, #fff 0%, #ffe4d0 60%, rgba(255,255,255,0.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.25;
    }

    .s11-sub {
      font-family: var(--font-dancing);
      font-size: clamp(1rem, 2.8vw, 1.3rem);
      background: linear-gradient(135deg, #f5c06a, #ffe4a0, #e8a040);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 400;
    }

    .s11-gif {
      width: clamp(130px, 38vw, 200px);
      border-radius: 50%;
      border: 3px solid rgba(201, 169, 110, 0.7);
      box-shadow:
        0 0 0 6px rgba(201, 169, 110, 0.12),
        0 0 40px rgba(201, 169, 110, 0.35),
        0 0 80px rgba(200, 30, 100, 0.2);
    }

    .s11-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    /* ===========================
   SCENE 12 — QUIZ (Premium Redesign)
   =========================== */
    #scene-12 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 15%, rgba(200, 30, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #110016 40%, #1c001e 70%, #070010 100%);
      overflow: hidden;
    }

    .s12-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 3.5vh, 32px) clamp(12px, 4vw, 24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(10px, 2vh, 18px);
      max-width: min(92vw, 540px);
    }

    .s12-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.3rem, 4vw, 2.2rem);
      background: linear-gradient(135deg, #f5c06a 0%, #ffe4a0 50%, #e8a040 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(240,180,80,0.3));
    }

    .quiz-progress {
      display: flex;
      gap: 8px;
      justify-content: center;
    }

    .quiz-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(201, 169, 110, 0.25);
      transition: background 0.3s, box-shadow 0.3s;
    }

    .quiz-dot.filled {
      background: var(--rose-gold);
      box-shadow: 0 0 8px rgba(201, 169, 110, 0.7);
    }

    .quiz-score {
      font-size: 0.88rem;
      color: var(--rose-gold);
      font-family: var(--font-poppins);
      letter-spacing: 0.04em;
    }

    /* Quiz card — glassmorphism */
    .quiz-card {
      width: 100%;
      background: linear-gradient(135deg, rgba(90, 5, 45, 0.5), rgba(18, 0, 28, 0.65));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1.5px solid rgba(201, 169, 110, 0.3);
      border-radius: clamp(16px, 4vw, 26px);
      padding: clamp(20px, 4vw, 32px);
      box-shadow:
        0 0 0 1px rgba(255, 80, 150, 0.07),
        0 10px 50px rgba(0,0,0,0.5),
        0 0 40px rgba(180, 20, 80, 0.15),
        inset 0 0 30px rgba(201, 169, 110, 0.04);
      position: relative;
    }

    .quiz-card::before {
      content: '';
      position: absolute;
      top: 0; left: 12%; right: 12%;
      height: 2px;
      border-radius: 0 0 4px 4px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.9), rgba(255, 215, 80, 0.9), rgba(201, 169, 110, 0.9), transparent);
    }

    .quiz-question {
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.95rem, 2.8vw, 1.15rem);
      color: rgba(255, 245, 250, 0.97);
      margin-bottom: clamp(14px, 2.5vh, 22px);
      line-height: 1.45;
    }

    .quiz-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .quiz-option-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 169, 110, 0.28);
      color: rgba(255, 255, 255, 0.88);
      font-family: var(--font-poppins);
      font-weight: 500;
      font-size: clamp(0.78rem, 2.5vw, 0.93rem);
      padding: 14px 12px;
      border-radius: 14px;
      cursor: pointer;
      text-align: center;
      transition: all 0.22s;
      min-height: 52px;
      line-height: 1.3;
    }

    .quiz-option-btn:hover {
      background: rgba(201, 169, 110, 0.18);
      border-color: var(--rose-gold);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
    }

    .quiz-option-btn.correct {
      background: rgba(0, 200, 100, 0.22);
      border-color: #00c864;
      box-shadow: 0 0 12px rgba(0, 200, 100, 0.3);
    }

    .quiz-option-btn.wrong {
      background: rgba(200, 50, 50, 0.22);
      border-color: #e05050;
      box-shadow: 0 0 12px rgba(200, 50, 50, 0.3);
    }

    /* ===========================
   SCENE 13 — GAME (Premium Redesign)
   =========================== */
    #scene-13 {
      background:
        radial-gradient(ellipse 70% 55% at 50% 15%, rgba(200, 30, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #110016 40%, #1c001e 70%, #070010 100%);
      overflow: hidden;
    }

    .s13-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(20px, 4vh, 40px) clamp(16px, 4vw, 32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(14px, 2.5vh, 28px);
      max-width: min(92vw, 560px);
    }

    .s13-heading {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(1.3rem, 4vw, 2rem);
      background: linear-gradient(135deg, #f5c06a 0%, #ffe4a0 50%, #e8a040 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(240,180,80,0.3));
    }

    .s13-sub {
      font-family: var(--font-poppins);
      font-size: clamp(0.82rem, 2vw, 0.97rem);
      color: rgba(255, 255, 255, 0.72);
      font-weight: 300;
    }

    .s13-gif {
      width: clamp(110px, 32vw, 165px);
      border-radius: clamp(12px, 3vw, 20px);
      border: 2px solid rgba(201, 169, 110, 0.5);
      box-shadow:
        0 0 0 5px rgba(201, 169, 110, 0.1),
        0 0 30px rgba(201, 169, 110, 0.3),
        0 0 60px rgba(200, 30, 100, 0.18);
    }

    .s13-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Would She Rather Game */
    #scene-13b {
      background:
        radial-gradient(ellipse 70% 55% at 50% 15%, rgba(200, 30, 90, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 10% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 80% 55% at 90% 88%, rgba(140, 10, 55, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #080010 0%, #110016 40%, #1c001e 70%, #070010 100%);
      overflow: hidden;
    }

    .s13b-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(20px, 4vh, 40px) clamp(16px, 4vw, 32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(12px, 2.5vh, 22px);
      max-width: min(92vw, 580px);
    }

    .wsr-heading {
      font-family: var(--font-dancing);
      font-size: clamp(1.5rem, 5vw, 2.6rem);
      background: linear-gradient(135deg, #f5c06a, #ffe4a0, #e8a040);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(240,180,80,0.3));
    }

    .wsr-question {
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(0.95rem, 2.8vw, 1.18rem);
      color: rgba(255, 245, 250, 0.97);
      line-height: 1.4;
      background: linear-gradient(135deg, rgba(90, 5, 45, 0.5), rgba(18, 0, 28, 0.6));
      backdrop-filter: blur(14px);
      border: 1px solid rgba(201, 169, 110, 0.25);
      border-radius: clamp(12px, 3vw, 18px);
      padding: clamp(12px, 2.5vw, 20px) clamp(14px, 3vw, 24px);
      width: 100%;
    }

    .wsr-cards {
      display: flex;
      gap: clamp(10px, 3vw, 20px);
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
    }

    .wsr-card {
      flex: 1;
      min-width: 130px;
      max-width: 210px;
      padding: clamp(18px, 3.5vw, 28px) clamp(12px, 2.5vw, 18px);
      background: linear-gradient(135deg, rgba(90, 5, 45, 0.45), rgba(18, 0, 28, 0.6));
      backdrop-filter: blur(14px);
      border: 1.5px solid rgba(201, 169, 110, 0.28);
      border-radius: clamp(16px, 4vw, 24px);
      cursor: pointer;
      font-family: var(--font-poppins);
      font-weight: 500;
      font-size: clamp(0.88rem, 2.5vw, 1rem);
      color: rgba(255, 245, 250, 0.92);
      text-align: center;
      transition: all 0.25s;
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.35;
    }

    .wsr-card:hover {
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.22), rgba(140, 20, 70, 0.4));
      transform: translateY(-4px) scale(1.03);
      border-color: var(--rose-gold);
      box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
    }

    .wsr-progress {
      font-family: var(--font-poppins);
      font-size: 0.85rem;
      color: var(--rose-gold);
      letter-spacing: 0.03em;
    }

    /* ===========================
   SCENE 15 — FINALE (Premium Redesign)
   =========================== */
    #scene-15 {
      background:
        radial-gradient(ellipse 70% 60% at 50% 30%, rgba(220, 40, 100, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 10% 90%, rgba(160, 10, 65, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 90% 90%, rgba(160, 10, 65, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, #050008 0%, #0e0012 35%, #1a001a 65%, #050005 100%);
      overflow: hidden;
    }

    .s15-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: clamp(16px, 3.5vh, 36px) clamp(12px, 4vw, 32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(10px, 1.8vh, 18px);
      width: min(92vw, 680px);
    }

    .s15-heart-draw {
      position: fixed;
      inset: 0;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .s15-her-name {
      font-family: var(--font-playfair);
      font-weight: 900;
      font-size: clamp(2.8rem, 11vw, 7rem);
      background: linear-gradient(135deg, #fff 0%, #ffccdf 40%, #ffe4a0 70%, #fff 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: s15NameShimmer 4s linear infinite;
      letter-spacing: 0.12em;
      display: flex;
      gap: 0.05em;
      justify-content: center;
      flex-wrap: wrap;
      filter: drop-shadow(0 0 30px rgba(255, 100, 180, 0.5));
    }

    @keyframes s15NameShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .name-letter {
      display: inline-block;
      opacity: 0;
    }

    .s15-underline {
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--rose-gold), #FFD700, var(--rose-gold), transparent);
      border-radius: 3px;
      width: 0;
      animation: drawLine 0.8s ease-out 3s forwards;
      box-shadow: 0 0 10px rgba(255, 200, 50, 0.5);
    }

    .s15-divider {
      height: 1px;
      width: clamp(150px, 60vw, 450px);
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.7), transparent);
      margin: 4px 0;
    }

    .love-poem {
      font-family: var(--font-dancing);
      font-size: clamp(1rem, 3.2vw, 1.45rem);
      color: rgba(255, 245, 250, 0.97);
      line-height: 2.1;
      text-align: center;
      text-shadow: 0 0 20px rgba(201, 169, 110, 0.25);
    }

    .poem-line {
      opacity: 0;
      display: block;
    }

    .s15-credit {
      font-family: var(--font-poppins);
      font-weight: 300;
      font-size: clamp(0.68rem, 1.5vw, 0.78rem);
      color: rgba(201, 169, 110, 0.55);
      margin-top: 4px;
      letter-spacing: 0.05em;
    }

    .s15-credit a {
      color: rgba(201, 169, 110, 0.85);
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 169, 110, 0.35);
      transition: color 0.2s, border-color 0.2s;
    }

    .s15-credit a:hover {
      color: #FFD700;
      border-color: #FFD700;
    }

    .s15-restart {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.75);
      cursor: pointer;
      background: linear-gradient(135deg, rgba(80, 5, 40, 0.5), rgba(20, 0, 30, 0.6));
      backdrop-filter: blur(14px);
      border: 1.5px solid rgba(201, 169, 110, 0.35);
      border-radius: 100px;
      padding: 10px 26px;
      font-family: var(--font-poppins);
      transition: all 0.25s;
      margin-top: 6px;
      letter-spacing: 0.04em;
    }

    .s15-restart:hover {
      color: white;
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.25), rgba(140, 20, 70, 0.4));
      border-color: var(--rose-gold);
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
    }

    /* Heart ring */
    .heart-ring {
      position: absolute;
      width: 350px;
      height: 350px;
      pointer-events: none;
    }

    .ring-heart {
      position: absolute;
      font-size: clamp(0.9rem, 2.5vw, 1.2rem);
      top: 50%;
      left: 50%;
      transform-origin: 0 0;
    }

    @keyframes ringRotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* PARTICLES CONTAINER */
    #particles-js-s7 {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    /* ===========================
   SCENE 13-SKIP OVERLAY
   =========================== */
    #skip-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 0, 20, 0.96);
      z-index: 900;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      text-align: center;
      padding: 20px;
    }

    .skip-gif {
      width: clamp(150px, 40vw, 220px);
      border-radius: 16px;
    }

    .skip-text {
      font-family: var(--font-poppins);
      font-weight: 600;
      font-size: clamp(1rem, 3vw, 1.3rem);
      color: white;
      max-width: 400px;
    }

    /* No scrollbar */
    ::-webkit-scrollbar {
      display: none;
    }

    /* ===========================
   RESPONSIVE TWEAKS
   =========================== */
    @media (max-width: 480px) {
      .s2-buttons {
        flex-direction: column;
      }

      .quiz-options {
        grid-template-columns: 1fr;
      }

      .wsr-cards {
        flex-direction: column;
        align-items: center;
      }
    }

    @media (pointer: coarse) {
      #custom-cursor {
        display: none;
      }
    }