    /* Minimal vertical gradient background */
    body {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Arial', sans-serif;
      background: linear-gradient(to bottom, #DBDBDB, #FFFFFF);
      color: #000000;
    }

    /* Card container */
    .card {
      background: rgba(255, 255, 255, 0.8);
      padding: 40px 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      max-width: 400px;
      width: 90%;
    }

    h1 {
      margin-bottom: 20px;
      font-size: 2em;
    }

    p {
      margin-bottom: 30px;
      font-size: 1em;
      line-height: 1.4;
    }

    button {
      padding: 12px 30px;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      background: #000000;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    button:hover {
      background: #fff;
	  color: #000000;
	  border: 2px solid #000000;
      transform: translateY(-2px);
    }

    /* Footer buttons */
    .footer-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 10px;
    }

    .footer-buttons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 45px;
      height: 45px;
      background: #000000;
      color: #fff;
      border-radius: 50%;
      font-size: 20px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-buttons a:hover {
      background: #fff;
	  color: #000000;
	  border: 2px solid #000000;
      transform: translateY(-3px);
    }

    .footer-copyright {
      font-size: 14px;
      color: #333;
      margin-top: 5px;
    }

    /* Responsive text */
    @media (max-width: 480px) {
      h1 {
        font-size: 1.5em;
      }
      p {
        font-size: 0.9em;
      }
      button {
        width: 100%;
      }
      .footer-buttons {
        gap: 10px;
      }
    }