  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #2f2fa2, #1f1f7a);
      color: white;
      overflow: hidden;
      position: relative;
  }

  /* Animated background */
  .bg-animation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
  }

  .bg-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      animation: float 20s infinite ease-in-out;
  }

  .bg-circle:nth-child(1) {
      width: 300px;
      height: 300px;
      top: 10%;
      left: 10%;
      animation-delay: 0s;
  }

  .bg-circle:nth-child(2) {
      width: 200px;
      height: 200px;
      top: 60%;
      right: 15%;
      animation-delay: 4s;
  }

  .bg-circle:nth-child(3) {
      width: 150px;
      height: 150px;
      bottom: 20%;
      left: 20%;
      animation-delay: 2s;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0) translateX(0);
      }

      25% {
          transform: translateY(-30px) translateX(20px);
      }

      50% {
          transform: translateY(-60px) translateX(-20px);
      }

      75% {
          transform: translateY(-30px) translateX(20px);
      }
  }

  /* Main container */
  .container {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      padding: 2rem;
      animation: fadeInUp 1s ease;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Logo */
  .logo {
      margin-bottom: 2rem;
      animation: fadeIn 1.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
  }

  .logo-img {
      width: 70px;
      height: 70px;
      /* border-radius: 15px; */
      /* overflow: hidden;
      flex-shrink: 0; */
      /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
  }

  .logo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .logo-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
  }

  .company-name {
      font-size: 35px;
      font-weight: 700;
      letter-spacing: 1px;
      line-height: 1.2;
      margin: 0;
  }

  .tagline {
      font-size: 1.5rem;
      opacity: 0.85;
      letter-spacing: 0.5px;
      margin: 0;
      margin-top: -0.4rem;
  }

  /* Main heading */
  h1 {
      font-size: 4rem;
      font-weight: 800;
      margin: 2rem 0 1rem;
      background: linear-gradient(to right, #fff, #e0e0e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: slideInLeft 1s ease 0.3s both;
  }

  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .subtitle {
      font-size: 1.3rem;
      opacity: 0.85;
      margin-bottom: 3rem;
      animation: slideInRight 1s ease 0.5s both;
  }

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  /* Countdown timer */
  .countdown {
      display: none;
  }

  /* Email notification */
  .notify-section {
      display: none;
  }

  /* Social links */
  .social-links {
      margin-top: 3rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      animation: fadeIn 1s ease 1.1s both;
  }

  .social-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .social-link:hover {
      background: white;
      color: #2f2fa2;
      transform: translateY(-5px);
  }

  /* Footer */
  .footer {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.9rem;
      opacity: 0.7;
      animation: fadeIn 1s ease 1.3s both;
  }

  /* Success message */
  .success-message {
      display: none;
  }

  /* Responsive */
  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @media (max-width: 768px) {
      .logo {
          flex-direction: column;
          text-align: center;
      }

      .logo-text {
          align-items: center;
          text-align: center;
      }

      .company-name {
          font-size: 1.5rem;
      }

      .tagline {
          font-size: 0.85rem;
      }

      h1 {
          font-size: 2.5rem;
      }

      .subtitle {
          font-size: 1.1rem;
      }

      .email-form {
          flex-direction: column;
      }

      .notify-btn {
          width: 100%;
      }
  }