:root {
  --bg: #f4efe6;
  --ink: #1f2933;
  --card: #fffaf2;
  --line: #d9cbb7;
  --accent: #b54708;
  --accent-soft: #ffe8cc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #fff4dd 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, #ffe3bf 0%, transparent 30%),
    var(--bg);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 0.95;
}

.backLink {
  color: #6b4b2e;
  font-weight: 700;
}

.card {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 14px;
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

ol {
  margin: 0 0 10px 18px;
  padding: 0;
  line-height: 1.5;
}

.repoLine {
  margin: 0;
}

form {
  display: grid;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input, select, button {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

button {
  width: fit-content;
  cursor: pointer;
  background: var(--accent-soft);
  border-color: #f6c788;
  font-weight: 700;
}

button:hover {
  border-color: var(--accent);
}

.hint {
  margin: 0;
  font-size: 12px;
  color: #52606d;
}

.status {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.hidden {
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  border-bottom: 1px solid var(--line);
  padding: 8px;
}

td:first-child {
  font-weight: 700;
  width: 180px;
}

.positionLine {
  margin: 10px 0 0;
  font-weight: 600;
}
