/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    overflow-y: auto; /* Enable vertical scrolling */
  }
  
  .background {
    position: fixed; /* Fixed background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 20px 20px;
    z-index: -1;
    animation: moveBackground 10s linear infinite;
  }
  
  @keyframes moveBackground {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
  }
  
  .container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px; /* Add margin for spacing */
    width: 90%; /* Responsive width */
    max-width: 800px; /* Limit maximum width */
  }
  
  h1 {
    font-size: 2.5rem; /* Smaller font size for mobile */
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .highlight {
    color: #ff6f61;
    text-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .wish-categories {
    display: flex;
    justify-content: center;
    gap: 15px; /* Smaller gap for mobile */
    flex-wrap: wrap;
  }
  
  .wish-card {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 150px; /* Smaller width for mobile */
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .wish-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .icon {
    font-size: 2.5rem; /* Smaller icon size for mobile */
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .wish-card:hover .icon {
    transform: scale(1.2);
  }
  
  h2 {
    font-size: 1.2rem; /* Smaller font size for mobile */
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  p {
    font-size: 0.9rem; /* Smaller font size for mobile */
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Glow Effect */
  @keyframes glow {
    0% { box-shadow: 0 0 10px #ff6f61; }
    50% { box-shadow: 0 0 20px #ff3b2f; }
    100% { box-shadow: 0 0 10px #ff6f61; }
  }
  
  .wish-card {
    animation: glow 3s infinite alternate;
  }
  
  /* Media Queries for Mobile Responsiveness */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem; /* Smaller font size for smaller screens */
    }
  
    .wish-card {
      width: 120px; /* Smaller card width for mobile */
      padding: 15px;
    }
  
    .icon {
      font-size: 2rem; /* Smaller icon size for mobile */
    }
  
    h2 {
      font-size: 1rem; /* Smaller heading size for mobile */
    }
  
    p {
      font-size: 0.8rem; /* Smaller paragraph size for mobile */
    }
  }