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

    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      overflow: hidden;
      padding: 0 1rem;
      position: relative;
    }
    h2{
        color: yellow;
    }

    canvas#particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      animation: fadeInDown 1.5s ease;
    }

    .coming-soon {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #00d9ff;
      text-shadow: 0 0 15px rgba(0, 217, 255, 0.7);
      animation: fadeInUp 2s ease;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      animation: fadeInUp 2s ease;
      max-width: 800px;
    }

    a {
      color: #00d9ff;
      text-decoration: none;
      font-weight: bold;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Floating animation */
    .floating {
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }

    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    footer {
      margin-top: 2rem;
      animation: fadeIn 3s ease;
    }

    .dev-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 1rem 2rem;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      display: inline-block;
      animation: fadeInUp 2.5s ease;
      transition: transform 0.3s ease, background 0.3s ease;
      font-size: 1.5rem;
    }

    .dev-box:hover {
      transform: scale(1.05);
      background: rgba(0, 217, 255, 0.2);
    }

    .description {
      font-size: 1rem;
      margin-top: 1.5rem;
      line-height: 1.6;
      max-width: 750px;
      animation: fadeInUp 3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 { font-size: 2rem; }
      .coming-soon { font-size: 2.2rem; }
      p { font-size: 1rem; }
      .description { font-size: 0.95rem; }
    }
