:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text: #101620;
  --muted: #6b7684;
  --line: #dfe5ec;
  --blue: #2a8be0;
  --blue-dark: #176fbb;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(42, 139, 224, 0.16), rgba(218, 135, 11, 0.12)),
    #eef3f7;
}

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

.panel {
  width: min(430px, 100%);
  padding: 30px 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
  box-shadow: 0 18px 50px rgba(16, 22, 32, 0.12);
}

.brand {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a8be0, #da870b);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.2;
}

p {
  margin: 0;
}

#chat-description {
  min-height: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.primary {
  width: 100%;
  margin-top: 24px;
  padding: 13px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.primary:hover {
  background: var(--blue-dark);
}

.secondary {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.status {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
