    :root {
      --background: hsl(15, 33%, 97%);
      --foreground: hsl(350, 30%, 25%);
      --card: hsl(15, 40%, 98%);
      --card-foreground: hsl(350, 30%, 25%);
      --primary: hsl(350, 60%, 65%);
      --primary-foreground: hsl(0, 0%, 100%);
      --secondary: hsl(30, 50%, 90%);
      --muted: hsl(350, 20%, 94%);
      --muted-foreground: hsl(350, 15%, 50%);
      --accent: hsl(30, 70%, 75%);
      --border: hsl(350, 30%, 88%);
      --gold: hsl(40, 70%, 55%);
      --gradient-romantic: linear-gradient(135deg, hsl(350, 60%, 92%) 0%, hsl(30, 50%, 95%) 50%, hsl(350, 50%, 88%) 100%);
    }

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

    body {
      font-family: 'Quicksand', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Cormorant Garamond', serif;
    }

    .romantic-gradient {
      background: var(--gradient-romantic);
    }

    /* Animations */
    @keyframes float {

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

      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    @keyframes sparkle {

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

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

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

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

    @keyframes heartbeat {

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

      25% {
        transform: scale(1.1);
      }

      50% {
        transform: scale(1);
      }

      75% {
        transform: scale(1.1);
      }
    }

    @keyframes pulseGlow {

      0%,
      100% {
        box-shadow: 0 0 20px hsla(350, 60%, 65%, 0.3);
      }

      50% {
        box-shadow: 0 0 40px hsla(350, 60%, 65%, 0.5);
      }
    }

    .floating-heart {
      animation: float 3s ease-in-out infinite;
    }

    .sparkle {
      animation: sparkle 2s ease-in-out infinite;
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .animate-heartbeat {
      animation: heartbeat 1.5s ease-in-out infinite;
    }

    .pulse-glow {
      animation: pulseGlow 2s ease-in-out infinite;
    }

    /* Floating Hearts Background */
    .floating-hearts-container {
      position: fixed;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }

    .floating-hearts-container svg {
      position: absolute;
    }

    /* Hero Section */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      text-align: center;
      max-width: 56rem;
      z-index: 10;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .hero-badge span {
      color: var(--muted-foreground);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }

    .hero-title {
      font-size: clamp(3rem, 8vw, 6rem);
      font-style: italic;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: var(--primary);
      font-style: italic;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }

    .hero-message {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      max-width: 28rem;
      margin: 0 auto 2rem;
    }

    .scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted-foreground);
      cursor: pointer;
      transition: color 0.3s;
    }

    .scroll-indicator:hover {
      color: var(--primary);
    }

    .scroll-indicator svg {
      animation: float 2s ease-in-out infinite;
    }

    /* Proposal Section */
    .proposal-section {
      padding: 5rem 1rem;
      min-height: 80vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .proposal-content {
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
      width: 100%;
    }

    .proposal-question {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-style: italic;
      margin-bottom: 2rem;
    }

    .proposal-valentine {
      font-size: clamp(3rem, 8vw, 5rem);
      color: var(--primary);
      font-style: italic;
      position: relative;
      display: inline-block;
      margin-bottom: 3rem;
    }

    .buttons-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      min-height: 120px;
      position: relative;
    }

    .yes-button {
      padding: 1rem 3rem;
      background-color: var(--primary);
      color: var(--primary-foreground);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 20px hsla(350, 60%, 65%, 0.3);
      z-index: 10;
    }

    .yes-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px hsla(350, 60%, 65%, 0.4);
    }

    .no-button {
      padding: 0.75rem 2rem;
      background-color: var(--muted);
      color: var(--muted-foreground);
      font-family: 'Quicksand', sans-serif;
      font-size: 1rem;
      border: 2px solid var(--border);
      border-radius: 9999px;
      cursor: pointer;
      transition: all 0.2s ease-out;
      position: relative;
    }

    .hint-text {
      margin-top: 2rem;
      color: var(--muted-foreground);
      animation: float 1s ease-in-out infinite;
    }

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

    .celebration-container h2 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .hearts-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
    }

    .celebration-message {
      font-size: clamp(1.5rem, 4vw, 2rem);
      color: var(--primary);
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: 1.5rem;
    }

    .celebration-submessage {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      max-width: 28rem;
      margin: 0 auto;
    }

    /* Countdown Section */
    .countdown-section {
      padding: 5rem 1rem;
      position: relative;
      overflow: hidden;
    }

    .countdown-content {
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .countdown-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .countdown-date {
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      max-width: 40rem;
      margin: 0 auto 2.5rem;
    }

    @media (min-width: 768px) {
      .countdown-grid {
        gap: 2rem;
      }
    }

    .countdown-box {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(8px);
      border-radius: 1rem;
      padding: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    @media (min-width: 768px) {
      .countdown-box {
        padding: 1.5rem;
      }
    }

    .countdown-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.75rem, 5vw, 3rem);
      color: var(--primary);
      margin-bottom: 0.25rem;
    }

    .countdown-label {
      font-size: 0.75rem;
      color: var(--muted-foreground);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    @media (min-width: 768px) {
      .countdown-label {
        font-size: 0.875rem;
      }
    }

    .countdown-message {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .countdown-message span:first-child {
      color: var(--muted-foreground);
    }

    .countdown-message span:last-of-type {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--primary);
    }

    /* Valentine's Day Celebration */
    .valentines-celebration h2 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .valentines-celebration p {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      margin-top: 2rem;
    }

    /* Music Player */
    .music-section {
      padding: 4rem 1rem;
    }

    .music-container {
      max-width: 28rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .music-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }
    }

    .music-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .music-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .music-header h3 {
      font-size: 1.5rem;
      font-style: italic;
    }

    .album-art {
      width: 8rem;
      height: 8rem;
      background: var(--gradient-romantic);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 8px 30px hsla(350, 60%, 65%, 0.3);
    }

    .song-info {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .song-title {
      font-size: 1.25rem;
      font-style: italic;
      margin-bottom: 0.25rem;
    }

    .song-artist {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    .progress-container {
      margin-bottom: 1.5rem;
    }

    .progress-bar {
      width: 100%;
      height: 0.5rem;
      background: var(--muted);
      border-radius: 9999px;
      overflow: hidden;
      cursor: pointer;
      margin-bottom: 0.5rem;
    }

    .progress-fill {
      height: 100%;
      background: var(--primary);
      border-radius: 9999px;
      transition: width 0.1s linear;
    }

    .time-display {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .controls-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .control-button {
      background: none;
      border: none;
      color: var(--muted-foreground);
      cursor: pointer;
      padding: 0.5rem;
      transition: all 0.2s;
    }

    .control-button:hover {
      color: var(--primary);
      transform: scale(1.1);
    }

    .play-button {
      width: 4rem;
      height: 4rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      box-shadow: 0 4px 20px hsla(350, 60%, 65%, 0.4);
    }

    .play-button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 30px hsla(350, 60%, 65%, 0.5);
    }

    .volume-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .volume-slider {
      width: 6rem;
      height: 0.375rem;
      background: var(--muted);
      border-radius: 9999px;
      appearance: none;
      cursor: pointer;
    }

    .volume-slider::-webkit-slider-thumb {
      appearance: none;
      width: 1rem;
      height: 1rem;
      background: var(--primary);
      border-radius: 50%;
      cursor: pointer;
    }

    .music-note {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-style: italic;
    }

    /* Photo Gallery */
    .gallery-section {
      padding: 5rem 1rem;
    }

    .gallery-container {
      max-width: 72rem;
      margin: 0 auto;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gallery-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .gallery-header p {
      color: var(--muted-foreground);
      max-width: 28rem;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: 1rem;
      overflow: hidden;
      background: var(--gradient-romantic);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item.featured {
      grid-column: span 2;
      aspect-ratio: 2/1;
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--primary);
    }

    .gallery-placeholder span {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Song of Songs Section */
    .songs-section {
      padding: 5rem 1rem;
    }

    .songs-container {
      max-width: 72rem;
      margin: 0 auto;
    }

    .songs-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .songs-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-style: italic;
      margin-bottom: 0.5rem;
    }

    .songs-header p {
      color: var(--muted-foreground);
    }

    .songs-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .songs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .songs-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .verse-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
    }

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

    .verse-card blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.125rem;
      font-style: italic;
      color: var(--foreground);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .verse-reference {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    /* Footer */
    .footer-section {
      padding: 4rem 1rem;
    }

    .footer-container {
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
    }

    .footer-icons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .footer-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .footer-message {
      color: var(--muted-foreground);
      max-width: 28rem;
      margin: 0 auto 2rem;
    }

    .footer-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .footer-divider .line {
      height: 1px;
      width: 3rem;
      background: hsla(350, 60%, 65%, 0.4);
    }

    .footer-divider span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      color: var(--primary);
      font-style: italic;
    }

    .footer-hearts {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .footer-credit {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      opacity: 0.7;
    }

    /* Utility Classes */
    .hidden {
      display: none !important;
    }

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

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

    .fill-primary {
      fill: var(--primary);
    }

    /* Mobile Responsiveness Improvements */
    @media (max-width: 768px) {
      .hero-section {
        padding: 1rem;
      }

      .proposal-section,
      .countdown-section,
      .gallery-section,
      .songs-section,
      .footer-section {
        padding: 3rem 1rem;
      }

      .verse-card {
        padding: 1.5rem;
      }

      .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
      }

      .hero-subtitle {
        font-size: clamp(1.25rem, 5vw, 2rem);
      }
    }

    /* SVG Icons */
    .icon {
      width: 24px;
      height: 24px;
      display: inline-block;
      vertical-align: middle;
    }

    .icon-sm {
      width: 16px;
      height: 16px;
    }

    .icon-md {
      width: 24px;
      height: 24px;
    }

    .icon-lg {
      width: 32px;
      height: 32px;
    }

    .icon-xl {
      width: 48px;
      height: 48px;
    }

    .icon-2xl {
      width: 64px;
      height: 64px;
    }