  * {
    box-sizing: border-box;
    overflow: hidden;
  }
  body {
 margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #2D3A3A;
    min-height: 100vh;
    display: flex
;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #000;
    max-width: 100%;
    max-height: 100vh;
    overflow: hidden !important;
  }
  .background-text {
    position: absolute;
    font-weight: 700;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.8;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
  }
  .background-text .green {
    color: #22c55e; /* Tailwind green-500 */
  }
  .bg-btn {
    position: absolute;
    background-color: rgba(60, 110, 60, 0.5);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    pointer-events: none;
    user-select: none;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
  }

  /* Positions for background text */
  .bg-text-1 {
    top: 25%;
    left: 25%;
    transform: translate(-50%, -50%);
  }
  .bg-text-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .bg-text-3 {
    bottom: 25%;
    right: 25%;
    transform: translate(50%, 50%);
  }

  /* Positions for bg-btn */
  .bg-btn-1 {
    top: 25%;
    left: 25%;
    margin-left: -5rem; /* -ml-20 = -80px, approx 5rem */
  }
  .bg-btn-2 {
    top: 50%;
    right: 25%;
    margin-right: -2.5rem; /* -mr-10 = -40px, approx 2.5rem */
  }
  .bg-btn-3 {
    bottom: 25%;
    left: 33.3333%;
    margin-bottom: -2.5rem; /* -mb-10 = -40px, approx 2.5rem */
  }
  .bg-btn-4 {
    top: 33.3333%;
    right: 33.3333%;
    margin-top: 5rem; /* mt-20 = 80px, approx 5rem */
  }
  .bg-btn-5 {
    bottom: 33.3333%;
    right: 25%;
    margin-right: -1.25rem; /* -mr-5 = -20px, approx 1.25rem */
  }
  .bg-btn-6 {
    bottom: 50%;
    left: 25%;
    margin-left: -1.25rem; /* -ml-5 = -20px, approx 1.25rem */
  }

  /* Main card */
  .card {
    position: relative;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 24rem; /* max-w-sm */
    margin: 0 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }

  /* Back button */
  .back-button {
    display: flex;
    align-items: center;
    color: #4b5563; /* gray-700 */
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease-in-out;
  }
  .back-button svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    stroke: currentColor;
  }
  .back-button:hover,
  .back-button:focus {
    color: #111827; /* gray-900 */
    outline: none;
  }
  .back-button:focus-visible {
    outline: 2px solid #3b82f6; /* blue-500 */
    outline-offset: 2px;
  }

  /* Title and subtitle */
  h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin: 0 0 0.5rem 0;
  }
  p.subtitle {
    color: #4b5563; /* gray-600 */
    font-size: 1rem;
    margin: 0 0 2rem 0;
  }

  /* Buttons */
  .btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151; /* gray-700 */
    background: white;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
  }
  .btn-google svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
  }
  .btn-google:hover,
  .btn-google:focus {
    background-color: #f9fafb; /* gray-50 */
    outline: none;
  }
  .btn-google:focus-visible {
    outline: 2px solid #3b82f6; /* blue-500 */
    outline-offset: 2px;
  }

  /* Social buttons container */
  .social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
  }

  /* Social buttons */
  .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151; /* gray-700 */
    background: white;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
  }
  .btn-social svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .btn-social:hover,
  .btn-social:focus {
    background-color: #f9fafb; /* gray-50 */
    outline: none;
  }
  .btn-social:focus-visible {
    outline-offset: 2px;
  }
  .btn-social.twitter:focus-visible {
    outline: 2px solid #6b7280; /* gray-500 */
  }
  .btn-social.instagram:focus-visible {
    outline: 2px solid #ec4899; /* pink-500 */
  }
  .btn-social.discord:focus-visible {
    outline: 2px solid #6366f1; /* indigo-500 */
  }

  /* Disclaimer text */
  .disclaimer {
    color: #6b7280; /* gray-500 */
    font-size: 0.75rem;
    margin-top: 1.5rem;
    text-align: center;
  }

  /* Continue button */
  .btn-continue {
    width: 100%;
    background-color: #16a34a; /* green-600 */
    color: white;
    padding: 0.75rem 0;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background-color 0.15s ease-in-out;
  }
  .btn-continue:hover,
  .btn-continue:focus {
    background-color: #15803d; /* green-700 */
    outline: none;
  }
  .btn-continue:focus-visible {
    outline: 2px solid #22c55e; /* green-500 */
    outline-offset: 2px;
  }

  /* Responsive adjustments */
  @media (min-width: 640px) {
    body {
      margin: 0;
    }
    .card {
      margin: 0 1.5rem;
    }
  }
