@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #101010;
  color: #a8a8a8;
  font-family: "Consolas", "Cascadia Mono", ui-monospace, "Courier New", monospace;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: none;
}

#app {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 2vw, 28px);
}

.dos {
  width: 100%;
  max-width: min(1230px, 117.3333333333vh);
  aspect-ratio: 4/3;
  background: #0000a8;
  color: #a8a8a8;
  border: 2px solid #000000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.dos__window {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 0;
  margin: 10px;
  border: 4px double #54fcfc;
  display: flex;
  flex-direction: column;
}

.dos__title {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 24px);
  padding: 0 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #0000a8;
  color: #fcfc54;
  letter-spacing: 0.05em;
}

.dos__content {
  flex: 1;
  min-height: 0;
  padding: clamp(14px, 3vw, 30px);
  overflow: auto;
}

h1 {
  margin: 4px 0 2px;
  color: #fcfcfc;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

p {
  margin: 4px 0;
  overflow-wrap: break-word;
}

.lead {
  color: #fcfcfc;
}

.role {
  margin: 0 0 4px;
  color: #54fcfc;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 0.6ch;
  margin: 22px 0 6px;
  color: #fcfc54;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.section-head::before {
  content: "";
  flex: 0 0 1.6em;
  border-top: 1px solid #00a8a8;
}
.section-head::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid #00a8a8;
}

.stack {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2px 14px;
  margin: 6px 0;
}
.stack dt {
  color: #54fcfc;
}
.stack dd {
  margin: 0;
  color: #a8a8a8;
  overflow-wrap: break-word;
}
.stack a {
  color: #54fcfc;
  text-decoration: underline;
}
.stack a:hover {
  background: #54fcfc;
  color: #0000a8;
  text-decoration: none;
}

.note {
  margin-top: 18px;
  color: #00a8a8;
}

.proj-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.proj-row {
  display: block;
  padding: 8px;
  color: #fcfcfc;
  text-decoration: none;
}
.proj-row:hover, .proj-row:focus-visible {
  background: #00a8a8;
  color: #000000;
  outline: none;
}
.proj-row .nm {
  font-weight: 700;
}
.proj-row .nm::before {
  content: "■ ";
  color: #fcfc54;
}
.proj-row:hover .nm::before, .proj-row:focus-visible .nm::before {
  color: #000000;
}
.proj-row .sub {
  padding-left: 16px;
  color: #54fcfc;
  font-size: 0.92em;
}
.proj-row:hover .sub, .proj-row:focus-visible .sub {
  color: #0000a8;
}

.proj__stack {
  margin: 2px 0;
  color: #00a8a8;
  font-size: 0.92em;
}

.exp-list {
  margin-top: 12px;
}

.exp {
  margin: 0;
  padding: 18px 0;
}
.exp + .exp {
  border-top: 1px solid #00a8a8;
}

.exp__role {
  margin: 0;
  color: #54fcfc;
}

.exp__co {
  color: #fcfcfc;
}

.exp__period {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.92em;
}

.exp__desc {
  margin: 2px 0 0;
  color: #fcfcfc;
}

.exp__tech {
  margin: 2px 0 0;
  color: #00a8a8;
  font-size: 0.92em;
}

.links {
  list-style: none;
  margin: 6px 0;
  padding: 0;
}
.links li {
  margin: 3px 0;
  overflow-wrap: break-word;
}
.links li::before {
  content: "► ";
  color: #00a8a8;
}
.links a {
  color: #54fcfc;
  text-decoration: none;
}
.links a:hover, .links a:focus-visible {
  background: #54fcfc;
  color: #0000a8;
  outline: none;
}

.back {
  display: inline-block;
  margin-bottom: 10px;
  color: #fcfc54;
  text-decoration: none;
}
.back::before {
  content: "◄";
  margin-right: 0.5ch;
}
.back:hover, .back:focus-visible {
  background: #fcfc54;
  color: #0000a8;
  outline: none;
}

.menubar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 2px 6px;
  background: #a8a8a8;
  color: #000000;
}

.menubar__item {
  padding: 3px 10px;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.menubar__item:hover {
  background: rgba(0, 0, 0, 0.14);
}
.menubar__item.active {
  background: #000000;
  color: #a8a8a8;
}
.menubar__item:focus-visible {
  outline: 2px solid #0000a8;
  outline-offset: -2px;
}

.menubar__key {
  color: #a80000;
}

.menubar__item.active .menubar__key {
  color: #fcfc54;
}

.lang {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: auto;
}

.lang__opt {
  font: inherit;
  border: 0;
  background: none;
  color: #000000;
  padding: 3px 8px;
  cursor: pointer;
}
.lang__opt:hover {
  background: rgba(0, 0, 0, 0.14);
}
.lang__opt.active {
  background: #000000;
  color: #fcfc54;
}
.lang__opt:focus-visible {
  outline: 2px solid #0000a8;
  outline-offset: -2px;
}

.fkeys {
  display: flex;
  flex-wrap: wrap;
  background: #0000a8;
}

.fkey {
  display: flex;
  align-items: baseline;
  padding: 4px 10px 5px;
  white-space: nowrap;
  text-decoration: none;
}
.fkey:focus-visible {
  outline: 2px solid #fcfcfc;
  outline-offset: -2px;
}

.fkey__n {
  color: #fcfcfc;
}

.fkey__l {
  margin-left: 2px;
  padding: 0 6px;
  background: #00a8a8;
  color: #000000;
}

.fkey:hover .fkey__l {
  background: #54fcfc;
}

.fkey.active .fkey__l {
  background: #fcfc54;
}

@media (max-width: 560px) {
  #app {
    padding: 0;
    align-items: stretch;
  }
  .dos {
    max-width: none;
    aspect-ratio: auto;
    height: auto;
    min-height: 100dvh;
    border: 0;
  }
  .dos__window {
    margin: 8px;
  }
  .dos__content {
    overflow: visible;
  }
  .menubar {
    justify-content: center;
  }
  .menubar__item {
    padding: 6px 12px;
  }
  .fkeys {
    justify-content: space-around;
  }
  .fkey {
    padding: 8px 8px;
  }
  .stack {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stack dt {
    margin-top: 8px;
  }
}
.loading-progress {
  position: absolute;
  display: block;
  width: 8rem;
  height: 8rem;
  inset: 20vh 0 auto 0;
  margin: 0 auto 0 auto;
}
.loading-progress circle {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 0.6rem;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}
.loading-progress circle:last-child {
  stroke: #54fcfc;
  stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
  transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
  position: absolute;
  text-align: center;
  font-weight: bold;
  inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}
.loading-progress-text:after {
  content: var(--blazor-load-percentage-text, "Loading");
}

/*# sourceMappingURL=app.css.map */
