body {
      font-family: "Inter", sans-serif;
      background: linear-gradient(135deg, #f9fafb, #6e8ffc);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 5%;
      margin-right: 5%;
      margin: 0;
      color: #1e293b;
      text-align: center;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      font-family: "Inter", sans-serif;
    }

    p {
      max-width: 400px;
      color: #475569;
      margin-bottom: 2rem;
      line-height: 1.5;
      font-family: "Inter", sans-serif;
    }

    button {
      background-color: #2563eb;
      font-family: "Inter", sans-serif;
      color: white;
      border: none;
      padding: 0.8rem 1.6rem;
      border-radius: 12px;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    button:hover {
      background-color: #1d4ed8;
      transform: scale(1.08);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      font-family: "Inter", sans-serif;
    }

    code {
      background: #f1f5f9;
      padding: 2px 6px;
      border-radius: 6px;
      font-size: 0.9em;
    }