:root {
  /* Charte officielle Cosmic LB Consulting */
  --ink:     #0d0a0a;                  /* noir profond */
  --wine:    #4A0F1E;                  /* bordeaux identitaire */
  --gold:    #c0a060;                  /* marron doré / bronze */
  --muted:   #4b5563;                  /* gris texte */
  --paper:   #F2F4F6;                  /* fond froid clair */
  --surface: #ffffff;                  /* blanc pur */
  --line:    rgba(13, 10, 10, 0.10);   /* lignes fines */

  /* États (à garder discrets) */
  --green: #1f8a5b;
  --amber: #a66900;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

code {
  color: var(--wine);
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
}

.side {
  background: var(--ink);
  color: #ffffff;
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 18px 0 44px rgba(13, 10, 10, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 0 4px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(192, 160, 96, 0.22);
}

.brand small,
.kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.side h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.side-nav {
  display: grid;
  gap: 7px;
}

.side-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 12px 11px 16px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.side-nav a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height 0.16s ease;
}

.side-nav a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(2px);
}

.side-nav a[aria-current="page"] {
  color: #ffffff;
  border-color: rgba(192, 160, 96, 0.38);
  background: linear-gradient(90deg, rgba(192, 160, 96, 0.20), rgba(192, 160, 96, 0.06));
  box-shadow: inset 0 0 0 1px rgba(192, 160, 96, 0.04);
}

.side-nav a[aria-current="page"]::before {
  height: 18px;
}

.main {
  min-width: 0;
  padding: clamp(22px, 4vw, 54px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}

.topbar h2 {
  margin: 8px 0 12px;
  font-family: Inter, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Accent premium / signature : Playfair Display italic */
.signature {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--wine);
}

.topbar h2.signature,
.auth-hero h2.signature {
  font-weight: 500;
}

.auth-hero h2.signature {
  color: #ffffff;
}

.topbar p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.status-pill {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill[data-tone="ok"] {
  border-color: rgba(31, 138, 91, 0.35);
  color: var(--green);
}

.status-pill[data-tone="warn"] {
  border-color: rgba(166, 105, 0, 0.35);
  color: var(--amber);
}

.topbar-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.session-card {
  display: grid;
  gap: 4px;
  justify-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 12px;
  min-width: 230px;
  color: var(--muted);
  font-size: 12px;
}

.session-card span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.session-card strong {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
  white-space: nowrap;
}

.session-card em {
  font-style: normal;
}

.session-logout {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 7px 9px;
  cursor: pointer;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
}

.auth-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: #ffffff;
  padding: clamp(28px, 6vw, 76px);
}

.auth-brand {
  margin-bottom: clamp(48px, 10vw, 120px);
}

.auth-hero h2 {
  max-width: 720px;
  margin: 16px 0 24px;
  font-family: Inter, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.auth-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
}

.auth-panel {
  align-self: center;
  width: min(560px, calc(100% - 48px));
  justify-self: center;
}

.auth-status {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.panel-copy {
  margin: -4px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.portal-choices {
  display: grid;
  gap: 10px;
}

.portal-choice {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  text-decoration: none;
}

.portal-choice:hover {
  border-color: rgba(192, 160, 96, 0.55);
}

.portal-choice span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-choice strong {
  font-size: 18px;
}

.portal-choice small {
  color: var(--muted);
  line-height: 1.45;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 22px;
  text-decoration: none;
}

.tool-card:hover {
  border-color: rgba(192, 160, 96, 0.55);
}

.tool-card span,
.number-card span,
.mini-number-grid span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tool-card strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.tool-card small {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.5;
}

/* Cards d'outils complétés sur fiche personne (cliquables) */
.tool-completed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.tool-completed {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 18px;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.1s ease;
}

.tool-completed:hover {
  border-color: rgba(192, 160, 96, 0.55);
  transform: translateY(-1px);
}

.tool-completed strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tool-completed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 6px;
}

.tool-completed-meta em {
  font-style: normal;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}

.tool-completed small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.muted-card {
  opacity: 0.72;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.summary-grid div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px;
}

.summary-grid span,
.summary-grid strong {
  display: block;
}

.summary-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-grid strong {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 28px;
}

.panel h3 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-heading h3 {
  margin: 0;
}

.form {
  display: grid;
  gap: 12px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.8fr) minmax(140px, 0.8fr);
  gap: 8px;
  margin-bottom: 12px;
}

.filters input,
.filters select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 10px 11px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  padding: 11px 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  background: #1a1414;
}

.btn:active {
  transform: translateY(1px);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn.secondary:hover {
  background: rgba(13, 10, 10, 0.04);
}

.btn.accent {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn.accent:hover {
  background: #b08e54;
  border-color: #b08e54;
}

.btn.danger {
  background: transparent;
  color: #b53a3a;
  border-color: rgba(181, 58, 58, 0.45);
}

.btn.danger:hover {
  background: rgba(181, 58, 58, 0.08);
  border-color: rgba(181, 58, 58, 0.70);
}

.item {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.item:hover {
  border-color: rgba(192, 160, 96, 0.30);
}

.item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.identity-result {
  display: grid;
  gap: 18px;
}

.identity-result h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.identity-result p {
  margin: 0;
  color: var(--muted);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.number-card {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px;
}

.number-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
}

.number-card small {
  color: var(--muted);
  line-height: 1.35;
}

.success-note {
  margin: 0;
  color: var(--green);
  font-weight: 600;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--paper);
}

.empty {
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.help-error {
  margin: 4px 0 0;
  color: var(--amber);
  font-size: 13px;
}

.login {
  max-width: 420px;
}

.people-list {
  display: grid;
  gap: 8px;
}

.person-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.person-row:hover {
  border-color: rgba(192, 160, 96, 0.45);
}

.person-row.active {
  border-color: rgba(192, 160, 96, 0.65);
  background: rgba(192, 160, 96, 0.08);
}

.person-row strong,
.person-row small {
  display: block;
}

.person-row small {
  margin-top: 4px;
  color: var(--muted);
}

.row-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.row-tags em {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  padding: 5px 8px;
  font-size: 11px;
  font-style: normal;
}

.attached-data {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(192, 160, 96, 0.32);
  border-radius: 8px;
  background: rgba(192, 160, 96, 0.08);
  padding: 14px;
}

.attached-data h4 {
  margin: 0;
  font-size: 16px;
}

.mini-number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.mini-number-grid div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 10px;
}

.mini-number-grid strong {
  font-size: 18px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-hero {
    min-height: auto;
  }

  .auth-brand {
    margin-bottom: 40px;
  }

  .auth-panel {
    width: 100%;
    padding: 22px;
  }

  .shell {
    grid-template-columns: 1fr;
  }

  .side {
    position: static;
    height: auto;
    overflow: visible;
  }

  .grid,
  .topbar,
  .summary-grid,
  .filters,
  .tool-grid,
  .number-grid,
  .mini-number-grid {
    display: block;
  }

  .status-pill {
    display: inline-flex;
    margin-top: 16px;
  }

  .topbar-side {
    justify-items: start;
    margin-top: 16px;
  }

  .session-card {
    justify-items: start;
    min-width: 0;
    width: 100%;
  }

  .panel {
    margin-bottom: 16px;
  }

  .summary-grid div,
  .filters input,
  .filters select {
    margin-bottom: 8px;
  }

  .split-fields {
    grid-template-columns: 1fr;
  }

  .person-row {
    display: grid;
  }

  .row-tags {
    justify-content: start;
  }
}

/* === FOOTER PORTAIL === */
.portal-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(242, 244, 246, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 100;
  pointer-events: none;
  letter-spacing: 0.04em;
}

/* DA Diagnostic AOS / Cosmic LB */
:root {
  --ink: #F2F4F6;
  --wine: #34141C;
  --wine-soft: #4A1D28;
  --gold: #c0a060;
  --gold-soft: #d4b878;
  --muted: rgba(242, 244, 246, 0.62);
  --paper: #0d0a0a;
  --surface: rgba(242, 244, 246, 0.055);
  --surface-strong: rgba(242, 244, 246, 0.085);
  --field-bg: rgba(8, 9, 10, 0.72);
  --line: rgba(242, 244, 246, 0.12);
  --green: #7cc69b;
  --amber: #d4a24c;
}

body {
  background: linear-gradient(135deg, #1b0a0f 0%, #0d0a0a 58%, #17191b 100%);
  color: var(--ink);
  font-weight: 300;
}

code {
  color: var(--gold-soft);
}

.side {
  background: linear-gradient(180deg, rgba(52, 20, 28, 0.96) 0%, rgba(13, 10, 10, 0.98) 45%, #08090a 100%);
  border-right-color: rgba(192, 160, 96, 0.18);
  box-shadow: 22px 0 60px rgba(0, 0, 0, 0.28);
}

.brand {
  border-bottom-color: rgba(192, 160, 96, 0.18);
}

.brand-mark {
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(192, 160, 96, 0.55);
  box-shadow: none;
}

.brand small,
.kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.side h1,
.signature {
  font-family: Inter, system-ui, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.side h1 {
  color: var(--ink);
  font-size: 22px;
}

.side-nav a {
  border-radius: 3px;
  color: rgba(242, 244, 246, 0.58);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.side-nav a:hover {
  color: var(--gold-soft);
  border-color: rgba(192, 160, 96, 0.22);
  background: rgba(192, 160, 96, 0.08);
}

.side-nav a[aria-current="page"] {
  color: var(--gold-soft);
  border-color: rgba(192, 160, 96, 0.36);
  background: rgba(192, 160, 96, 0.10);
  box-shadow: none;
}

.main {
  position: relative;
}

.main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(192, 160, 96, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(192, 160, 96, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
}

.topbar h2 {
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0;
}

.signature {
  color: var(--gold);
}

.topbar p,
.panel-copy,
.tool-card small,
.tool-completed small,
.item p,
.identity-result p,
.number-card small,
.person-row small,
.meta,
.empty,
.row-tags em,
.session-card,
.portal-choice small {
  color: var(--muted);
}

.status-pill,
.session-card,
.portal-choice,
.tool-card,
.tool-completed,
.summary-grid div,
.panel,
.item,
.number-card,
.person-row,
.mini-number-grid div,
.tag,
.empty {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.status-pill,
.tag,
.row-tags em,
.tool-completed-meta em {
  background: rgba(242, 244, 246, 0.06);
}

.session-card strong,
.portal-choice strong,
.tool-card strong,
.tool-completed strong,
.summary-grid strong,
.panel h3,
.item h4,
.mini-number-grid strong,
.person-row strong {
  color: var(--ink);
}

.summary-grid span,
.portal-choice span,
.tool-card span,
.number-card span,
.mini-number-grid span,
.session-card span {
  color: var(--gold);
  font-weight: 500;
}

.number-card strong {
  font-family: Inter, system-ui, sans-serif;
  font-style: normal;
  color: var(--gold);
}

.filters input,
.filters select,
.field input,
.field select,
.field textarea,
.session-logout,
input,
select,
textarea {
  background: var(--field-bg);
  border-color: var(--line);
  color: var(--ink);
}

.filters input:focus,
.filters select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(192, 160, 96, 0.65);
  box-shadow: 0 0 0 3px rgba(192, 160, 96, 0.10);
}

.field label {
  color: rgba(192, 160, 96, 0.78);
  font-weight: 500;
}

.btn {
  border-color: var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: #0d0a0a;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--gold-soft);
}

.btn.secondary,
.session-logout {
  background: transparent;
  color: var(--gold);
  border-color: rgba(192, 160, 96, 0.36);
}

.btn.secondary:hover,
.session-logout:hover {
  background: rgba(192, 160, 96, 0.08);
}

.btn.danger {
  background: transparent;
  color: #d26a6a;
  border-color: rgba(210, 106, 106, 0.38);
}

.btn.danger:hover {
  background: rgba(210, 106, 106, 0.10);
}

.attached-data {
  background: rgba(192, 160, 96, 0.08);
  border-color: rgba(192, 160, 96, 0.28);
}

.person-row:hover,
.tool-card:hover,
.tool-completed:hover,
.portal-choice:hover,
.item:hover {
  border-color: rgba(192, 160, 96, 0.42);
}

.person-row.active {
  border-color: rgba(192, 160, 96, 0.62);
  background: rgba(192, 160, 96, 0.12);
}

.portal-footer {
  color: rgba(242, 244, 246, 0.48);
  background: rgba(13, 10, 10, 0.82);
  border-top-color: rgba(192, 160, 96, 0.16);
}
