:root {
  --cream: #fff7e8;
  --paper: #ffffff;
  --ink: #263044;
  --blue: #b9e5ff;
  --green: #c9f0c2;
  --orange: #ffd7a1;
  --purple: #ded0ff;
  --shadow: 0 12px 30px rgba(38, 48, 68, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #e2f5ff, var(--cream));
}

.login-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card,
.quest-card,
.booker-note {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-card {
  width: min(520px, 94vw);
  padding: 34px;
  text-align: center;
}

.mascot {
  font-size: 4rem;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  margin: 0;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 0;
}

.subtitle,
#welcomeLine,
.quest-card p,
.booker-note {
  font-size: 1.25rem;
}

.google-button,
.small-button,
.wide-button {
  border: none;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
}

.google-button {
  width: 100%;
  margin-top: 20px;
  padding: 18px;
  font-size: 1.3rem;
  background: #ffffff;
  border: 4px solid #d7e3f3;
}

.google-button span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  border-radius: 50%;
  background: #eaf1ff;
}

.message {
  min-height: 24px;
  font-weight: 700;
}

.topbar {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbar h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.small-button {
  background: #ffffff;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}

.link-button {
  display: inline-block;
}

.dashboard-shell {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding-bottom: 32px;
}

.quest-card {
  padding: 26px;
  margin-bottom: 22px;
}

.hero {
  text-align: center;
}

.quest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.quest-button {
  min-height: 190px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  padding: 18px;
  border: 6px solid rgba(255, 255, 255, 0.8);
}

.quest-button span {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
}

.blue {
  background: var(--blue);
}

.green {
  background: var(--green);
}

.orange {
  background: var(--orange);
}

.purple {
  background: var(--purple);
}

.booker-note {
  margin-top: 22px;
  padding: 20px;
  text-align: center;
}

.wide-button {
  display: block;
  text-align: center;
  background: var(--blue);
  padding: 22px;
  font-size: 1.6rem;
  margin-top: 18px;
}

.center {
  text-align: center;
}

.big-icon {
  font-size: 5rem;
}

@media (max-width: 740px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .quest-grid {
    grid-template-columns: 1fr;
  }

  .quest-button {
    min-height: 150px;
  }
}
