.roadmap-card {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  gap: 7px;
  align-items: center;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: inherit;
  text-align: left;
  background: rgba(21, 52, 81, .7);
}

.activity-strip {
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: stretch;
  min-height: 48px;
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid rgba(100, 201, 255, .16);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(8, 30, 58, .92), rgba(8, 50, 62, .72));
}

.activity-strip-title {
  display: grid;
  grid-template-columns: 9px 1fr;
  align-content: center;
  gap: 2px 8px;
  padding: 9px 13px;
  border-right: 1px solid rgba(100, 201, 255, .13);
}

.activity-strip-title .live-dot { width: 7px; height: 7px; }
.activity-strip-title strong { color: var(--gold); font-size: 10px; }
.activity-strip-title span { grid-column: 2; color: #6f8da4; font-size: 7px; }

.activity-feed {
  display: grid;
  grid-template-columns: repeat(5, minmax(175px, 1fr));
  align-items: stretch;
  overflow-x: auto;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 2px 7px;
  min-width: 175px;
  padding: 7px 11px;
  border-left: 1px solid rgba(100, 201, 255, .08);
}

.activity-item.latest { background: rgba(100, 201, 255, .055); }
.activity-item time { color: #658299; font-size: 7px; }
.activity-item strong { overflow: hidden; color: var(--cyan); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.activity-item span { overflow: hidden; color: #b7c9d6; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.activity-item b { overflow: hidden; color: #eef8fd; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.activity-item em { justify-self: start; padding: 1px 5px; border-radius: 99px; color: #758ea3; background: rgba(117, 142, 163, .12); font-size: 7px; font-style: normal; }
.activity-item.passed em { color: var(--teal); background: rgba(33, 212, 178, .12); }
.activity-item.redo em { color: var(--red); background: rgba(255, 117, 109, .12); }
.activity-item.pending em { color: var(--gold); background: rgba(244, 197, 87, .12); }
.activity-empty { align-self: center; padding: 0 14px; color: #708a9f; font-size: 8px; }

button.roadmap-card {
  appearance: none;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s;
}

button.roadmap-card:hover {
  border-color: rgba(100, 201, 255, .3);
  background: rgba(26, 65, 98, .82);
  transform: translateY(-1px);
}

button.roadmap-card.active {
  border-color: rgba(33, 212, 178, .48);
  background: linear-gradient(135deg, rgba(21, 72, 91, .92), rgba(15, 83, 78, .7));
  box-shadow: 0 0 0 1px rgba(33, 212, 178, .08), 0 8px 22px rgba(0, 0, 0, .12);
}

.roadmap-card em {
  text-align: right;
}

.roadmap-card em small {
  display: block;
  margin-top: 2px;
  color: #718da3;
  font-size: 7px;
}

.stage-overview {
  display: grid;
  grid-template-columns: 1.05fr repeat(5, 1fr) 1.1fr;
  gap: 8px;
  margin-bottom: 11px;
}

.stage-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 90px;
  padding: 14px 16px;
  border: 1px solid rgba(156, 207, 222, .16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(17, 43, 76, .95), rgba(7, 29, 55, .78));
}

.stage-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -38px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: currentColor;
  opacity: .07;
}

.stage-card span,
.stage-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-card span {
  color: #91a9bd;
  font-size: 12px;
  font-weight: 700;
}

.stage-card small {
  margin-top: 3px;
  color: #c7d7e3;
  font-size: 10px;
  font-weight: 600;
}

.stage-card > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 9px;
}

.stage-card strong {
  color: var(--cyan);
  font-size: 32px;
  line-height: 1;
}

.stage-card em {
  color: #8ca4b8;
  font-size: 11px;
  font-style: normal;
}

.stage-card.onsite strong { color: #fff; }
.stage-card.subject.started strong { color: var(--teal); }
.stage-card.exam.started strong { color: var(--gold); }
.stage-card.not-started strong {
  color: #718ba1;
  font-size: 17px;
  letter-spacing: .04em;
}

.stage-card.in-progress strong {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: .04em;
}

.action-accordion {
  display: none;
  margin-top: 8px;
  padding: 10px 11px;
  border: 1px solid rgba(33, 212, 178, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6, 24, 48, .88), rgba(8, 57, 64, .55));
}

.action-accordion.open {
  display: block;
  animation: accordionIn .2s ease-out;
}

.exam-status-cell {
  appearance: none;
  padding: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}

.exam-status-cell:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(100, 201, 255, .25);
}

.exam-status-cell.not-passed {
  background: #314c64;
  box-shadow: inset 0 0 0 1px rgba(143, 168, 191, .08);
}

.exam-status-cell.partial-passed {
  background: conic-gradient(var(--cyan) var(--progress), #314c64 0);
  box-shadow: 0 0 9px rgba(100, 201, 255, .22);
}

.exam-status-cell.all-passed {
  background: var(--teal);
  box-shadow: 0 0 10px rgba(33, 212, 178, .32);
}

.exam-status-cell.all-passed i {
  background: #0b5e56;
}

.exam-matrix-legend .not-passed::before {
  background: #49647b;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.exam-matrix-legend .partial-passed::before {
  background: conic-gradient(var(--cyan) 55%, #314c64 0);
}

.exam-matrix-legend .all-passed::before {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(33, 212, 178, .35);
}

@keyframes accordionIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.action-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.action-detail-head > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.action-detail-head span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
}

.action-detail-head strong {
  font-size: 12px;
}

.action-detail-head em {
  color: var(--teal);
  font-size: 8px;
  font-style: normal;
}

.action-detail-head > b {
  color: #7994aa;
  font-size: 8px;
  font-weight: 500;
}

.action-progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 6px;
}

.action-progress-card {
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid rgba(129, 183, 206, .11);
  border-radius: 8px;
  background: rgba(21, 51, 78, .67);
}

.action-progress-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
}

.action-progress-head > b {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  padding: 0 4px;
  border-radius: 6px;
  color: #052b30;
  background: var(--teal);
  font-size: 8px;
}

.action-progress-head strong {
  overflow: hidden;
  color: #eaf5fb;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-progress-head em {
  color: var(--teal);
  font-size: 8px;
  font-style: normal;
}

.action-progress-card > p {
  height: 3px;
  margin: 6px 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.action-progress-card > p i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #4bbcff, var(--teal));
  box-shadow: 0 0 8px rgba(33, 212, 178, .35);
}

.action-progress-card > footer {
  display: flex;
  justify-content: space-between;
  color: #718ca2;
  font-size: 7px;
}

.action-progress-card > footer b {
  color: #d7e8f2;
}

.action-progress-card .has-redo,
.action-progress-card .has-redo b {
  color: #ff9189;
}

@media (max-width: 1200px) {
  .action-progress-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .activity-strip { grid-template-columns: 1fr; }
  .activity-strip-title { grid-template-columns: 9px 1fr; border-right: 0; border-bottom: 1px solid rgba(100, 201, 255, .1); }
  .activity-feed { grid-template-columns: repeat(5, 190px); }
  .action-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-detail-head > b { display: none; }
  .action-progress-grid { grid-template-columns: 1fr 1fr; }
}

button.group-card {
  appearance: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s;
}

button.group-card:hover {
  border-color: rgba(100, 201, 255, .28);
  background: linear-gradient(150deg, rgba(31, 70, 101, .78), rgba(6, 40, 67, .7));
  transform: translateY(-1px);
}

button.group-card.active {
  border-color: rgba(33, 212, 178, .5);
  background: linear-gradient(150deg, rgba(25, 80, 96, .86), rgba(8, 66, 69, .72));
  box-shadow: 0 0 0 1px rgba(33, 212, 178, .08), 0 8px 20px rgba(0, 0, 0, .12);
}

.group-card > div span em {
  display: block;
  margin-top: 1px;
  color: #718da3;
  font-size: 6px;
  font-style: normal;
}

.group-card.active > div span em {
  color: #8fe6d5;
}

.detail-panel.collapsed {
  padding-bottom: 12px;
  background: rgba(8, 29, 57, .6);
}

.detail-panel.collapsed .panel-title {
  margin-bottom: 0;
}

.student-detail-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.student-detail-tools b {
  color: #7f9ab1;
  font-size: 9px;
  font-weight: 500;
}

.student-detail-tools button {
  padding: 5px 9px;
  border: 1px solid rgba(100, 201, 255, .22);
  border-radius: 7px;
  color: #bcd7e8;
  background: rgba(100, 201, 255, .08);
  font-size: 8px;
  cursor: pointer;
}

.student-detail-tools button:hover {
  color: #052d2a;
  background: var(--teal);
}

.student-detail-body[hidden] {
  display: none;
}

.detail-panel .student-table {
  position: relative;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: rgba(100, 201, 255, .28) transparent;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.student-journey-head,
.student-journey-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.45fr) repeat(6, minmax(105px, 1fr));
  align-items: center;
  min-width: 1030px;
}

.student-journey-head {
  min-height: 34px;
  padding: 5px 10px;
  color: #7893aa;
  background: rgba(4, 16, 35, .62);
}

.student-journey-head > span {
  padding: 0 9px;
  border-left: 1px solid rgba(156, 207, 222, .08);
  font-size: 9px;
  font-weight: 800;
}

.student-journey-head > span:first-child {
  position: sticky;
  left: 0;
  z-index: 6;
  display: flex;
  align-self: stretch;
  align-items: center;
  padding-left: 3px;
  border-left: 0;
  background: #041023;
  box-shadow: 9px 0 13px -11px rgba(0, 0, 0, .95);
}

.student-journey-head small {
  display: block;
  margin-top: 2px;
  color: #536f86;
  font-size: 7px;
  font-weight: 500;
}

.student-journey-row {
  min-height: 52px;
  padding: 6px 10px;
  border-top: 1px solid rgba(156, 207, 222, .075);
}

.student-journey-row:nth-child(even) {
  background: rgba(255, 255, 255, .018);
}

.student-journey-identity {
  position: sticky;
  left: 0;
  z-index: 5;
  display: flex;
  align-self: stretch;
  align-items: center;
  min-width: 0;
  padding-right: 12px;
  background: #0a2744;
  box-shadow: 9px 0 13px -11px rgba(0, 0, 0, .95);
}

.student-journey-identity strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.student-journey-identity strong {
  color: #f2f8fc;
  font-size: 11px;
}

.journey-stage {
  min-width: 0;
  padding: 2px 9px;
  border-left: 1px solid rgba(156, 207, 222, .08);
}

.journey-stage > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.journey-stage strong {
  overflow: hidden;
  color: #6f899f;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-stage b {
  color: #7d97ac;
  font-size: 9px;
}

.journey-stage > p {
  height: 6px;
  margin: 6px 0 0;
  overflow: hidden;
  border-radius: 99px;
  background: #263f55;
}

.journey-stage > p i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #526c81;
}

.journey-stage.current strong,
.journey-stage.in-progress strong,
.journey-stage.current b,
.journey-stage.in-progress b {
  color: var(--cyan);
}

.journey-stage.current > p,
.journey-stage.in-progress > p {
  background: rgba(100, 201, 255, .13);
}

.journey-stage.current > p i,
.journey-stage.in-progress > p i {
  min-width: 8px;
  background: linear-gradient(90deg, #3faee9, var(--cyan));
  box-shadow: 0 0 9px rgba(100, 201, 255, .4);
}

.journey-stage.current {
  border-radius: 7px;
  background: rgba(100, 201, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(100, 201, 255, .08);
}

.journey-stage.complete strong,
.journey-stage.complete b,
.journey-stage.exam.passed strong,
.journey-stage.exam.passed b {
  color: var(--teal);
}

.journey-stage.complete > p,
.journey-stage.exam.passed > p {
  background: rgba(33, 212, 178, .13);
}

.journey-stage.complete > p i,
.journey-stage.exam.passed > p i {
  background: linear-gradient(90deg, #12a88f, var(--teal));
  box-shadow: 0 0 9px rgba(33, 212, 178, .36);
}

.journey-stage.exam.redo strong,
.journey-stage.exam.redo b {
  color: #8fa8bf;
}

.journey-stage.exam.redo > p i {
  min-width: 8px;
  background: #49647b;
  box-shadow: none;
}

.journey-stage.exam.waiting strong,
.journey-stage.exam.waiting b {
  color: var(--gold);
}

.journey-stage.exam.waiting > p i {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(244, 197, 87, .3);
}

@media (max-width: 700px) {
  .student-detail-tools b { display: none; }
  .student-journey-head,
  .student-journey-row { min-width: 940px; }
}

.matrix-legend,
.group-legend {
  display: flex;
  align-items: center;
  gap: 12px;
}

.matrix-legend span,
.group-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9bb1c3;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
}

.matrix-legend span::before,
.group-legend span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #314c64;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.matrix-legend .partial::before {
  background: conic-gradient(var(--cyan) 50%, #314c64 0);
}

.matrix-legend .complete::before,
.group-legend .subject-complete::before,
.group-legend .exam-passed::before {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(33, 212, 178, .35);
}

.matrix-legend .redo::before {
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 117, 109, .45);
}

.group-legend .incomplete::before {
  background: #49647b;
}

.group-legend .exam-not-passed::before {
  background: #49647b;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.action-matrix-scroll {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  overscroll-behavior-x: contain;
  scrollbar-color: rgba(100, 201, 255, .28) transparent;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.action-group-matrix {
  min-width: 1050px;
}

.action-matrix-header,
.action-matrix-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.8fr) repeat(var(--group-count, 17), minmax(48px, 1fr));
  align-items: center;
  gap: 5px;
}

.action-matrix-header {
  margin-bottom: 5px;
}

.action-matrix-row {
  min-height: 42px;
  padding: 5px 0;
  border-top: 1px solid rgba(129, 183, 206, .09);
}

.matrix-corner {
  position: sticky;
  left: 0;
  z-index: 6;
  display: flex;
  align-self: stretch;
  align-items: center;
  padding-right: 8px;
  color: #7893a9;
  background: #08243a;
  box-shadow: 8px 0 12px -10px rgba(0, 0, 0, .95);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.matrix-group-label {
  display: grid;
  place-items: center;
  width: 44px;
  height: 23px;
  margin: auto;
  border-radius: 7px;
  color: #bcd6e7;
  background: rgba(100, 201, 255, .09);
  font-size: 8px;
  font-weight: 800;
}

.matrix-action-label {
  position: sticky;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding-right: 8px;
  background: #08243a;
  box-shadow: 8px 0 12px -10px rgba(0, 0, 0, .95);
}

.matrix-action-label b {
  display: grid;
  place-items: center;
  height: 25px;
  border-radius: 7px;
  color: #052b30;
  background: var(--teal);
  font-size: 9px;
}

.matrix-action-label strong {
  overflow: hidden;
  color: #eaf5fb;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matrix-progress-cell {
  position: relative;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--progress), #2b465d 0);
}

.matrix-progress-cell.empty {
  padding: 0;
  color: inherit;
  text-align: initial;
}

.matrix-progress-cell i {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #102c48;
}

.matrix-progress-cell.partial {
  box-shadow: 0 0 8px rgba(100, 201, 255, .12);
}

.matrix-progress-cell.complete {
  background: var(--teal);
  box-shadow: 0 0 10px rgba(33, 212, 178, .32);
}

.matrix-progress-cell.complete i {
  background: #0b5e56;
}

.matrix-progress-cell > b {
  position: relative;
  z-index: 1;
  color: #dffff8;
  font-size: 12px;
}

.matrix-progress-cell > em {
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid #102c48;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 117, 109, .5);
}

.group-card.visual {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 12px;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 7px 8px;
}

.group-card.visual > .group-summary-ring {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  width: 42px;
  height: 42px;
  gap: 0;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--progress), #29465d 0);
}

.group-summary-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #102d49;
}

.group-summary-ring strong,
.group-summary-ring small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.group-summary-ring strong {
  color: #edf9ff;
  font-size: 9px;
  line-height: 1;
}

.group-summary-ring small {
  margin-top: 2px;
  color: #718ea6;
  font-size: 6px;
}

.group-card-center {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.group-assistant-name {
  overflow: hidden;
  color: #e9c762;
  font-size: 8px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group-card-center > .group-status-bars {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.group-status-bars > span {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.group-status-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.group-status-bars .incomplete i {
  background: #49647b;
}

.group-status-bars .subject-complete i,
.group-status-bars .exam-passed i {
  background: var(--teal);
  box-shadow: 0 0 7px rgba(33, 212, 178, .35);
}

.group-status-bars .exam-not-passed i {
  background: #49647b;
  box-shadow: none;
}

.group-open-icon {
  color: #63849b;
  font-size: 17px;
  font-style: normal;
  text-align: center;
}

@media (min-width: 1100px) {
  .activity-strip-title span,
  .activity-item time,
  .activity-item em { font-size: 9px; }
  .activity-item strong,
  .activity-item span,
  .activity-item b,
  .activity-empty { font-size: 10px; }
  .roadmap-card em small,
  .action-detail-head span,
  .action-detail-head em,
  .matrix-corner { font-size: 10px; }
  .matrix-group-label { font-size: 10px; }
  .matrix-action-label b,
  .matrix-action-label strong { font-size: 11px; }
  .student-journey-head > span,
  .student-journey-identity span,
  .journey-stage strong { font-size: 10px; }
  .student-journey-head small { font-size: 9px; }
  .journey-stage b { font-size: 11px; }
  .group-summary-ring small { font-size: 8px; }
}

.group-card.active .group-open-icon {
  color: var(--teal);
}

@media (max-width: 1200px) {
  .matrix-legend { gap: 8px; }
  .matrix-legend span { font-size: 8px; }
}

@media (max-width: 700px) {
  .matrix-legend { flex-wrap: wrap; }
  .group-legend { gap: 7px; }
  .group-legend span { font-size: 7px; }
}
.official-start-link {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 142px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 197, 87, .4);
  border-radius: 11px;
  color: #ffe08a;
  background: rgba(5, 22, 44, .66);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
}

.official-start-link span {
  color: #ffaaa4;
  font-size: 8px;
  font-weight: 600;
}

.official-start-link:hover,
.official-start-link:focus-visible {
  border-color: #f4c557;
  background: rgba(91, 42, 34, .72);
}

@media (max-width: 700px) {
  .official-start-link {
    position: static;
    display: inline-block;
    width: max-content;
    min-width: 0;
    margin: 9px 4px 0 0;
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .stage-overview { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .stage-overview { grid-template-columns: repeat(2, 1fr); }
}

.screen-login-dialog {
  width: min(calc(100% - 28px), 430px);
}

.screen-login-dialog h2 {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: .03em;
}

#screenLoginError {
  display: block;
  min-height: 18px;
  margin-top: 9px;
  color: #ffaaa4;
  font-size: 10px;
}

.screen-login-dialog button:disabled {
  cursor: wait;
  opacity: .65;
}
