:root {
  color-scheme: dark;
  font-family: "Source Serif 4", Georgia, serif;
  background: #172426;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  color: #f6ecd4;
  background:
    linear-gradient(180deg, rgba(10, 20, 23, 0.2), rgba(9, 15, 17, 0.7)),
    url("/assets/capeador-world-map.jpg") center / cover fixed;
}

.landing-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.welcome-card {
  width: min(42rem, 100%);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  border: 1px solid rgba(222, 189, 122, 0.62);
  border-radius: 0.35rem;
  background: linear-gradient(145deg, rgba(19, 30, 31, 0.94), rgba(34, 27, 21, 0.9));
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.55), inset 0 0 3rem rgba(207, 168, 92, 0.06);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #d5b476;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #f8e8bd;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 0.98;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

.tagline {
  max-width: 31rem;
  margin: 1.5rem auto 2.25rem;
  color: #eadfc8;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.55;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.3rem;
  padding: 0.8rem 1.4rem;
  color: white;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.3rem;
  background: #5865f2;
  box-shadow: 0 0.75rem 2rem rgba(22, 29, 99, 0.42);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.discord-button:hover,
.discord-button:focus-visible {
  transform: translateY(-2px);
  background: #6d78f4;
  box-shadow: 0 1rem 2.5rem rgba(22, 29, 99, 0.55);
}

.access-note {
  margin: 1.35rem 0 0;
  color: #bdb3a0;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  body {
    background-position: 45% center;
  }

  .landing-shell {
    padding: 1rem;
  }

  .welcome-card {
    padding: 2.25rem 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .discord-button {
    transition: none;
  }
}
