.mci-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 112, 44, .16), transparent 32%),
    radial-gradient(circle at 14% 72%, rgba(231, 223, 209, .055), transparent 34%),
    #0b0c0d;
}

.mci-shell {
  width: min(1280px, calc(100% - 48px));
}

.mci-hero {
  grid-template-columns: minmax(0, 1fr) minmax(240px, .35fr);
}

.mci-actions {
  align-items: center;
}

.mci-actions .button {
  color: #1b110b;
}

.mci-status-card {
  align-self: stretch;
  border: 1px solid rgba(231, 223, 209, .14);
  background: linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
}

.mci-status-card p {
  margin: 1rem 0 0;
  color: var(--paper-muted);
  line-height: 1.6;
  font-size: .92rem;
}

.mci-console {
  margin: 3rem 0 1.2rem;
  border: 1px solid rgba(231, 223, 209, .14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    #090a0c;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .36);
  overflow: hidden;
}

.mci-console-header {
  min-height: 58px;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(231, 223, 209, .12);
  background: rgba(0, 0, 0, .22);
}

.mci-console-header strong,
.mci-console-header a {
  color: var(--orange-bright);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mci-console-header span {
  display: block;
  margin-top: .25rem;
  color: var(--paper-muted);
  font-size: .74rem;
}

.mci-console-header a {
  color: var(--paper-muted);
  border: 1px solid rgba(231, 223, 209, .16);
  padding: .62rem .75rem;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.mci-console-header a:hover {
  color: var(--orange-bright);
  border-color: rgba(247, 163, 90, .55);
}

.mci-frame {
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
  background: #0b0c0d;
}

@media (max-width: 820px) {
  .mci-hero {
    grid-template-columns: 1fr;
  }

  .mci-frame {
    min-height: 760px;
  }
}

@media (max-width: 520px) {
  .mci-shell {
    width: min(100% - 32px, 1280px);
  }

  .mci-console-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .mci-console-header a {
    width: 100%;
    text-align: center;
  }
}
