:root {
  color-scheme: light;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", sans-serif;
  color: #1f2024;
  background: #f7f7f8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 420px);
  padding: 32px 24px;
  border: 1px solid #ececef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgb(31 32 36 / 8%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7c55ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.status {
  margin: 12px 0 0;
  color: #696a70;
  font-size: 15px;
  line-height: 1.55;
}

.invite-code {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f5f1ff;
  color: #5b35d5;
  font-size: 17px;
  font-weight: 700;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: #7c55ff;
}

.button-secondary {
  color: #35363a;
  background: #f1f1f3;
}

.button:focus-visible {
  outline: 3px solid rgb(124 85 255 / 35%);
  outline-offset: 2px;
}
