  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
      line-height: 1.6;
  }

  .loading-container {
      max-width: 800px;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      animation: fadeIn 1s ease;
  }

  .header {
      background: linear-gradient(to right, #3eb244b4, #4caf4fa9);
      color: rgba(69, 66, 66, 0.893);
      padding: 25px 20px;
      text-align: center;
  }

  .header h1 {
      font-size: 2.2rem;
      margin-bottom: 8px;
      font-weight: 700;
  }

  .header p {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  .content {
      padding: 30px;
  }

  .welcome-text {
      text-align: center;
      margin-bottom: 25px;
  }

  .welcome-text h2 {
      color: #2e7d328c;
      font-size: 1.8rem;
      margin-bottom: 15px;
  }

  .welcome-text p {
      font-size: 1.1rem;
      color: #55555580;
      max-width: 700px;
      margin: 0 auto;
  }

  .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 30px 0;
  }

  .feature {
      background: #f8f9fa;
      border-left: 4px solid #4CAF50;
      padding: 20px;
      border-radius: 8px;
      transition: transform 0.3s ease;
  }

  .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .feature h3 {
      color: #2e7d3297;
      margin-bottom: 10px;
      font-size: 1.3rem;
  }

  .feature p {
      color: #666;
      font-size: 0.95rem;
  }

  .loading-section {
      text-align: center;
      margin: 30px 0;
  }

  .loading-spinner {
      width: 60px;
      height: 60px;
      border: 5px solid rgba(76, 175, 80, 0.3);
      border-radius: 50%;
      border-top-color: #4CAF50;
      margin: 0 auto 20px;
      animation: spin 1s linear infinite;
  }

  .loading-text {
      font-size: 1.2rem;
      color: #2e7d3279;
      font-weight: 600;
  }

  .progress-bar {
      height: 6px;
      background: #e0e0e0;
      border-radius: 3px;
      overflow: hidden;
      margin: 20px 0;
  }

  .progress {
      height: 100%;
      background: linear-gradient(to right, #717771fd, #5cc467, #37fd41);
      width: 0%;
      animation: progress 3s linear forwards;
  }

  .footer {
      background: #f1f8e9;
      padding: 20px;
      text-align: center;
      color: #5555559a;
      border-top: 1px solid #e0e0e0;
  }

  .footer p {
      margin-bottom: 5px;
  }

  .developer {
      font-weight: 600;
      color: #14b41c;
  }

  /* SEO Content - Hidden from users but visible to search engines */
  .seo-content {
      position: absolute;
      left: -9999px;
      top: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  @keyframes progress {
      0% {
          width: 0%;
      }

      100% {
          width: 100%;
      }
  }

  @media (max-width: 768px) {
      .header h1 {
          font-size: 1.8rem;
      }

      .content {
          padding: 20px;
      }


      .features {
          grid-template-columns: 1fr;
      }

      .features {
          display: none;
      }
  }

  @media (max-width: 480px) {
      .header h1 {
          font-size: 1.5rem;
      }

      .welcome-text h2 {
          font-size: 1.4rem;
      }

      body {
          padding: 0px;
          line-height: 1.3;
          display: flex;
      }


  }