html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: 'Segoe UI', sans-serif;
      color: #000000;
    }

    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding-top: 100px;
      z-index: 1;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: black;
    }

    form {
      background: rgba(20, 20, 20, 0.90);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(255,255,255,0.05);
      max-width: 500px;
      width: 90%;
      display: flex;
      flex-direction: column;
      color: white;
    }

    form input,
    form textarea {
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #444;
      border-radius: 6px;
      font-size: 1rem;
      background-color: #111;
      color: #fff;
    }

    form button {
      padding: 12px;
      border: none;
      background-color: #ffffff;
      color: #000000;
      font-weight: bold;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s;
    }

    form button:hover {
      background-color: #dddddd;
    }

    .social-links {
      margin-top: 40px;
      text-align: center;
    }

    .social-links a {
      margin: 0 15px;
      font-size: 1.1rem;
      text-decoration: none;
      color: #000000;
      border-bottom: 2px solid transparent;
      transition: border 0.3s;
    }

    .social-links a:hover {
      border-color: #000000;
    }