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

    body {
      background-color: #0a0a0a; 
      color: #e0e0e0; 
      font-family: 'Share Tech Mono', monospace;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      text-align: center;
      max-width: 800px;
      width: 100%;
    }

    .intro-box {
      background-color: #1a1a1a; 
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
      margin-bottom: 30px;
    }

    .intro-box h1 {
      font-size: 2.5rem;
      line-height: 1.4;
    }

    .button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .button-group a {
      text-decoration: none;
      color: #fff;
      background-color: #333;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2rem;
      transition: background 0.3s;
    }

    .button-group a:hover {
      background-color: #555;
    }

    @media (max-width: 600px) {
      .intro-box h1 {
        font-size: 1.8rem;
      }

      .button-group {
        flex-direction: column;
      }

      .button-group a {
        width: 100%;
        text-align: center;
      }
    }
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.modal-content button {
  background-color: #333;
  color: #fff;
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #555;
}
