/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    background: #0A0A0A;
    overflow: hidden;
  }
  
  /* Animated Background */
  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6B6B, #4A90E2, #50E3C2);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Main Content */
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
  }
  
  .tagline {
    font-size: 24px;
    font-style: italic;
    color: #50E3C2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease;
  }
  
  /* Countdown Timer */
  .countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeIn 2s ease;
  }
  
  .countdown-item {
    background: rgba(44, 44, 44, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .countdown-item:hover {
    transform: translateY(-10px);
  }
  
  .countdown-item span {
    display: block;
  }
  
  .countdown-item span:first-child {
    font-size: 36px;
    font-weight: bold;
    color: #FF6B6B;
  }
  
  .countdown-item span:last-child {
    font-size: 14px;
    color: #ccc;
  }
  
  /* Subscription Form */
  .subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeInUp 2.5s ease;
  }
  
  .subscribe-form input {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(44, 44, 44, 0.8);
    color: #fff;
    width: 250px;
  }
  
  .subscribe-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #FF6B6B;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .subscribe-form button:hover {
    background: #FF3B2F;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 20px;
    animation: fadeIn 3s ease;
  }
  
  .social-links a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #FF6B6B;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }