:root {
  color-scheme: light dark;
  --bg: #f7f8f9;
  --fg: #1f2328;
  --muted: #5b6470;
  --accent: #3b5a7a;
  --card: #ffffff;
  --border: #dfe3e8;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131518;
    --fg: #e8eaed;
    --muted: #9aa3ad;
    --accent: #8db4d9;
    --card: #1d2124;
    --border: #30353b;
  }
}

* { box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a { color: var(--accent); }

main {
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
}

h1 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

main > p {
  color: var(--muted);
  margin: 0 0 2rem;
}

.pods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pod-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s ease;
}
.pod-card:hover {
  border-color: var(--accent);
}

.pod-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: left;
}

.pod-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.pod-amenity {
  font-size: 0.85rem;
  color: var(--muted);
}

.pod-cta {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.guest-link {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
