:root {
    --rose: #ff4d79;
    --gold: #ffd700;
    --glass: rgba(255, 255, 255, 0.06);
  }
  
  body {
    margin: 0;
    padding: 0;
    background: url("../assests/photos/texture.jpg"); /* ✅ You can replace this image */
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .love-notes-container {
    text-align: center;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    z-index: 2;
    max-width: 90%;
    width: 600px;
  }
  
  h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--rose);
    margin-bottom: 0.5rem;
  }
  
  p {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .mood-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .mood-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass);
    color: rgb(218, 25, 25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mood-btn:hover {
    background: var(--rose);
    color: white;
  }
  
  #love-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff8f8;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .love-notes-container {
      padding: 2rem;
    }
  
    h1 {
      font-size: 2rem;
    }
  }
/* 💖 Fix for Generate Button Styling */
.magic-button {
    background: linear-gradient(45deg, var(--rose), var(--gold));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(255, 77, 121, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
  }
  
  .magic-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  }
  