:root {
  color-scheme: dark;
  --bg: #0b1116;
  --panel: rgba(15, 24, 31, 0.88);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #eef3f6;
  --muted: #9eb0bb;
  --accent: #d7b56d;
  --accent-strong: #f0ca7a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 181, 109, 0.14), transparent 35%),
    linear-gradient(160deg, #080d11 0%, #111a21 55%, #0a0f13 100%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(215, 181, 109, 0.55) rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(240, 202, 122, 0.9), rgba(215, 181, 109, 0.7));
  border-radius: 999px;
  border: 2px solid rgba(8, 13, 17, 0.35);
}

.shell {
  min-height: 100vh;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px 24px 0;
  background:
    linear-gradient(rgba(11, 17, 22, 0.72), rgba(11, 17, 22, 0.72)),
    url("assets/background.png") center / cover no-repeat;
}

.shell-dashboard {
  width: 100%;
  min-height: 100vh;
  display: block;
  padding: 32px 24px 48px;
  background:
    linear-gradient(rgba(11, 17, 22, 0.78), rgba(11, 17, 22, 0.88)),
    url("assets/background.png") center / cover fixed no-repeat;
}

.card {
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.dashboard-card {
  width: min(100%, 920px);
}

.policy-card {
  width: min(100%, 720px);
}

.login-card {
  background:
    linear-gradient(rgba(11, 17, 22, 0.72), rgba(11, 17, 22, 0.72)),
    url("assets/background.png") center / cover no-repeat;
}

.hero {
  text-align: center;
}

.dashboard-topline {
  width: min(100%, 1100px);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 26px;
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: rgba(15, 24, 31, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.dashboard-heading {
  min-width: 0;
}

.dashboard-heading .eyebrow {
  margin: 0;
}

.dashboard-heading h1 {
  overflow-wrap: anywhere;
  margin: 8px 0 0;
}

.dashboard-avatar {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(180deg, rgba(240, 202, 122, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(240, 202, 122, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.dashboard-section + .dashboard-section {
  margin-top: 24px;
}

.dashboard-section {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: rgba(15, 24, 31, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.admin-access-section {
  border-color: rgba(240, 202, 122, 0.24);
  background:
    linear-gradient(135deg, rgba(240, 202, 122, 0.12), rgba(15, 24, 31, 0.86) 58%),
    rgba(15, 24, 31, 0.84);
}

.admin-access-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-access-copy .eyebrow {
  margin: 0 0 8px;
}

.admin-access-copy h2 {
  margin: 0;
  font-size: 1.2rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.group-rank-list {
  display: grid;
  gap: 14px;
}

.group-rank-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.group-rank-image {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.group-rank-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-rank-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.group-rank-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.group-rank-role {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.in-game-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.data-tile {
  padding: 18px;
  min-height: 96px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-tile span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.data-tile strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.dashboard-alert {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 202, 122, 0.28);
  border-radius: 8px;
  background: rgba(240, 202, 122, 0.08);
  color: var(--text);
}

.dashboard-alert span {
  color: var(--muted);
  line-height: 1.5;
}

.dashboard-alert-error {
  border-color: rgba(255, 110, 110, 0.32);
  background: rgba(255, 110, 110, 0.08);
}

.dashboard-alert-success {
  border-color: rgba(112, 224, 164, 0.32);
  background: rgba(112, 224, 164, 0.08);
}

.data-subsection {
  margin: 22px 0 12px;
}

.data-subsection h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.admin-toolbar {
  margin-bottom: 16px;
}

.admin-search {
  display: grid;
  gap: 8px;
}

.admin-search span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  outline: none;
}

.admin-search input:focus {
  border-color: rgba(240, 202, 122, 0.44);
  box-shadow: 0 0 0 3px rgba(240, 202, 122, 0.12);
}

.admin-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.datastore-entry-list {
  display: grid;
  gap: 14px;
}

.datastore-entry {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.datastore-entry-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.datastore-entry-header span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.datastore-entry-header strong {
  display: block;
  color: var(--text);
  overflow-wrap: anywhere;
}

.datastore-entry-header em {
  color: #ffb3b3;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
}

.datastore-editor {
  display: grid;
  gap: 12px;
}

.staff-entry-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.staff-entry {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.staff-entry-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.staff-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.staff-avatar {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  flex: 0 0 auto;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-identity strong,
.staff-identity span {
  display: block;
}

.staff-identity strong {
  color: var(--text);
  margin-bottom: 2px;
}

.staff-identity .staff-name-missing,
.staff-modal-head .staff-name-missing {
  color: #ff6e6e;
}

.staff-identity span {
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.staff-summary-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.staff-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(240, 202, 122, 0.14);
  border: 1px solid rgba(240, 202, 122, 0.28);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.staff-pill-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.staff-entry-details {
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  margin: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(11, 17, 22, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: none;
  gap: 14px;
}

.staff-entry-details[open] {
  display: grid;
}

.staff-entry-details::backdrop {
  background: rgba(1, 4, 6, 0.72);
  backdrop-filter: blur(3px);
}

.staff-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.staff-modal-head h3 {
  margin: 0;
  font-size: 1rem;
}

.staff-readonly-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.staff-history-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.staff-history-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.staff-history-card:first-child {
  background: linear-gradient(180deg, rgba(240, 202, 122, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(240, 202, 122, 0.26);
}

.staff-history-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.staff-history-form {
  display: grid;
  gap: 10px;
}

.staff-history-form label {
  display: grid;
  gap: 8px;
}

.staff-history-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.staff-history-form input,
.staff-history-form select,
.staff-history-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

.staff-history-form textarea {
  min-height: 90px;
  padding: 10px 12px;
  resize: vertical;
}

.staff-event-promotion,
.staff-event-disciplinary {
  display: grid;
}

.staff-history-form input:focus,
.staff-history-form select:focus,
.staff-history-form textarea:focus {
  border-color: rgba(240, 202, 122, 0.44);
  box-shadow: 0 0 0 3px rgba(240, 202, 122, 0.12);
}

.history-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.history-list li {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 6px;
}

.history-list strong {
  color: var(--text);
  font-size: 0.9rem;
}

.history-list span,
.history-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.history-list-compact li {
  gap: 4px;
}

.history-list-audit {
  max-height: 360px;
  overflow: auto;
}

.audit-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.audit-filter-field {
  display: grid;
  gap: 8px;
}

.audit-filter-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.audit-filter-field input,
.audit-filter-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

.audit-filter-field input:focus,
.audit-filter-field select:focus {
  border-color: rgba(240, 202, 122, 0.44);
  box-shadow: 0 0 0 3px rgba(240, 202, 122, 0.12);
}

.staff-editor {
  display: grid;
  gap: 12px;
}

.staff-editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.staff-editor-grid label,
.datastore-editor label {
  display: grid;
  gap: 8px;
}

.staff-editor-grid span,
.datastore-editor label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.staff-editor-wide {
  grid-column: 1 / -1;
}

.staff-editor input,
.staff-editor select,
.staff-editor textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  outline: none;
}

.staff-editor select,
.staff-history-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, #d7b56d 50%),
    linear-gradient(135deg, #d7b56d 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.staff-editor select option,
.staff-history-form select option,
.staff-editor select optgroup,
.staff-history-form select optgroup {
  background: #0f1820;
  color: #eef3f6;
}

.staff-editor select:focus,
.staff-history-form select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, #f0ca7a 50%),
    linear-gradient(135deg, #f0ca7a 50%, transparent 50%);
}

.staff-editor textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.staff-editor input:focus,
.staff-editor select:focus,
.staff-editor textarea:focus {
  border-color: rgba(240, 202, 122, 0.44);
  box-shadow: 0 0 0 3px rgba(240, 202, 122, 0.12);
}

.staff-editor input[readonly] {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.staff-editor select:disabled,
.staff-editor textarea[readonly] {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.datastore-editor textarea {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 8, 11, 0.72);
  color: var(--text);
  font: 0.9rem/1.5 Consolas, "Courier New", monospace;
  outline: none;
  white-space: pre;
  overflow: auto;
}

.datastore-editor textarea:focus {
  border-color: rgba(240, 202, 122, 0.44);
  box-shadow: 0 0 0 3px rgba(240, 202, 122, 0.12);
}

.datastore-editor-actions {
  display: flex;
  justify-content: flex-end;
}

.staff-action-row {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.staff-action-row .button {
  min-width: 140px;
}

.staff-entry-archived {
  border-color: rgba(255, 183, 77, 0.28);
  background: rgba(255, 183, 77, 0.08);
}

.staff-archive-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-mark img,
.mini-brand img {
  display: block;
  max-width: 100%;
}

.brand-mark {
  width: 124px;
  margin: 0 auto 18px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-brand img {
  width: 36px;
  height: 36px;
}

.mini-brand span,
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.actions {
  margin-top: 24px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #1a1408;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost:hover {
  border-color: rgba(255, 110, 110, 0.42);
  background: rgba(255, 110, 110, 0.12);
}

@media (max-width: 760px) {
  .staff-entry-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .staff-history-grid {
    grid-template-columns: 1fr;
  }

  .staff-summary-badges {
    justify-content: flex-start;
  }

  .admin-page-actions {
    width: 100%;
  }

  .admin-page-actions .button {
    width: 100%;
  }
}

.button-block {
  width: 100%;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.back-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-strong);
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.policy-text {
  margin-top: 18px;
}

.policy-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-text p + p {
  margin-top: 14px;
}

.site-footer {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 15, 19, 0.58), rgba(7, 11, 14, 0.94)),
    radial-gradient(circle at top, rgba(215, 181, 109, 0.08), transparent 36%);
  backdrop-filter: blur(12px);
}

.footer-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 202, 122, 0.4);
  background: rgba(240, 202, 122, 0.1);
  color: var(--accent-strong);
}

@media (max-width: 520px) {
  .card {
    padding: 22px;
    border-radius: 20px;
  }

  .dashboard-topline,
  .admin-access-copy,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .shell-dashboard {
    padding: 18px 14px 36px;
  }

  .dashboard-topline,
  .dashboard-section {
    padding: 16px;
  }

  .dashboard-avatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .dashboard-avatar img {
    border-radius: 14px;
  }

  .in-game-data-grid {
    grid-template-columns: 1fr;
  }

  .group-rank-card {
    align-items: flex-start;
  }

  .brand-mark {
    width: 96px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.user-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.badge:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 202, 122, 0.35);
  background: rgba(240, 202, 122, 0.08);
}

.badge img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.badge span::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  margin-top: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.2s ease;
}

.badge:hover span::after {
  width: 100%;
}

.badge-link {
  display: flex;
  align-items: center;
  gap: 10px;

  color: inherit;
  text-decoration: none;

  width: 100%;
}
