body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffdde1, #ee9ca7);
    font-family: 'Poppins', sans-serif;
    color: #3d001f;
    overflow-x: hidden;
  }
  
  .future-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 90, 0.1), transparent 70%);
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite;
  }
  
  @keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
  }
  
  .future-wrapper {
    max-width: 700px;
    margin: 5vh auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    z-index: 2;
    position: relative;
  }
  
  .title {
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
    text-align: center;
    color: #b30059;
  }
  
  .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5c0030;
    margin-bottom: 2rem;
  }
  
  .countdown {
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 15px;
    font-size: 1.1rem;
    color: #5c0030;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 0, 90, 0.1);
  }
  
  .bucket-list h2 {
    color: #b30059;
    margin-bottom: 1rem;
  }
  
  .bucket-list ul {
    list-style: none;
    padding-left: 0;
  }
  
  .bucket-list li {
    background: #fff;
    margin: 0.6rem 0;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 0, 90, 0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Dream Slider */
  .dream-slider {
    margin-top: 3rem;
    text-align: center;
  }
  
  .dream-slider h2 {
    margin-bottom: 1rem;
    color: #b30059;
  }
  
  .scroll-strip {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: scrollDreams 25s linear infinite;
    font-size: 1.2rem;
    color: #800040;
  }
  
  .scroll-strip span {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
  }
  
  @keyframes scrollDreams {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
  }
  
  /* Floating Hearts */
  .hearts::before, .hearts::after {
    content: "💖";
    position: absolute;
    top: -10%;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: floatHearts 12s linear infinite;
  }
  
  .hearts::before { left: 30%; animation-delay: 2s; }
  .hearts::after { left: 70%; animation-delay: 6s; }
  
  @keyframes floatHearts {
    0% { transform: translateY(0) rotate(0); opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { transform: translateY(120vh) rotate(360deg); opacity: 0; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .scroll-strip span {
      font-size: 1rem;
    }
  
    .bucket-list li {
      font-size: 0.95rem;
    }
  }
  /******************************************/
  /* Mobile & Tablet View */
@media (max-width: 768px) {
    .future-wrapper {
      padding: 1.5rem 1rem;
      margin: 3vh auto;
    }
  
    .title {
      font-size: 2.2rem;
    }
  
    .subtitle {
      font-size: 1rem;
    }
  
    .bucket-list li {
      font-size: 0.95rem;
      padding: 0.7rem;
      flex-wrap: wrap;
    }
  
    .scroll-strip {
      font-size: 1rem;
      gap: 1rem;
      padding: 0.5rem 0;
    }
  
    .scroll-strip span {
      padding: 0.4rem 0.8rem;
    }
  
    .countdown {
      font-size: 1rem;
      padding: 0.7rem;
    }
  
    .hearts::before, .hearts::after {
      font-size: 1.2rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    .title {
      font-size: 2rem;
    }
  
    .dream-slider h2,
    .bucket-list h2 {
      font-size: 1.1rem;
    }
  
    .scroll-strip {
      gap: 0.8rem;
      font-size: 0.95rem;
    }
  }
  