@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

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

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --romantic-gradient: linear-gradient(
    135deg,
    #ff9a9e 0%,
    #fecfef 50%,
    #fecfef 100%
  );
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --dark-bg: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Sophisticated Background */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 154, 158, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    );
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-particle {
  position: absolute;
  opacity: 0.6;
  animation: floatUpDown 8s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Premium Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 25px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--romantic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Content */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 100px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: var(--romantic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 154, 158, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 400;
}

/* Premium Cards Section */
.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 120px;
}

.premium-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideInUp 1s ease-out;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s;
}

.premium-card:hover::before {
  left: 100%;
}

.premium-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 154, 158, 0.4);
  box-shadow: 0 30px 60px rgba(255, 154, 158, 0.2);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  background: var(--romantic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 154, 158, 0.3));
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Decision Section */
.decision-section {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 2px solid var(--glass-border);
  border-radius: 40px;
  padding: 80px 60px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 1.5s ease-out 0.5s both;
}

.decision-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 154, 158, 0.1),
    transparent
  );
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.decision-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 40px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-section {
  background: linear-gradient(
    135deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  border-radius: 25px;
  padding: 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.instagram-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.instagram-text {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.instagram-handle {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 20px 40px;
  border-radius: 20px;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.instagram-handle:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.instagram-handle.hidden {
  letter-spacing: 2px;
}

.instagram-handle.revealed {
  animation: revealUsername 0.8s ease-out;
}

@keyframes revealUsername {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
    letter-spacing: 8px;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    letter-spacing: 0px;
  }
}

/* Premium Buttons */
.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  margin-top: 50px;
}

.premium-button {
  background: var(--romantic-gradient);
  border: none;
  padding: 25px 60px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 154, 158, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.premium-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.premium-button:hover::before {
  left: 100%;
}

.premium-button:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 154, 158, 0.6);
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--glass-border);
  color: var(--text-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.secondary-button:hover {
  border-color: rgba(255, 154, 158, 0.5);
  background: var(--glass-bg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  background: var(--romantic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-container {
    padding: 100px 20px 40px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .cards-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .premium-card {
    padding: 40px 30px;
  }

  .decision-section {
    padding: 60px 30px;
  }

  .buttons-container {
    flex-direction: column;
    width: 100%;
  }

  .premium-button {
    width: 100%;
    justify-content: center;
  }

  .instagram-section {
    padding: 30px 20px;
    text-align: center;
  }

  .instagram-handle {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .buttons-container {
    flex-direction: row;
  }
}






/* audio control */

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

      :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --romantic-gradient: linear-gradient(
          135deg,
          #ff9a9e 0%,
          #fecfef 50%,
          #fecfef 100%
        );
        --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
        --dark-bg: #0a0a0a;
        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.2);
        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.8);
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--dark-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        min-height: 100vh;
        position: relative;
      }

      /* Sophisticated Background */
      .background-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: radial-gradient(
            circle at 20% 30%,
            rgba(255, 154, 158, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 70%,
            rgba(118, 75, 162, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 40% 80%,
            rgba(102, 126, 234, 0.1) 0%,
            transparent 50%
          );
      }

      .floating-elements {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
      }

      .floating-particle {
        position: absolute;
        opacity: 0.6;
        animation: floatUpDown 8s ease-in-out infinite;
      }

      @keyframes floatUpDown {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
      }

      /* Premium Navigation */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 25px 0;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .nav-logo {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 700;
        background: var(--romantic-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Audio Player Styles */
      .audio-player-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1001;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .audio-player-button {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--romantic-gradient);
        border: 2px solid var(--glass-border);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        box-shadow: 0 15px 35px rgba(255, 154, 158, 0.4);
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
      }

      .audio-player-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: left 0.6s;
      }

      .audio-player-button:hover::before {
        left: 100%;
      }

      .audio-player-button:hover {
        transform: scale(1.1);
        box-shadow: 0 20px 40px rgba(255, 154, 158, 0.6);
      }

      .audio-player-button.playing {
        animation: pulse 2s ease-in-out infinite;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 15px 35px rgba(255, 154, 158, 0.4);
        }
        50% {
          box-shadow: 0 20px 45px rgba(255, 154, 158, 0.8);
        }
        100% {
          box-shadow: 0 15px 35px rgba(255, 154, 158, 0.4);
        }
      }

      .audio-controls {
        position: absolute;
        bottom: 85px;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 20px;
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      }

      .audio-player-container:hover .audio-controls {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .audio-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 15px;
        text-align: center;
        background: var(--romantic-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .volume-control {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
      }

      .volume-icon {
        color: var(--text-primary);
        font-size: 16px;
        width: 20px;
      }

      .volume-slider {
        flex: 1;
        height: 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.2);
        outline: none;
        -webkit-appearance: none;
        cursor: pointer;
      }

      .volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--romantic-gradient);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(255, 154, 158, 0.4);
      }

      .volume-slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--romantic-gradient);
        cursor: pointer;
        border: none;
        box-shadow: 0 2px 8px rgba(255, 154, 158, 0.4);
      }

      .volume-percentage {
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 500;
        min-width: 35px;
        text-align: right;
      }

      .playback-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
      }

      .control-button {
        background: transparent;
        border: 1px solid var(--glass-border);
        color: var(--text-primary);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all 0.3s ease;
      }

      .control-button:hover {
        background: var(--glass-bg);
        border-color: rgba(255, 154, 158, 0.5);
        transform: scale(1.1);
      }

      .control-button.active {
        background: var(--romantic-gradient);
        border-color: transparent;
      }

      /* Main Content */
      .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 120px 40px 60px;
        position: relative;
        z-index: 2;
      }

      /* Hero Section */
      .hero-section {
        text-align: center;
        margin-bottom: 100px;
        animation: fadeInUp 1.2s ease-out;
      }

      .hero-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 30px;
        background: var(--romantic-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(255, 154, 158, 0.3);
      }

      .hero-subtitle {
        font-size: clamp(1.3rem, 4vw, 2rem);
        color: var(--text-secondary);
        margin-bottom: 20px;
        font-weight: 300;
        letter-spacing: 0.5px;
      }

      .hero-description {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto 60px;
        line-height: 1.7;
        font-weight: 400;
      }

      /* Premium Cards Section */
      .cards-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-bottom: 120px;
      }

      .premium-card {
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        padding: 50px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation: slideInUp 1s ease-out;
      }

      .premium-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.8s;
      }

      .premium-card:hover::before {
        left: 100%;
      }

      .premium-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: rgba(255, 154, 158, 0.4);
        box-shadow: 0 30px 60px rgba(255, 154, 158, 0.2);
      }

      .card-icon {
        font-size: 4rem;
        margin-bottom: 30px;
        background: var(--romantic-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 10px rgba(255, 154, 158, 0.3));
      }

      .card-title {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-primary);
      }

      .card-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-secondary);
        font-weight: 400;
      }

      /* Decision Section */
      .decision-section {
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        border: 2px solid var(--glass-border);
        border-radius: 40px;
        padding: 80px 60px;
        text-align: center;
        margin-bottom: 80px;
        position: relative;
        overflow: hidden;
        animation: fadeInScale 1.5s ease-out 0.5s both;
      }

      .decision-section::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(255, 154, 158, 0.1),
          transparent
        );
        animation: rotate 20s linear infinite;
        z-index: -1;
      }

      @keyframes rotate {
        100% {
          transform: rotate(360deg);
        }
      }

      .decision-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 700;
        margin-bottom: 40px;
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .instagram-section {
        background: linear-gradient(
          135deg,
          #405de6,
          #5851db,
          #833ab4,
          #c13584,
          #e1306c,
          #fd1d1d
        );
        border-radius: 25px;
        padding: 40px;
        margin: 40px 0;
        position: relative;
        overflow: hidden;
      }

      .instagram-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        animation: shimmer 3s ease-in-out infinite;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(-100%);
        }
        100% {
          transform: translateX(100%);
        }
      }

      .instagram-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .instagram-text {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.95);
      }

      .instagram-handle {
        text-decoration: none;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        padding: 20px 40px;
        border-radius: 20px;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 700;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
      }

      .instagram-handle:hover {
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.3);
      }

      /* Premium Buttons */
      .buttons-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        margin-top: 50px;
      }

      .premium-button {
        background: var(--romantic-gradient);
        border: none;
        padding: 25px 60px;
        border-radius: 50px;
        font-size: 1.4rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(255, 154, 158, 0.4);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      }

      .premium-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: left 0.6s;
      }

      .premium-button:hover::before {
        left: 100%;
      }

      .premium-button:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 154, 158, 0.6);
      }

      .secondary-button {
        background: transparent;
        border: 2px solid var(--glass-border);
        color: var(--text-primary);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      }

      .secondary-button:hover {
        border-color: rgba(255, 154, 158, 0.5);
        background: var(--glass-bg);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      }

      /* Footer */
      .footer {
        text-align: center;
        padding: 60px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-text {
        font-size: 1.2rem;
        color: var(--text-secondary);
        font-weight: 300;
        background: var(--romantic-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideInUp {
        from {
          opacity: 0;
          transform: translateY(60px) scale(0.9);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes fadeInScale {
        from {
          opacity: 0;
          transform: scale(0.8);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .main-container {
          padding: 100px 20px 40px;
        }

        .nav-container {
          padding: 0 20px;
        }

        .cards-section {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .premium-card {
          padding: 40px 30px;
        }

        .decision-section {
          padding: 60px 30px;
        }

        .buttons-container {
          flex-direction: column;
          width: 100%;
        }

        .premium-button {
          width: 100%;
          justify-content: center;
        }

        .audio-player-container {
          bottom: 20px;
          right: 20px;
        }

        .audio-player-button {
          width: 60px;
          height: 60px;
          font-size: 20px;
        }

        .audio-controls {
          min-width: 200px;
          bottom: 75px;
        }
      }

      @media (min-width: 768px) {
        .buttons-container {
          flex-direction: row;
        }
      }