:root {
  --bg: #101312;
  --panel: #181d1a;
  --panel-2: #202720;
  --line: rgba(247, 242, 232, 0.14);
  --text: #f7f2e8;
  --muted: #b9b5aa;
  --mint: #78dcca;
  --gold: #f4b860;
  --danger: #ef6f6c;
  --ink: #111312;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(180deg, rgba(120, 220, 202, 0.08), transparent 360px), var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button,
input,
textarea,
select {
  border-radius: 8px;
  font: inherit;
}

button,
.button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.link-button {
  min-height: 30px;
  border: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.03);
  color: var(--muted);
  padding: 0 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d100f;
  color: var(--text);
  padding: 7px 8px;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

.site-header,
.site-footer,
main {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
}

.site-header nav > a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 242, 232, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 8px;
}

.site-header nav > a:hover,
.site-header nav > a:focus-visible {
  border-color: rgba(120, 220, 202, 0.5);
  background: rgba(120, 220, 202, 0.08);
  color: var(--text);
  outline: none;
}

.account-menu {
  position: relative;
}

.account-trigger {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.03);
  cursor: pointer;
  list-style: none;
  padding: 2px;
}

.account-trigger::-webkit-details-marker {
  display: none;
}

.account-trigger::marker {
  content: "";
}

.account-trigger:hover,
.account-trigger:focus-visible,
.account-menu[open] .account-trigger {
  border-color: rgba(120, 220, 202, 0.5);
  background: rgba(120, 220, 202, 0.08);
  outline: none;
}

.site-header .nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 8px;
  line-height: 1;
}

.account-dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  right: 0;
  width: min(200px, calc(100vw - 24px));
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 6px;
}

.account-dropdown a,
.account-dropdown .link-button {
  width: 100%;
  min-height: 30px;
  justify-content: flex-start;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 8px;
  text-align: left;
}

.account-dropdown a {
  display: inline-flex;
  align-items: center;
}

.account-dropdown a:hover,
.account-dropdown a:focus-visible,
.account-dropdown .link-button:hover,
.account-dropdown .link-button:focus-visible {
  background: rgba(120, 220, 202, 0.08);
  color: var(--text);
  outline: none;
}

.site-header form {
  display: inline-flex;
  margin: 0;
}

.account-dropdown form {
  display: block;
  margin: 0;
}

.brand {
  font-weight: 900;
  color: var(--mint);
}

.hero {
  max-width: 780px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.hero h1,
.public-hero h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.08;
}

.hero p,
.public-hero p,
.muted {
  color: var(--muted);
  line-height: 1.55;
}

.public-hero .game-cv-headline {
  margin: 6px 0 2px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.availability-note {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  align-items: center;
  margin: 7px 0 0;
}

.availability-note strong {
  color: var(--mint);
}

.availability-note span {
  color: var(--muted);
}

.proof-link {
  min-height: 30px;
}

.contact-link {
  margin-top: 7px;
  min-height: 30px;
}

.tag.proof-level {
  background: rgba(120, 220, 202, 0.14);
  color: var(--mint);
}

.panel,
.stat-card,
.game-card,
.achievement-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 29, 26, 0.92);
}

.panel {
  padding: 10px;
}

.feature-grid,
.dashboard-grid,
.edit-grid,
.two-column {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
}

.feature-grid,
.stat-grid,
.card-grid,
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 16px;
}

.dashboard-grid,
.edit-grid {
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 8px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.share-link-panel {
  display: grid;
  gap: 6px;
}

.share-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.share-link-input {
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-link-action {
  min-width: 72px;
}

.completion-list {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.completion-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 6px;
  padding: 6px 0;
  border-top: 1px solid var(--line);
}

.completion-status {
  color: var(--danger);
  font-size: 10px;
  font-weight: 900;
}

.completion-item.is-complete .completion-status {
  color: var(--mint);
}

.completion-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.completion-copy strong {
  overflow-wrap: anywhere;
}

.completion-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin: 9px 0 6px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  line-height: 1.2;
}

.section-head h1 {
  font-size: 15px;
}

.section-head h2 {
  font-size: 13px;
}

.sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
}

.sync-form {
  margin: 0;
}

.icon-button {
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
}

.sync-button {
  border-color: var(--line);
}

.sync-button-steam {
  background: #66c0f4;
  color: #10202b;
}

.sync-button-epic {
  background: #f7f2e8;
  color: var(--ink);
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--panel-2);
}

.avatar.large {
  width: 56px;
  height: 56px;
}

.avatar.xl {
  width: 96px;
  height: 96px;
}

.profile-panel {
  display: grid;
  gap: 6px;
}

.profile-row,
.post-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-panel h1,
.profile-panel h2 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.full {
  width: 100%;
}

.stat-card {
  padding: 8px;
}

.stat-card strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.achievement-card {
  display: grid;
  gap: 6px;
  padding: 8px;
}

.achievement-card p {
  margin: 0;
  line-height: 1.4;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 6px;
  background: rgba(120, 220, 202, 0.08);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.tag.gold,
.notice {
  background: rgba(244, 184, 96, 0.16);
}

.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 8px;
}

.notice.danger {
  background: rgba(239, 111, 108, 0.14);
}

.game-list,
.choice-list {
  display: grid;
  gap: 6px;
}

.game-row,
.game-choice {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: rgba(16, 19, 18, 0.5);
}

.game-row .game-art,
.game-choice .game-art,
.game-card .game-art,
.compact-game .game-art {
  width: 100%;
  aspect-ratio: 2.12 / 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: var(--panel-2);
}

.game-art-default {
  object-fit: cover;
}

.game-row h3,
.game-card h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.game-card {
  overflow: hidden;
}

.game-card div {
  padding: 7px;
}

.compact-game {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.compact-game > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.compact-game span {
  overflow-wrap: anywhere;
}

.form-panel,
.choice-grid {
  display: grid;
  gap: 8px;
}

.achievement-fields,
.contact-link-fields,
.proof-link-fields {
  display: grid;
  gap: 8px;
}

.achievement-fields h2,
.contact-link-fields h2,
.proof-link-fields h2 {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.25;
}

.proof-link-field {
  display: grid;
  grid-template-columns: minmax(108px, 160px) minmax(0, 1fr);
  gap: 8px;
}

.proof-link-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 16px;
}

.proof-link-card {
  display: grid;
  gap: 6px;
}

.proof-link-card strong,
.proof-link-card .muted {
  overflow-wrap: anywhere;
}

.timeline-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 16px;
}

.timeline-item {
  display: grid;
  gap: 5px;
}

.timeline-item h3,
.timeline-item p {
  margin: 0;
}

.timeline-item p {
  color: var(--text);
  line-height: 1.4;
  white-space: pre-wrap;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.timeline-evidence {
  margin-top: 2px;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-game-field,
.featured-rank-fields,
.featured-rank-field,
.featured-nickname-field,
.featured-role-field,
.featured-note-field,
.featured-proof-fields,
.featured-proof-field {
  display: grid;
  gap: 5px;
}

.featured-rank-fields,
.featured-proof-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-role-field,
.featured-nickname-field,
.featured-rank-field,
.featured-note-field,
.featured-proof-field {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.featured-note-input {
  min-height: 52px;
}

.featured-game-note {
  margin: 5px 0 0;
  color: var(--text);
  line-height: 1.35;
  white-space: pre-wrap;
}

.featured-game-proof-link {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  color: var(--text);
  overflow-wrap: anywhere;
}

.featured-game-proof-link strong {
  font-size: 12px;
}

.featured-game-nickname {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.featured-game-role {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 5px 0 0;
  border: 1px solid rgba(120, 220, 202, 0.34);
  border-radius: 999px;
  padding: 3px 6px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.featured-game-ranks {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.featured-game-rank {
  border: 1px solid rgba(244, 197, 94, 0.32);
  border-radius: 999px;
  padding: 3px 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.choice,
.game-choice {
  cursor: pointer;
}

.game-choice {
  position: relative;
  grid-template-columns: 92px minmax(0, 1fr);
}

.game-choice:has(.featured-game-checkbox:checked) {
  border-color: rgba(120, 220, 202, 0.72);
  background: rgba(120, 220, 202, 0.1);
  box-shadow: inset 0 0 0 1px rgba(120, 220, 202, 0.22);
}

.game-choice:focus-within {
  outline: 2px solid rgba(120, 220, 202, 0.72);
  outline-offset: 2px;
}

.featured-game-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 8px;
  color: var(--muted);
  text-align: center;
}

.empty p {
  margin: 0 0 6px;
}

.feed-empty-state {
  width: min(100%, 520px);
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 8px auto 0;
  padding: 18px;
  border-style: solid;
  background:
    linear-gradient(135deg, rgba(120, 220, 202, 0.12), transparent 42%),
    rgba(24, 29, 26, 0.92);
}

.feed-empty-state h1 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.feed-empty-state p {
  max-width: 360px;
  margin: 0;
  line-height: 1.5;
}

.public-hero {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  min-height: 100px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 29, 26, 0.72);
  padding: 10px;
  margin: 8px 0;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 8px;
  align-items: center;
  min-height: auto;
  padding: 10px 0;
}

.auth-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  line-height: 1.08;
}

.auth-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.4;
}

.auth-panel,
.compose-panel {
  display: grid;
  gap: 8px;
}

.auth-panel h2,
.compose-panel h2,
.post-card h2 {
  margin: 0;
  line-height: 1.25;
}

.auth-panel h2,
.compose-panel h2 {
  font-size: 14px;
}

.post-card h2 {
  font-size: 13px;
}

.author-link:hover {
  color: var(--mint);
}

.provider-list,
.compose-form,
.feed-list {
  display: grid;
  gap: 8px;
}

.provider-button {
  width: 100%;
}

.provider-button.disabled,
button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.feed-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 8px 0 18px;
}

.public-feed-shell {
  grid-template-columns: minmax(0, 1fr);
}

.sticky-panel {
  position: sticky;
  top: 8px;
}

.section-head.compact {
  margin: 0;
}

.compose-form textarea {
  min-height: 64px;
}

.evidence-fields {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 8px;
}

.compose-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  align-items: flex-end;
}

.compose-form button {
  justify-self: end;
  min-width: 70px;
  font-size: 12px;
}

.feed-filter-panel {
  display: grid;
  gap: 8px;
}

.feed-filter-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(132px, 1fr)) auto;
  gap: 8px;
  align-items: end;
}

.feed-filter-form button {
  justify-self: start;
  min-width: 68px;
}

.game-cv-setup-prompt {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
}

.game-cv-setup-prompt h2 {
  margin: 0;
  font-size: 13px;
}

.setup-missing-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-missing-list li {
  display: grid;
  gap: 4px;
}

.setup-missing-list strong,
.setup-missing-list span {
  overflow-wrap: anywhere;
}

.setup-missing-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.matching-shortcuts {
  display: grid;
  gap: 6px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
}

.matching-shortcut-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.matching-shortcut-head h3 {
  margin: 0;
  font-size: 13px;
}

.matching-shortcut-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.matching-shortcut {
  display: grid;
  gap: 3px;
  min-width: 140px;
  max-width: 210px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
}

.matching-shortcut strong,
.matching-shortcut span {
  overflow-wrap: anywhere;
}

.matching-shortcut span {
  color: var(--muted);
  font-size: 12px;
}

.active-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.active-filter-tag {
  background: rgba(244, 184, 96, 0.16);
}

.post-card {
  display: grid;
  gap: 7px;
}

.public-post-list {
  margin: 0 0 16px;
}

.post-head {
  justify-content: space-between;
}

.post-head > div {
  min-width: 0;
  flex: 1;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.post-category {
  min-height: 20px;
  padding: 0 6px;
}

.intent-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(46, 196, 182, 0.14);
  color: var(--mint);
}

.identity-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(247, 242, 232, 0.1);
  color: var(--text);
}

.role-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(255, 170, 136, 0.14);
  color: #ffc4ad;
}

.profile-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(145, 216, 122, 0.14);
  color: #c7f4b7;
}

.game-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(244, 184, 96, 0.14);
  color: var(--gold);
}

.region-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(132, 166, 255, 0.14);
  color: #b9c8ff;
}

.language-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(178, 145, 255, 0.14);
  color: #d6c7ff;
}

.microphone-tag {
  min-height: 20px;
  padding: 0 6px;
  background: rgba(120, 220, 202, 0.12);
  color: #a9efe4;
}

.match-badge {
  min-height: 20px;
  padding: 0 6px;
  border-color: rgba(46, 196, 182, 0.45);
  background: rgba(46, 196, 182, 0.22);
  color: var(--mint);
}

.shared-game-badge {
  min-height: 20px;
  padding: 0 6px;
  border-color: rgba(244, 184, 96, 0.42);
  background: rgba(244, 184, 96, 0.22);
  color: var(--gold);
}

.post-game-career {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.post-author-headline {
  max-width: 760px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.post-game-career-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid rgba(120, 220, 202, 0.28);
  border-radius: 999px;
  padding: 3px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.post-game-career-item strong {
  margin-left: 3px;
  color: var(--text);
}

.post-game-career-proof {
  border-color: rgba(244, 184, 96, 0.34);
  color: var(--gold);
}

.post-game-career-proof strong {
  color: var(--text);
}

.post-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 5px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.post-availability strong {
  color: var(--mint);
}

.post-contact-link {
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  margin-top: 5px;
  padding: 0 8px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.post-body {
  margin: 0;
  color: var(--text);
  line-height: 1.4;
  white-space: pre-wrap;
}

.post-evidence-link {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px;
  background: rgba(16, 19, 18, 0.5);
}

.post-evidence-link strong,
.post-evidence-link .muted {
  overflow-wrap: anywhere;
}

.avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.error-panel {
  max-width: 640px;
  margin: 18px auto;
  display: grid;
  gap: 8px;
}

@media (max-width: 860px) {
  .feature-grid,
  .dashboard-grid,
  .edit-grid,
  .two-column,
  .stat-grid,
  .card-grid,
  .achievement-grid,
  .auth-shell,
  .feed-shell {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .public-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-row,
  .game-choice {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .sync-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .compose-actions,
  .evidence-fields,
  .feed-filter-form {
    grid-template-columns: 1fr;
  }

  .matching-shortcut {
    max-width: none;
    width: 100%;
  }

  .proof-link-field {
    grid-template-columns: 1fr;
  }

  .share-link-row {
    grid-template-columns: 1fr;
  }

  .compose-form button,
  .feed-filter-form button,
  .share-link-action {
    width: 100%;
  }
}
