@charset "UTF-8";
/**
 * Dark theme variables
 */
:root {
  --base-color: #DBDBDB;
  --border: dashed 1px rgba(219, 219, 219, 0.9);
  --selection-background: rgba(219, 219, 219, 0.99);
  --selection-text: #000;
  --background-color: #000;
  --text-color: var(--base-color);
  --placeholder-color: var(--base-color);
  --link-color: var(--base-color);
  --code-color-1: #aaaaaa;
  --code-color-2: #ffffcc;
  --code-color-3: #F00000;
  --code-color-4: #F0A0A0;
  --code-color-5: #b38aff;
  --code-color-6: #5ba711;
  --code-color-7: #e4e477;
  --code-color-8: #000080;
  --code-color-9: #05ca05;
  --code-color-10: #888888;
  --code-color-11: #555555;
  --code-color-12: #800080;
  --code-color-13: #00d4d4;
  --code-color-14: #00c1c1;
  --code-color-15: #ed9d13;
  --code-color-16: #1e90ff;
  --code-color-17: #800000;
  --code-color-18: #bbbbbb;
}

/* 1) Declarações @font-face */
@font-face {
  font-family: "gohu";
  src: url("../assets/gohu.woff");
  font-display: swap;
}
/**
 * Style variables
 */
/**
 * Global
 */
html {
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--background-color);
  margin: 0 auto;
  padding: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "gohu", monospace;
  font-size: 15px;
  color: var(--text-color);
  text-align: left;
  line-height: 1.32 !important;
}

body.has-desktop-windows {
  padding-bottom: 48px;
}

main {
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

main img {
  height: auto;
  vertical-align: middle;
}

a,
code {
  overflow-wrap: anywhere;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

center {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 15px;
  margin: 0px;
  margin-top: 22px;
  font-weight: bold;
  color: var(--text-color);
}

p,
ul,
ol {
  margin: 0px;
  color: var(--text-color);
}

a {
  text-decoration: underline;
  color: var(--link-color);
}

b {
  text-decoration: underline;
  color: rgb(132, 0, 255);
}

a:hover {
  color: var(--background-color);
  background-color: var(--base-color);
}

#titulo {
  display: inline-block;
  text-decoration: underline;
  color: var(--background-color);
  background-color: var(--base-color);
}

.comment {
  color: rgb(95, 93, 104);
}

#redtx {
  color: red;
}

#greentx {
  color: rgb(22, 187, 22);
}

#purpletx {
  text-decoration: none;
  color: rgb(129, 7, 129);
}

.papers-ansi-shelf {
  --ansi-frame: #71358e;
  --ansi-title: #dda0ff;
  --ansi-cat: #c9b7d2;
  --ansi-red: #d54c6b;
  --ansi-violet: #aa70e8;
  --ansi-pink: #d965d4;
  --ansi-cyan: #58bed0;
  --ansi-purple: #9b63d0;
  --ansi-wine: #b94e85;
  --ansi-magenta: #d65ac7;
  --ansi-blue: #4f9dcb;
  display: grid;
  width: 100%;
  min-width: 0;
  margin: 14px auto 8px;
  place-items: center;
  overflow: hidden;
  color: var(--text-color);
  background: #000;
}

.papers-ansi-shelf__canvas {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  color: var(--text-color);
  background: #000;
  white-space: pre;
  text-align: left;
  font-family: "gohu", "Cascadia Mono", Consolas, "Lucida Console", monospace !important;
  font-size: clamp(8px, 1.2vw, 13px);
  font-weight: normal;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
  letter-spacing: 0;
  line-height: 1.05 !important;
  text-rendering: geometricPrecision;
  user-select: none;
  pointer-events: none;
}

.ansi-frame {
  color: var(--ansi-frame);
}

.ansi-title {
  color: var(--ansi-title);
  text-shadow: 0 0 5px rgba(213, 118, 255, 0.42);
}

.ansi-cat {
  color: var(--ansi-cat);
}

.ansi-sleep {
  color: #59d66b;
}

.ansi-red {
  color: var(--ansi-red);
}

.ansi-violet {
  color: var(--ansi-violet);
}

.ansi-pink {
  color: var(--ansi-pink);
}

.ansi-cyan {
  color: var(--ansi-cyan);
}

.ansi-purple {
  color: var(--ansi-purple);
}

.ansi-wine {
  color: var(--ansi-wine);
}

.ansi-magenta {
  color: var(--ansi-magenta);
}

.ansi-blue {
  color: var(--ansi-blue);
}

.ansi-terminal,
.ansi-command {
  color: #afa8b5;
}

.ansi-prompt,
.ansi-cursor {
  color: #4be35f;
}

.ansi-sleep--one {
  animation: ansi-sleep-one 2.8s steps(1, end) infinite;
}

.ansi-sleep--two {
  animation: ansi-sleep-two 2.8s steps(1, end) infinite;
}

.ansi-cursor {
  animation: ansi-cursor-blink 1.1s steps(1, end) infinite;
}

@keyframes ansi-sleep-one {
  0%, 22% {
    opacity: 0;
  }
  23%, 100% {
    opacity: 1;
  }
}
@keyframes ansi-sleep-two {
  0%, 48% {
    opacity: 0;
  }
  49%, 100% {
    opacity: 1;
  }
}
@keyframes ansi-cursor-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.not-found-window {
  width: min(680px, 100%);
  min-height: clamp(330px, 46vh, 440px);
  box-sizing: border-box;
  margin: clamp(30px, 7vh, 72px) auto 38px;
  border: 1px solid #5a5a5a;
  color: var(--text-color);
  background: #000;
}

.not-found-window__bar {
  display: flex;
  min-height: 30px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 8px;
  border-bottom: 1px solid #74358e;
  color: #d58cff;
  background: #100713;
  line-height: 1;
}

.not-found-window__bar > span:last-child {
  color: #ddd;
  white-space: nowrap;
}

.not-found-window__body {
  padding: clamp(16px, 4vw, 28px);
}

.not-found-window__command,
.not-found-window__prompt,
.not-found-window__message p {
  margin: 0;
}

.not-found-window__command {
  color: #afa8b5;
}

.not-found-window__command span,
.not-found-window__status span,
.not-found-window__prompt span:first-child {
  color: #4be35f;
}

.not-found-window pre.not-found-window__art {
  width: max-content;
  max-width: 100%;
  margin: clamp(22px, 5vh, 38px) auto;
  overflow: visible;
  color: #b15de0;
  background: transparent;
  white-space: pre;
  font-family: "gohu", "Cascadia Mono", Consolas, "Lucida Console", monospace !important;
  font-size: clamp(11px, 2vw, 17px);
  font-weight: normal;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
  letter-spacing: 0;
  line-height: 1 !important;
  text-align: left;
  text-rendering: geometricPrecision;
  user-select: none;
}

.not-found-window__art-row--1 {
  color: #e1a4ff;
}

.not-found-window__art-row--2 {
  color: #cd7cf4;
}

.not-found-window__art-row--3 {
  color: #b95cde;
}

.not-found-window__art-row--4 {
  color: #9b3cbd;
}

.not-found-window__art-row--5 {
  color: #79278f;
}

.not-found-window__art-row--6 {
  color: #571866;
}

.not-found-window__message {
  max-width: 610px;
}

.not-found-window__message h1 {
  display: inline-block;
  margin: 0 0 12px;
  color: #000;
  background: #ddd;
  font-size: 15px;
  text-decoration: underline;
}

.not-found-window__message p {
  line-height: 1.35;
  white-space: normal;
}

.not-found-window__status {
  margin-top: 13px !important;
  color: #afa8b5;
}

.not-found-window__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
}

.not-found-window__links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: #d58cff;
  text-decoration: none;
}

.not-found-window__links a::before {
  margin-right: 7px;
  color: #4be35f;
  content: ">";
}

.not-found-window__links a:hover,
.not-found-window__links a:focus-visible {
  color: #000;
  background: #d58cff;
}

.not-found-window__prompt {
  margin-top: 12px;
  color: #afa8b5;
}

.not-found-window__cursor {
  color: #4be35f;
  animation: ansi-cursor-blink 1.1s steps(1, end) infinite;
}

.error-page .browser-fix {
  display: none;
}

.error-page .footer {
  margin-top: 28px;
}

#musica {
  text-decoration: none;
}

#ddw {
  text-decoration: none;
}

#ddw:hover {
  text-decoration: none;
  color: white;
  background-color: #000000;
}

.browser-fix {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#contacts {
  text-decoration: none;
  display: block;
  text-align: right;
}

/**
 * Layout
 */
.container {
  width: calc(100% - 32px);
  max-width: 984px;
  min-width: 0;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

p {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 15px;
}

footer {
  color: var(--text-color);
  border-top: var(--border);
  margin: 20px auto 15px;
  padding-top: 10px;
  text-align: right;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

header {
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
  padding-top: 72px;
}

header p {
  text-align: left;
  margin: 0;
}

footer {
  margin-bottom: 20px;
}

/**
 * Highlight/Markup
 */
::selection {
  background: var(--selection-background);
  color: var(--selection-text);
}

::-moz-selection {
  background: var(--selection-background);
  color: var(--selection-text);
}

/**
 * Lists
 */
:not(.menu) > ul {
  list-style: none;
  padding-left: 0;
}

:not(.menu) > ul {
  list-style-type: none;
}

:not(.menu) > ul > li:before {
  content: "-";
  margin-right: 9px;
}

/**
 * Header/Navigation
 */
.menu {
  border-top: var(--border);
  border-bottom: var(--border);
  margin-bottom: 25px;
}

.menu ul {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 0px;
  list-style-type: none;
  text-align: right;
}

.menu ul li {
  display: inline;
  margin-left: 10px;
}

.menu ul li a {
  text-decoration: none;
  color: var(--text-color);
}

.menu ul li a:hover {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--base-color);
}

.ansi-banner {
  position: absolute;
  top: 8px;
  right: -1px;
  margin: 0;
  padding: 0;
  overflow: visible;
  white-space: pre;
  font-size: 9px;
  line-height: 1 !important;
  letter-spacing: 0;
  color: #a936f2;
  background: transparent;
  font-variant-ligatures: none;
  text-shadow: 1px 1px 0 #170020;
  user-select: none;
}

.ansi-banner__row {
  text-decoration: none;
}

.ansi-banner__row--1 {
  color: #e8b7ff;
}

.ansi-banner__row--2 {
  color: #cb72ff;
}

.ansi-banner__row--3 {
  color: #aa3cf2;
}

.ansi-banner__row--4 {
  color: #8725ce;
}

.ansi-banner__row--5 {
  color: #66149d;
}

.ansi-banner__row--6 {
  color: #380755;
}

.header-mascot {
  position: absolute;
  top: 1px;
  left: -12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 108px;
  height: 72px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  user-select: none;
}

.header-mascot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.header-mascot img[data-mascot=green-parrot],
.header-mascot img[data-mascot=gray-parrot],
.header-mascot img[data-mascot=dancing-banana],
.header-mascot img[data-mascot=steamhappy],
.header-mascot img[data-mascot=minecraft-creature],
.header-mascot img[data-mascot=cats-morphing],
.header-mascot img[data-mascot=cute-white-cat] {
  image-rendering: pixelated;
}

@media only screen and (max-width: 700px) {
  header {
    padding-top: 62px;
  }
  .header-mascot {
    top: 2px;
    left: 0;
    width: 88px;
    height: 62px;
  }
  .ansi-banner {
    display: block;
    top: 8px;
    right: 0;
    font-size: 7px;
  }
}
.post-list {
  margin: 8px 0 12px;
}

.post-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  padding: 6px 4px;
}

.post-project-heading {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 7px;
  margin: 0 0 16px;
}

.post-project-heading > #titulo {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-github-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  overflow: hidden;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
}

.post-project-heading .project-github-link {
  margin-left: 0;
}

.project-github-link img {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.project-github-link:hover,
.project-github-link:focus-visible {
  background: transparent;
}

.project-github-link:hover img,
.project-github-link:focus-visible img {
  filter: brightness(1.35);
}

.home-status {
  margin: 0;
  border: 0;
  padding: 14px 16px 16px;
  line-height: 1.35 !important;
  white-space: pre-wrap;
}

.status-window {
  box-sizing: border-box;
  margin: 28px 0 8px;
  border: 1px solid #5a5a5a;
  background: var(--background-color);
  box-shadow: none;
}

.status-window.is-focused {
  border-color: #74358e;
}

.status-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  box-sizing: border-box;
  padding: 4px 6px;
  border-bottom: 1px solid #74358e;
  color: #ddd;
  background: #100713;
  line-height: 1;
  cursor: move;
  touch-action: none;
  user-select: none;
}

.status-window__bar > span:first-child {
  color: #d58cff;
}

.status-window.is-dragging .status-window__bar {
  cursor: grabbing;
}

.status-window__bar span:last-child {
  white-space: nowrap;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.window-control {
  appearance: none;
  display: grid;
  place-items: center;
  width: 24px;
  height: 20px;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.window-control > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 17px;
  box-sizing: border-box;
  border: 1px solid #696969;
  color: #ddd;
  background: #000;
  line-height: 1;
}

.window-control:hover > span {
  border-color: #c067e6;
  color: #000;
  background: #c067e6;
}

.window-control:focus-visible,
.desktop-taskbar__button:focus-visible {
  outline: 1px dotted currentColor;
  outline-offset: -3px;
}

.papers-window__command {
  padding: 8px 10px;
  border-bottom: 1px dashed #555;
  background: #050505;
}

.papers-window__content {
  padding: 12px;
}

.papers-window__empty {
  color: var(--placeholder-color);
}

.paper-idea-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-idea-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 4px;
  margin-bottom: 10px;
}

.papers-window__content .paper-idea-list > li::before {
  display: none;
  content: none !important;
  margin: 0;
}

.paper-idea-list li:last-child {
  margin-bottom: 0;
}

.paper-idea-list__status {
  color: var(--code-color-9);
}

.paper-idea-list li > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.paper-idea-list strong {
  display: block;
  line-height: 1.25;
  white-space: normal;
}

.paper-idea-list small {
  display: block;
  margin-top: 3px;
  color: var(--placeholder-color);
  font-size: 12px;
  line-height: 1.25;
}

.wow-roster-command {
  padding: 8px 10px;
  border-bottom: 1px dashed #555;
  background: #050505;
}

.wow-character-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px dashed #555;
}

.wow-character-card:last-child {
  border-bottom: 0;
}

.wow-character-card--horde {
  border-left: 2px solid #9f1224;
}

.wow-character-card--alliance {
  border-left: 2px solid #1769aa;
}

.wow-character-card__portrait {
  position: relative;
  width: 84px;
  height: 84px;
  border: var(--border);
  overflow: hidden;
  background: #080808;
}

.wow-character-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: 0;
}

.wow-character-card__portrait span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 2px 4px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
}

.wow-character-card--horde .wow-character-card__portrait span {
  background: rgba(150, 0, 20, 0.88);
}

.wow-character-card--alliance .wow-character-card__portrait span {
  background: rgba(0, 76, 150, 0.9);
}

.wow-character-card__details {
  display: grid;
  gap: 3px;
}

.wow-character-card__details > span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.wow-character-card__details .wow-character-card__last-seen {
  font-size: 13px;
}

.wow-character-card__name {
  font-size: 16px;
}

.wow-character-card--horde .wow-character-card__name {
  color: #ff7d0a;
}

.wow-character-card--alliance .wow-character-card__name {
  color: #69ccf0;
}

.spotify-command {
  padding: 8px 10px;
  border-bottom: 1px dashed #555;
  background: #050505;
}

.spotify-player {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
}

.spotify-player__cover {
  width: 64px;
  height: 64px;
  box-sizing: border-box;
  border: var(--border);
  background: var(--background-color) url("/assets/images/icons/spotify.svg") center/32px no-repeat;
}

.spotify-player__cover img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
}

.spotify-player__cover img[hidden] {
  display: none;
}

.spotify-player__details {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.spotify-player__details > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.spotify-player__state {
  color: var(--placeholder-color);
  font-size: 12px;
}

.spotify-player__state.is-playing {
  color: #1ed760;
}

.spotify-player__details strong {
  font-size: 16px;
}

.spotify-player__details [data-spotify-artist],
.spotify-player__details [data-spotify-album] {
  font-size: 13px;
}

.spotify-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 12px;
  font-size: 11px;
}

.spotify-progress[hidden] {
  display: none;
}

.spotify-progress__track {
  flex: 1 1 auto;
  height: 7px;
  border: var(--border);
}

.spotify-progress__track > span {
  display: block;
  width: 0;
  height: 100%;
  background: #1ed760;
}

.desktop-taskbar {
  position: fixed;
  left: 8px;
  bottom: 0;
  z-index: 1000;
  display: flex;
  gap: 4px;
  width: 440px;
  max-width: calc(100% - 16px);
  height: 38px;
  box-sizing: border-box;
  padding: 4px;
  border: 1px solid #555;
  border-bottom: 0;
  background: #050505;
}

.desktop-taskbar--papers {
  width: 220px;
}

.desktop-taskbar__button {
  flex: 1 1 0;
  min-width: 0;
  height: 29px;
  overflow: hidden;
  border: 1px solid #555;
  padding: 3px 8px;
  color: #ccc;
  background: #000;
  font: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.desktop-taskbar__button::before {
  content: "[ ] ";
}

.desktop-taskbar__button.is-active {
  border-color: #9851b8;
  color: #f1dcff;
  background: #28102f;
}

.desktop-taskbar__button.is-active::before {
  content: "[*] ";
}

@media only screen and (min-width: 1760px) {
  .container {
    position: relative;
  }
  .status-window {
    position: absolute;
    top: 68px;
    right: calc(100% + 28px);
    width: min(350px, (100vw - 100%) / 2 - 36px);
    margin: 0;
    z-index: 2;
  }
  .wow-status-window {
    top: 210px;
    right: auto;
    left: calc(100% + 28px);
    width: min(370px, (100vw - 100%) / 2 - 36px);
  }
  .spotify-window {
    top: 286px;
  }
  .papers-ideas-window {
    top: 68px;
    right: calc(100% + 28px);
    width: min(420px, (100vw - 100%) / 2 - 36px);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1759px) {
  html.desktop-windows-ready .status-window[data-desktop-window] {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 46px;
    left: 8px;
    z-index: 900;
    width: 350px;
    max-width: calc(100vw - 16px);
    max-height: calc(100vh - 62px);
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  html.desktop-windows-ready .wow-status-window[data-desktop-window] {
    width: 370px;
  }
  html.desktop-windows-ready .papers-ideas-window[data-desktop-window] {
    width: 420px;
  }
}
.prompt {
  color: var(--code-color-9);
}

.music-list {
  margin-top: 9px;
}

.music-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px;
  line-height: 1.15;
}

.music-row > span:last-child {
  flex: 0 0 auto;
}

.music-row a[href*="open.spotify.com"],
.music-row a[href*="youtube.com/watch"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  overflow: hidden;
  vertical-align: middle;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.music-row a[href*="open.spotify.com"] {
  background-image: url("/assets/images/icons/spotify.svg");
}

.music-row a[href*="youtube.com/watch"] {
  background-image: url("/assets/images/icons/youtube.svg");
}

.music-row a[href*="open.spotify.com"]:hover,
.music-row a[href*="youtube.com/watch"]:hover {
  background-color: transparent;
  filter: brightness(1.25);
}

@media only screen and (max-width: 600px) {
  .post-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .music-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
  .music-row > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
/**
 * Form
 */
input,
select,
textarea {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border: none;
}

input[type=text],
select,
textarea {
  width: 100%;
  resize: none;
  background-color: var(--background-color);
  color: var(--text-color);
  caret-color: var(--text-color);
  font-size: 15px;
  font-family: "gohu", monospace;
  line-height: 1.32;
}

input,
select,
textarea,
textarea::-webkit-input-placeholder {
  text-indent: 0px;
}

::placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--placeholder-color);
}

::-ms-input-placeholder {
  color: var(--placeholder-color);
}

input[type=submit] {
  font-size: 15px;
  font-family: "gohu", monospace;
  line-height: 1.32;
  cursor: pointer;
  color: var(--link-color);
  background-color: var(--background-color);
}

input[type=submit]:hover {
  color: var(--background-color);
  background-color: var(--base-color);
}

*:focus {
  outline: none;
}

textarea {
  vertical-align: top;
}

*:focus-visible {
  outline: 1px dotted currentColor;
  outline-offset: 3px;
}

/**
 * Code and syntax highlighting
 */
.lineno {
  color: var(--code-color-1);
  margin-right: 15px;
}

figure.highlight {
  margin: 5px 0;
}

pre {
  background-color: var(--background-color);
  border: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7 !important;
  font-family: "gohu", monospace !important;
}

.container {
  gap: 0;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
}

.buttons img {
  display: block;
  flex: 0 0 auto;
}

.highlight .hll {
  background-color: var(--code-color-2);
}

.highlight .c {
  color: var(--code-color-1);
  font-style: italic;
} /* Comment */
.highlight .err {
  color: var(--code-color-3);
  background-color: var(--code-color-4);
} /* Error */
.highlight .k {
  color: var(--code-color-5);
} /* Keyword */
.highlight .cm {
  color: var(--code-color-1);
  font-style: italic;
} /* Comment.Multiline */
.highlight .cp {
  color: var(--code-color-6);
} /* Comment.Preproc */
.highlight .c1 {
  color: var(--code-color-1);
  font-style: italic;
} /* Comment.Single */
.highlight .cs {
  color: var(--code-color-5);
  font-style: italic;
} /* Comment.Special */
.highlight .gd {
  color: var(--code-color-7);
} /* Generic.Deleted */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: var(--code-color-7);
} /* Generic.Error */
.highlight .gh {
  color: var(--code-color-8);
  font-weight: bold;
} /* Generic.Heading */
.highlight .gi {
  color: var(--code-color-9);
} /* Generic.Inserted */
.highlight .go {
  color: var(--code-color-10);
} /* Generic.Output */
.highlight .gp {
  color: var(--code-color-11);
} /* Generic.Prompt */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .gu {
  color: var(--code-color-12);
  font-weight: bold;
} /* Generic.Subheading */
.highlight .gt {
  color: var(--code-color-7);
} /* Generic.Traceback */
.highlight .kc {
  color: var(--code-color-5);
} /* Keyword.Constant */
.highlight .kd {
  color: var(--code-color-5);
} /* Keyword.Declaration */
.highlight .kn {
  color: var(--code-color-5);
} /* Keyword.Namespace */
.highlight .kp {
  color: var(--code-color-5);
} /* Keyword.Pseudo */
.highlight .kr {
  color: var(--code-color-5);
} /* Keyword.Reserved */
.highlight .kt {
  color: var(--code-color-13);
} /* Keyword.Type */
.highlight .m {
  color: var(--code-color-14);
} /* Literal.Number */
.highlight .s {
  color: var(--code-color-15);
} /* Literal.String */
.highlight .na {
  color: var(--code-color-16);
} /* Name.Attribute */
.highlight .nb {
  color: var(--code-color-13);
} /* Name.Builtin */
.highlight .nc {
  color: var(--code-color-9);
  text-decoration: underline;
} /* Name.Class */
.highlight .no {
  color: var(--code-color-7);
} /* Name.Constant */
.highlight .nd {
  color: var(--code-color-10);
} /* Name.Decorator */
.highlight .ni {
  color: var(--code-color-17);
  font-weight: bold;
} /* Name.Entity */
.highlight .nf {
  color: var(--code-color-9);
} /* Name.Function */
.highlight .nn {
  color: var(--code-color-13);
  text-decoration: underline;
} /* Name.Namespace */
.highlight .nt {
  color: var(--code-color-16);
  font-weight: bold;
} /* Name.Tag */
.highlight .nv {
  color: var(--code-color-7);
} /* Name.Variable */
.highlight .ow {
  color: var(--code-color-5);
} /* Operator.Word */
.highlight .w {
  color: var(--code-color-18);
} /* Text.Whitespace */
.highlight .mf {
  color: var(--code-color-14);
} /* Literal.Number.Float */
.highlight .mh {
  color: var(--code-color-14);
} /* Literal.Number.Hex */
.highlight .mi {
  color: var(--code-color-14);
} /* Literal.Number.Integer */
.highlight .mo {
  color: var(--code-color-14);
} /* Literal.Number.Oct */
.highlight .sb {
  color: var(--code-color-15);
} /* Literal.String.Backtick */
.highlight .sc {
  color: var(--code-color-15);
} /* Literal.String.Char */
.highlight .sd {
  color: var(--code-color-15);
} /* Literal.String.Doc */
.highlight .s2 {
  color: var(--code-color-15);
} /* Literal.String.Double */
.highlight .se {
  color: var(--code-color-15);
} /* Literal.String.Escape */
.highlight .sh {
  color: var(--code-color-15);
} /* Literal.String.Heredoc */
.highlight .si {
  color: var(--code-color-15);
} /* Literal.String.Interpol */
.highlight .sx {
  color: var(--code-color-15);
} /* Literal.String.Other */
.highlight .sr {
  color: var(--code-color-14);
} /* Literal.String.Regex */
.highlight .s1 {
  color: var(--code-color-15);
} /* Literal.String.Single */
.highlight .ss {
  color: var(--code-color-5);
} /* Literal.String.Symbol */
.highlight .bp {
  color: var(--code-color-13);
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: var(--code-color-7);
} /* Name.Variable.Class */
.highlight .vg {
  color: var(--code-color-7);
} /* Name.Variable.Global */
.highlight .vi {
  color: var(--code-color-7);
} /* Name.Variable.Instance */
.highlight .il {
  color: var(--code-color-14);
} /* Literal.Number.Integer.Long */
/**
 * Responsive/mobile
 *
 * The desktop version keeps its loose, movable window layout. On compact
 * screens the same windows become touch-friendly panels above the taskbar.
 */
@media only screen and (max-width: 1024px) {
  .container {
    padding-right: env(safe-area-inset-right);
    padding-left: env(safe-area-inset-left);
  }
  body.has-desktop-windows {
    padding-bottom: 62px;
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }
  .status-window[data-desktop-window] {
    position: fixed !important;
    top: auto !important;
    right: auto !important;
    bottom: 58px !important;
    bottom: calc(58px + env(safe-area-inset-bottom)) !important;
    left: 50% !important;
    z-index: 900;
    width: calc(100vw - 16px) !important;
    max-width: 430px;
    max-height: min(68vh, 520px);
    max-height: min(68dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom), 520px);
    margin: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-50%) !important;
    -webkit-overflow-scrolling: touch;
  }
  .status-window__bar {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 44px;
    box-sizing: border-box;
    padding: 0 4px 0 10px;
    cursor: default;
    touch-action: pan-y;
  }
  .status-window.is-dragging .status-window__bar {
    cursor: default;
  }
  .window-controls {
    gap: 2px;
  }
  .window-control {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    touch-action: manipulation;
  }
  .desktop-taskbar {
    right: 8px;
    right: max(8px, env(safe-area-inset-right));
    bottom: 0;
    bottom: env(safe-area-inset-bottom);
    left: 8px;
    left: max(8px, env(safe-area-inset-left));
    width: auto;
    max-width: none;
    padding: 4px;
    gap: 4px;
  }
  .desktop-taskbar--papers {
    width: auto;
  }
  .desktop-taskbar__button {
    height: 44px;
    padding: 4px 7px;
    touch-action: manipulation;
  }
  html:not(.desktop-windows-ready) body.has-desktop-windows {
    padding-bottom: 0;
  }
  html:not(.desktop-windows-ready) .status-window[data-desktop-window] {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100%;
    max-height: none;
    margin: 28px 0 8px !important;
    overflow: visible;
    transform: none !important;
  }
  html:not(.desktop-windows-ready) .status-window__bar {
    position: static;
  }
  html:not(.desktop-windows-ready) .window-controls {
    display: none;
  }
  html:not(.desktop-windows-ready) .desktop-taskbar {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .container {
    width: calc(100% - 20px);
    max-width: none;
  }
  header {
    margin-top: max(12px, env(safe-area-inset-top));
    padding-top: 62px;
  }
  .menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 10px;
  }
  .menu ul li {
    display: block;
    margin-left: 0;
  }
  .menu ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    touch-action: manipulation;
  }
  main li,
  main a,
  #titulo {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  pre:not(.ansi-banner) {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45 !important;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .papers-ansi-shelf pre.papers-ansi-shelf__canvas {
    font-size: clamp(6.8px, 2.05vw, 8.5px);
    line-height: 1.05 !important;
    overflow: visible;
  }
  .not-found-window {
    min-height: 0;
    margin: 24px auto 30px;
  }
  .not-found-window__body {
    padding: 16px 14px 18px;
  }
  .not-found-window pre.not-found-window__art {
    margin: 24px auto;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1 !important;
  }
  .not-found-window__links {
    gap: 4px 12px;
    margin-top: 18px;
  }
  .not-found-window__links a {
    min-height: 44px;
  }
  figure.highlight,
  .highlighter-rouge,
  .highlight {
    min-width: 0;
    max-width: 100%;
  }
  blockquote {
    margin-right: 0;
    margin-left: 12px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    text-align: left;
  }
  .footer .contacts,
  .footer .links {
    width: 100%;
    overflow-wrap: anywhere;
  }
  .browser-fix {
    width: 100%;
  }
  .buttons {
    justify-content: center;
    gap: 3px;
  }
  .post-row {
    padding: 7px 0;
  }
  .music-row a[href*="open.spotify.com"],
  .music-row a[href*="youtube.com/watch"] {
    width: 44px;
    height: 44px;
    margin-left: 0;
    background-size: 18px;
    touch-action: manipulation;
  }
}
@media only screen and (max-width: 480px) {
  .paper-idea-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .home-status {
    padding: 12px;
    font-size: 13px;
  }
  .wow-character-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .wow-character-card__portrait {
    width: 76px;
    height: 76px;
  }
  .wow-character-card__details > span {
    font-size: 13px;
  }
  .wow-character-card__details .wow-character-card__last-seen {
    font-size: 13px;
  }
  .wow-character-card__name {
    font-size: 16px;
  }
  .spotify-player {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .spotify-player__cover {
    width: 64px;
    height: 64px;
  }
  .desktop-taskbar__button::before {
    content: "";
  }
  .desktop-taskbar__button.is-active::before {
    content: "";
  }
  .desktop-taskbar__button {
    padding: 3px 2px;
    font-size: 12.5px;
    text-align: center;
  }
}
@media only screen and (max-width: 380px) {
  .ansi-banner {
    top: 10px;
    font-size: 6.2px;
  }
  .header-mascot {
    width: 80px;
    height: 58px;
  }
  .desktop-taskbar__button {
    padding: 4px 5px;
    font-size: 13px;
  }
}
@media (hover: none) and (pointer: coarse) {
  a:hover {
    color: var(--link-color);
    background-color: transparent;
  }
  a:active {
    color: var(--background-color);
    background-color: var(--base-color);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ansi-sleep--one,
  .ansi-sleep--two,
  .ansi-cursor,
  .not-found-window__cursor {
    animation: none !important;
    opacity: 1;
  }
}

/*# sourceMappingURL=main-dark.css.map */