 body {
      margin: 0;
      padding: 0;
      background: #f6f7fb;
      font-family: 'Segoe UI', sans-serif;
      color: #222;
      display: flex;
      flex-direction: column;
      align-items: center;
        font-family: Arial, sans-serif;
 background: url('/images/gatherTooLandingBG.png') top left no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #222;
    }

    header {
      text-align: center;
      margin-top:0px;
      width:100%;
    }


#authButtons {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.auth-btn {
  padding: 0.5rem 1rem;
  background: #96a4ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 4px black;
  transition: background 0.3s ease, transform 0.2s ease;
}

.auth-btn:hover {
  background: #7785f2;
  transform: translateY(-1px);
}

.auth-btn.signup {
  background: #87ffc8;
  color: #222;
}

.auth-btn.signup:hover {
  background: #5cecb0;
}

    .tagline {
      font-size: 1.2rem;
      margin-top: 1rem;
      color: #555;
    }

    main {
      max-width: 700px;
      padding: 2rem;
      text-align: center;
    }

    .promise {
      margin-bottom: 3rem;
    }

    .promise h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #111;
      font-weight:bold;
    }

    .promise p {
      font-size: 20pt;
      padding:10px;
      font-weight:bold;
      color: white;
      text-shadow:1px 1px 1px black;
      background:#96a4ff;
      border-radius:20px;
      box-shadow:3px 3px 5px black;
    }

    .cta {
      margin-top: 2rem;
    }

    .join-btn {
      padding: 0.8rem 1.6rem;
      font-size: 1.1rem;
      background-color: #222;
      color: #fff;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .join-btn:hover {
      background-color: #444;
    }

    .note {
      margin-top: 0.8rem;
      font-size: 0.9rem;
      color: #555;
    }

    footer {
      margin-top: 4rem;
      font-size: 0.9rem;
      color: #888;
      text-align: center;
      padding: 2rem;
    }
    #logoWrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 0px;
  font-size:0;
}

#logoImage {
  height: 60px;
  width: auto;
  object-fit: contain;
}

#logo {
  display: flex;
  gap: 0;
  box-shadow: 3px 3px 8px black;
  font-size: 3rem;
  font-weight: 700;
  color: #96a4ff;
  background: #87ffc8;
  text-shadow: 2px 2px 2px black;
  padding: 10px;
}

#logo span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: inherit;
  text-shadow: inherit;
  padding: 10px;
  transform: translate(var(--x, 0px), var(--y, 0px)) rotate(var(--r, 0deg)) scale(var(--s, 1));
  filter: blur(var(--b, 0px));
  opacity: 0;
  transition: transform 1s ease, opacity 0.8s ease, filter 0.8s ease;
  will-change: transform, opacity, filter, box-shadow;
}