/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4e4e4e, #0d0d0d);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  
  .title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00e1ff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
  }
  
  .subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .subscribe-form input {
    padding: 0.75rem;
    border: 2px solid #00ffcc;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
  }
  
  .subscribe-form input::placeholder {
    color: #ccc;
  }
  
  .subscribe-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #00ffcc, #0077ff);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .subscribe-form button:hover {
    transform: scale(1.1);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #00ffcc, 0 0 20px #0077ff;
    }
    to {
      text-shadow: 0 0 20px #00ffcc, 0 0 40px #0077ff;
    }
  }