:root {
  --bg-top: #edf6f7;
  --bg-bottom: #dbe8e4;
  --panel: #fcfbf8;
  --line: rgba(47, 68, 77, 0.14);
  --text: #1f2d35;
  --muted: #5d6b75;
  --accent: #1f7a8c;
  --accent-dark: #155d6b;
  --solo: #236b9a;
  --together: #2f9f6b;
  --shadow: 0 18px 42px rgba(33, 48, 58, 0.13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.reload-hotspot {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border: 0;
  opacity: 0.01;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: 20px 20px 94px;
  place-items: center;
}

.choice-panel {
  width: min(1120px, 100%);
  padding: clamp(22px, 3.2vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 0.94;
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(33, 48, 58, 0.08);
}

.choice-card:focus-visible,
.choice-card:hover {
  outline: none;
  border-color: rgba(31, 122, 140, 0.46);
}

.choice-icon {
  display: grid;
  width: 86px;
  height: 86px;
  color: #fff;
  border-radius: 22px;
  place-items: center;
  font-size: 3.4rem;
  font-weight: 800;
}

.solo .choice-icon { background: var(--solo); }
.together .choice-icon { background: var(--together); }

.choice-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.choice-card small {
  display: block;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.exit-link {
  display: grid;
  width: min(420px, 100%);
  min-height: 58px;
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  background: #2c3840;
  font-size: 1.25rem;
  font-weight: 700;
  place-items: center;
}

@media (max-width: 850px) {
  .choices { grid-template-columns: 1fr; }
}
