/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;
  }
  
  .landing-page {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #ff007b, #000000);
    height: 100vh;
    text-align: center;
    color: white;
  }
  
  .content {
    position: relative;
    z-index: 1;
  }
  
  .content h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #ff007b, 0 0 25px #ff007b; /* Enhanced glow */
  }
  
  .tagline {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Buttons */
  .buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: center;
  }
  
  .buttons button {
    background: transparent;
    border: 1px solid #ffa4cd;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .buttons button:hover {
    transform: scale(1.05); /* Slight zoom */
    background: #ff007b;
    color: black;
    border-color: white;
    box-shadow: 0 0 15px #ff007b;
  }
  
  /* Footer */
  footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }

  footer a {
    color: #ff9bcb;
    text-decoration: none;
  }
  
  footer a:hover {
    color: white;
  }

  footer .icon {
    margin-right: 5px;
    color: #ff007b;
  }
  
  footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Space between icon and text */
  }
  
  footer p:hover {
    text-decoration: underline;
    color: #ff007b;
  }
  /* Compliment Styles */
.compliment {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  font-style: italic;
  text-align: center;
  transition: opacity 1s ease-in-out; /* Smooth transition */
}

/* Fade Out Animation */
.fade-out {
  opacity: 0;
}

/* Fade In Animation */
.fade-in {
  opacity: 1;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(circle at center, #ff007b, #000000);
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: white;
}
.glowing-text {
  font-size: 4rem;
  font-weight: bold;
  color: #ff007b;
  text-shadow: 
    0 0 10px #ff007b, 
    0 0 20px #ff007b, 
    0 0 30px #ff007b, 
    0 0 40px #ff69b4, 
    0 0 50px #ff69b4, 
    0 0 60px #ff69b4;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 
      0 0 10px #ff007b, 
      0 0 20px #ff007b, 
      0 0 30px #ff007b, 
      0 0 40px #ff69b4, 
      0 0 50px #ff69b4, 
      0 0 60px #ff69b4;
  }
  to {
    text-shadow: 
      0 0 20px #ff007b, 
      0 0 30px #ff69b4, 
      0 0 40px #ff69b4, 
      0 0 50px #ff69b4, 
      0 0 60px #ff69b4, 
      0 0 70px #ff69b4;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content h1 {
      font-size: 2.5rem;
  }
  .buttons button {
      font-size: 0.9rem;
      padding: 8px 15px;
  }
}