.kicker,
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 800;
}

.kicker,
.eyebrow {
  color: var(--gold);
}

h1,
h2 {
  margin: 0.35rem 0 0;
  line-height: 1;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.7rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.subtitle {
  margin: 1rem 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.selection-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 0.65rem;
}

.input-row input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  outline: none;
}

.input-row input:focus {
  border-color: var(--pitch);
  box-shadow: 0 0 0 4px rgba(25, 160, 95, 0.15);
}

.input-row button {
  border: 0;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  color: #082414;
  background: var(--gold);
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.input-row button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.status-message {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.help-text {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-message[data-tone="success"] { color: var(--success); }
.status-message[data-tone="warning"] { color: var(--warning); }
.status-message[data-tone="error"] { color: var(--danger); }

.team-card {
  display: grid;
  gap: 0.25rem;
  min-height: 150px;
  border-radius: 24px;
  padding: 1rem;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, var(--pitch), var(--pitch-dark));
  text-align: left;
}

.team-card.is-active {
  outline: 4px solid var(--gold);
}

.team-card.is-owned {
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.26), rgba(255, 255, 255, 0.06)),
    linear-gradient(160deg, #1d7c55, #0d4f34);
}

.team-card:disabled {
  color: rgba(255, 255, 255, 0.66);
  background: linear-gradient(160deg, #4d5b52, #26362d);
  cursor: not-allowed;
}

.team-card.is-blocked {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(160deg, #1d3342, #0f1e2d);
}

.flag {
  font-size: 2.1rem;
}

.team-release-btn,
.team-pick-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.team-release-btn {
  justify-self: start;
  margin-top: -0.2rem;
  color: #2b1305;
  background: #ffd2b8;
}

.team-pick-btn {
  justify-self: start;
  margin-top: 0.45rem;
  color: #082414;
  background: var(--gold);
}

.team-release-btn:disabled,
.team-pick-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 900;
}

.team-meta,
.team-status {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.team-status {
  justify-self: start;
  margin-top: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0.7rem;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seed {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #072414;
  background: var(--gold);
  font-weight: 900;
}

.team-inline {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 800;
}

.points-editor {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.points-input {
  width: 4.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.36rem 0.5rem;
  font-weight: 700;
}

.points-save-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  color: #082414;
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.points-save-btn:disabled,
.points-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.empty-state {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .input-row {
    flex-direction: column;
  }
}
