/* ==============================
   OTASING - CSS INICIAL
   ============================== */
   
   
:root {
  --otasing-blue: #1f6b97;
  --otasing-orange: #f28c28;
  --otasing-cream: #fff4df;
  --otasing-dark: #17344a;
  --otasing-light: #fffaf2;
}

.box h2 {
  color: var(--otasing-blue);
}

.progress {
  width: 55%;
  height: 100%;

  background: var(--otasing-orange);
}

/* ==============================
   TELA DE BOAS-VINDAS / CRT
   ============================== */
   
  .typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: cursor-blink 0.8s steps(1) infinite;
}

@keyframes cursor-blink {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}
.box.welcome-box {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    #17628f,
    #103f68
  );

  color: white;

  border: 4px solid var(--otasing-dark);

  box-shadow:
    inset 0 0 25px rgba(55, 190, 255, 0.35),
    4px 4px 0 #777;

  min-height: 150px;

  text-shadow:
    0 0 3px rgba(255,255,255,0.8),
    0 0 7px rgba(70,190,255,0.7);
}

.box.welcome-box h1 {
  color: white;
}


/* Linhas do monitor */

.box.welcome-box::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.10) 3px,
    rgba(0, 0, 0, 0.10) 4px
  );
}

/* PÁGINA */

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 30px;

  background-color: #6f8f99;
  background-image:
    linear-gradient(
      rgba(31, 107, 151, 0.16),
rgba(23, 52, 74, 0.16)
    ),
    url("ceu.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

  font-family: Arial, sans-serif;
  color: var(--otasing-dark);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  pointer-events: none;
  z-index: -1;

  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      rgba(0, 0, 0, 0.025) 1px,
      rgba(0, 0, 0, 0.025) 2px
    );
}

/* ==============================
   LAYOUT PRINCIPAL
   ============================== */

.site-wrapper {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    220px
    minmax(400px, 1fr)
    240px;

  gap: 18px;

  align-items: start;
}


/* ==============================
   COLUNAS
   ============================== */

.left-column,
.main-column,
.right-column {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.right-column .pc-window {
  margin-top: 4px;
}

.right-column .pc-window:first-of-type {
  margin-top: 0;
}

/* ==============================
   CAIXAS
   ============================== */

.box {
  background: white;

  border: 3px solid #444;

  padding: 15px;

  box-shadow: 5px 5px 0 #999;
}

.box h2 {
  margin-top: 0;
}


/* ==============================
   LOGO
   ============================== */

.logo-link {
  text-decoration: none;
}

.logo-link {
  display: block;
  text-align: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;

  filter:
    drop-shadow(2px 0 0 #fff)
    drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff)
    drop-shadow(0 -2px 0 #fff);
}

.logo-img:hover {
  animation: shake 0.4s;
}

@keyframes shake {

  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ==============================
   BARRA DE TAREFAS / MENU
   ============================== */

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px;

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 2px 2px 0 #777;
}

/* Botões da barra */

.main-menu a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 3px 12px;

  background: #c0c0c0;
  color: #111;

  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;

  text-decoration: none;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 1px 1px 0 #808080;
}

/* Mouse */

/* Botão pressionado */

.main-menu a:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  box-shadow: none;

  transform: translate(1px, 1px);
}

/* Iniciar */

.start-button {
  gap: 5px;
}

.start-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px;

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 2px 2px 0 #777;
}

.taskbar-clock {
  margin-left: auto;

  min-width: 54px;
  padding: 6px 10px;

  text-align: center;

  background: #c0c0c0;
  color: #111;

  font-size: 13px;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ==============================
   JANELA DE PC RETRÔ
   ============================== */

.pc-window {
  background: #ececec;

  border-top: 3px solid white;
  border-left: 3px solid white;

  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  box-shadow: 4px 4px 0 #888;
}

.pc-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--otasing-blue);
  color: white;

  padding: 4px 5px;

  font-weight: bold;
}

.pc-buttons {
  display: flex;
  gap: 3px;
}

.pc-buttons button {
  width: 22px;
  height: 20px;

  padding: 0;

  background: #ddd;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;

  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;
  line-height: 12px;

  cursor: default;
}

.pc-content {
  padding: 12px;
}

/* ==============================
   ÚLTIMO LANÇAMENTO
   ============================== */

.latest-release {
  background: #d8d8d8;

  border-top: 3px solid white;
  border-left: 3px solid white;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  box-shadow: 4px 4px 0 #777;
}

.latest-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--otasing-blue);
  color: white;

  padding: 4px 6px;
  font-weight: bold;
}

.latest-buttons {
  display: flex;
  gap: 2px;
}

.latest-buttons button {
  width: 22px;
  height: 20px;
  padding: 0;

  background: #ddd;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;
}

.latest-content {
  padding: 10px;
}

.latest-video {
  min-height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  color: white;

  border-top: 3px solid #555;
  border-left: 3px solid #555;
  border-right: 3px solid white;
  border-bottom: 3px solid white;

  text-align: center;
}

.latest-video {
  overflow: hidden;
  padding: 0;
}

.latest-video img {
  display: block;

  width: 100%;
  height: 280px;

  object-fit: cover;
}

.latest-video:hover img {
  filter: brightness(1.12);
}

.latest-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;

  margin-top: 7px;
  padding: 5px 7px;

  background: #ececec;

  border: 1px solid #888;

  font-size: 13px;
}

.latest-watch {
  display: block;

  margin-top: 8px;
  padding: 8px;

  text-align: center;
  text-decoration: none;
  font-weight: bold;

  background: var(--otasing-orange);
  color: white;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
}

.latest-watch:active {
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.latest-placeholder {
  width: 100%;
  height: 280px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #111;
  color: #ddd;

  font-family: "Courier New", monospace;
}

.latest-placeholder span {
  font-size: 42px;
  color: var(--otasing-orange);
}

.latest-placeholder p {
  margin-top: 10px;
}

.latest-video {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #111;
}

.latest-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ==============================
   ESPAÇOS PROVISÓRIOS
   PARA IMAGENS
   ============================== */

.image-placeholder,
.video-placeholder {
  min-height: 140px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ddd;

  border: 2px dashed #777;

  text-align: center;
}

.video-placeholder {
  min-height: 280px;
}


/* ==============================
   BOTÕES
   ============================== */

.youtube-button,
.suggestion-button {
  display: inline-block;

  margin-top: 12px;

  padding: 10px 14px;

  background: #ff5e7a;

  color: white;

  text-decoration: none;

  font-weight: bold;

  border: 2px solid #444;
}

/* ==============================
   PLAYER RETRÔ OTASING
   ============================== */

.retro-player {
  background: #d8d8d8;

  border-top: 3px solid white;
  border-left: 3px solid white;

  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  box-shadow: 4px 4px 0 #888;
}

.retro-player-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--otasing-blue);
  color: white;

  padding: 4px 5px;
  font-weight: bold;
}

.retro-player-buttons {
  display: flex;
  gap: 2px;
}

.retro-player-buttons button {
  width: 22px;
  height: 20px;

  padding: 0;

  background: #ddd;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;

  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;
}

.retro-player-screen {
  margin: 8px;

  padding: 8px;

  background: #0b2733;
  color: #8df6ff;

  border-top: 3px solid #555;
  border-left: 3px solid #555;

  border-right: 3px solid white;
  border-bottom: 3px solid white;

  font-family: "Courier New", monospace;

  text-shadow: 0 0 5px rgba(141, 246, 255, 0.8);
}

.retro-player-song {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#song-title {
  display: inline-block;
}

#song-title.scrolling {
  padding-left: 100%;
  animation: song-scroll 14s linear infinite;
}

@keyframes song-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.retro-player-song {
  font-size: 13px;
  margin-bottom: 6px;
}

.retro-player-time {
  text-align: right;
  font-size: 12px;
}

.retro-player-controls {
  display: flex;
  justify-content: center;
  gap: 4px;

  padding: 0 8px 8px;
}

.retro-player-controls button {
  min-width: 34px;
  height: 28px;

  background: #ddd;

  border-top: 2px solid white;
  border-left: 2px solid white;

  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 14px;
}

.retro-player-bar {
  margin: 0 8px 8px;

  height: 10px;

  background: #aaa;

  border-top: 2px solid #555;
  border-left: 2px solid #555;

  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.retro-player-bar-fill {
  width: 35%;
  height: 100%;

  background: var(--otasing-orange);
}

.retro-player .retro-player-bar {
  cursor: pointer;
}

.retro-player-controls button:active {
  transform: translate(2px, 2px);

  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}
.retro-player-buttons button:active {
  transform: translate(1px, 1px);

  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* ==============================
   VISUALIZADOR DE ARTE RETRÔ
   ============================== */

.art-viewer {
  background: #d8d8d8;

  border-top: 3px solid white;
  border-left: 3px solid white;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  box-shadow: 4px 4px 0 #888;
}

.paint-titlebar > span {
  white-space: nowrap;
}

.art-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 4px 5px;

  background: var(--otasing-blue);
  color: white;

  font-weight: bold;
}

.art-window-buttons {
  display: flex;
  gap: 2px;
}

.art-window-buttons button {
  width: 22px;
  height: 20px;
  padding: 0;

  background: #ddd;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;
}

.art-menu {
  padding: 4px 7px;

  background: #ececec;
  color: #222;

  border-bottom: 1px solid #888;

  font-size: 12px;
}

.art-content {
  padding: 8px;
}

.art-display {
  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  border-top: 3px solid #555;
  border-left: 3px solid #555;
  border-right: 3px solid white;
  border-bottom: 3px solid white;

  text-align: center;
}

.art-info {
  margin-top: 5px;
  padding: 3px 5px;

  background: #ececec;
  border: 1px solid #888;

  font-size: 11px;
  color: #333;
}

.art-submit {
  display: block;

  margin-top: 8px;
  padding: 7px;

  text-align: center;
  text-decoration: none;
  font-weight: bold;

  background: var(--otasing-orange);
  color: white;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
}

.art-submit:active {
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* ==============================
   OTASING PAINT
   ============================== */

.paint-window {
  background: #c0c0c0;

  border-top: 3px solid white;
  border-left: 3px solid white;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  box-shadow: 4px 4px 0 #888;
}

.paint-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 4px 5px;

  background: var(--otasing-blue);
  color: white;

  font-weight: bold;
}

.paint-window-buttons {
  display: flex;
  gap: 2px;
}

.paint-window-buttons button {
  width: 22px;
  height: 20px;
  padding: 0;

  background: #ddd;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
}

.paint-menu {
  display: flex;
  gap: 8px;

  padding: 4px 7px;

  background: #c0c0c0;

  font-size: 11px;
  color: #111;

  border-bottom: 1px solid #777;

  white-space: nowrap;
  overflow: hidden;
}

.paint-workspace {
  display: flex;

  min-height: 185px;

  padding: 5px;

  background: #808080;
}

.paint-tools {
  width: 34px;

  display: flex;
  flex-direction: column;
  gap: 2px;

  margin-right: 3px;
  align-items: center;
  flex-shrink: 0;
}

.paint-tool-divider {
  width: 24px;
  height: 1px;
  margin: 5px 0;

  background: #555;
  border-bottom: 1px solid #ddd;
}
.paint-tools > button {
  width: 28px;
  height: 28px;

  padding: 0;

  background: #c0c0c0;

  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;

  font-size: 11px;
}

.paint-palette {

  margin-top: 2px;
  padding-top: 3px;

  border-top: 1px solid #666;
}

.paint-current-colors {
  position: relative;

  width: 28px;
  height: 25px;

  margin: 0 auto 5px;

  background: #c0c0c0;
}

.paint-color-back,
.paint-color-front {
  position: absolute;

  width: 14px;
  height: 14px;

  border: 1px solid #222;
}

.paint-color-back {
  right: 2px;
  bottom: 2px;

  background: white;
}

.paint-color-front {
  left: 2px;
  top: 2px;

  background: black;
}

.paint-colors {
  display: grid;
  grid-template-columns: repeat(2, 10px);

  gap: 2px;

  justify-content: center;
}

.paint-colors span {
  width: 8px;
  height: 8px;

  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}

.paint-canvas {
  flex: 1;

  min-width: 0;
  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #808080;
  color: #333;

  border-top: 2px solid #444;
  border-left: 2px solid #444;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  text-align: center;

  position: relative;
  overflow: hidden;
}

.paint-status {
  padding: 3px 6px;

  background: #c0c0c0;
  color: #333;

  border-top: 2px solid #808080;

  font-size: 10px;
}

.featured-art {
  display: block;

  width: 100%;
  height: 220px;

  object-fit: contain;

  transform-origin: center center;

  user-select: none;
  -webkit-user-drag: none;
}

.paint-canvas.zoomed {
  cursor: grab;
}

.paint-canvas.dragging {
  cursor: grabbing;
}

.artist-tooltip {
  position: absolute;

  left: 4px;
  bottom: 4px;

  padding: 3px 5px;

  background: #ffffe1;
  color: #000;

  border: 1px solid #000;

  font-size: 9px;
  line-height: 1.2;

  opacity: 0;
  pointer-events: none;

  z-index: 2;
}

.paint-canvas:hover .artist-tooltip {
  opacity: 1;
}

/* ==============================
   FAIXA PRINCIPAL DE ANIMES
   ============================== */

.anime-marquee {
  overflow: hidden;

  border: 3px solid #444;

  background: white;

  padding: 10px;
}

.anime-track {
  display: flex;

  width: max-content;

  gap: 10px;

  animation: scroll-anime 300s linear infinite;
}

.anime-card {
  position: relative;

  width: 120px;
  height: 80px;

  flex-shrink: 0;

  display: block;

  overflow: hidden;

  background: #c0c0c0;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  color: white;
  text-decoration: none;
}

.anime-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.anime-card span {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 3px 4px;

  background: rgba(0, 0, 0, 0.72);

  color: white;

  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.anime-card:hover {
  transform: translateY(-2px);
}


/* Para a faixa quando o mouse fica em cima */

.anime-marquee:hover .anime-track {
  animation-play-state: paused;
}

@keyframes scroll-anime {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.anime-video-file {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 7px 9px;

  color: #111;
  text-decoration: none;

  border: 1px solid transparent;
}

.anime-video-file:hover {
  background: #0a64ad;
  color: white;

  border: 1px dotted white;
}

.anime-video-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #f28c28;
  color: white;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 18px;
  font-weight: bold;
}

.anime-video-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.anime-video-text strong {
  font-size: 13px;
}

.anime-video-text span {
  font-size: 10px;
  color: #666;
}

.anime-video-file:hover .anime-video-text span {
  color: white;
}

/* ==============================
   FAIXA PEQUENA
   ============================== */

.mini-marquee {
  width: 100%;
  overflow: hidden;

  background: var(--otasing-light);

  border-top: 3px solid white;
  border-left: 3px solid white;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;

  padding: 7px 8px;
  box-sizing: border-box;
}

.mini-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 40px;

  animation: mini-scroll 25s linear infinite;
}

.mini-text {
  flex-shrink: 0;
}

@keyframes mini-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ==============================
   ADAPTAÇÕES.EXE
   ============================== */


.adaptacoes-gif {
  background: #111;

  border-top: 3px solid #555;
  border-left: 3px solid #555;
  border-right: 3px solid white;
  border-bottom: 3px solid white;

  overflow: hidden;
}

.adaptacoes-gif img {
  display: block;
  width: 100%;
  height: auto;
}

.adaptacoes-status {
  margin-top: 10px;

  padding: 7px 8px;

  background: #ececec;
  border: 1px solid #888;

  font-family: "Courier New", monospace;
}

.adaptacoes-lista {
  margin: 8px 0 0;
  padding: 0;

  list-style: none;

  font-family: "Courier New", monospace;
}

.adaptacoes-lista li {
  padding: 5px 7px;
  margin-bottom: 4px;

  background: #f4f4f4;

  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
}

.adaptacoes-lista li::before {
  content: "♪ ";
  color: var(--otasing-orange);
}

.loading-dots::after {
  content: "";
  animation: loading-dots 1.2s steps(4, end) infinite;
}

@keyframes loading-dots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75%,
  100% {
    content: "...";
  }
}

.adaptacoes-lista {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.adaptacoes-lista li {
  position: relative;

  padding: 5px 7px 5px 22px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: 12px;

  cursor: default;
}

/* notinha musical */
.adaptacoes-lista li::before {
  content: "♪";
  position: absolute;
  left: 7px;
  top: 5px;
}

/* cara de item selecionável do Windows */
.adaptacoes-lista li:hover {
  background: #000080;
  color: white;
}

/* ==============================
   TUNA FIXA / YOUTUBE
   ============================== */

.tuna-youtube {
  position: fixed;

  right: 8px;
  bottom: 8px;

  width: 220px;
  height: 220px;

  z-index: 1000;
  display: block;
}


/* As duas imagens ocupam exatamente o mesmo lugar */

.tuna-youtube img {
  position: absolute;

  width: 220px;
  height: 220px;

  object-fit: contain;

  left: 0;
  bottom: 0;
}


/* Tuna normal aparece primeiro */

.tuna-normal {
  opacity: 1;
}


/* Tuna animada começa escondida */

.tuna-hover {
  opacity: 0;
}


/* Quando o mouse entra, trocamos as imagens */

.tuna-youtube:hover .tuna-normal {
  opacity: 0;
}

.tuna-youtube:hover .tuna-hover {
  opacity: 1;
}

/* ==============================
   PÁGINA DE ANIME / EXPLORER
   ============================== */

.anime-page {
  width: min(850px, calc(100% - 30px));
  margin: 40px auto;
}

.anime-window {
  background: #c0c0c0;

  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;

  box-shadow: 5px 5px 0 #777;
}

/* Barra azul */

.anime-window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 4px 5px;

  background: var(--otasing-blue);
  color: white;

  font-weight: bold;
}

.anime-window-titlebar::before {
  content: "📁";
  margin-right: 5px;
}

#anime-window-title {
  flex: 1;
}

/* Botões _ □ × */

.anime-window-buttons {
  display: flex;
  gap: 2px;
}

.anime-window-buttons button {
  width: 22px;
  height: 20px;
  padding: 0;

  background: #c0c0c0;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;
}

/* Arquivo / Editar / Exibir */

.anime-window-menu {
  display: flex;
  gap: 14px;

  padding: 5px 8px;

  background: #c0c0c0;
  color: #111;

  border-bottom: 1px solid #808080;

  font-size: 12px;
}

/* Interior da pasta */

.anime-window-content {
  display: grid;
  grid-template-columns: 180px 1fr;

  min-height: 350px;

  padding: 8px;

  background: #fff;
}

/* Capa */

.anime-page-cover {
  padding: 8px;

  background: #d4d0c8;

  border-right: 1px solid #808080;
}

.anime-page-cover img {
  display: block;

  width: 100%;
  height: 230px;

  object-fit: cover;

  background: #808080;

  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* Área dos arquivos */

.anime-page-info {
  padding: 12px;
}

.anime-page-info h1 {
  margin: 0 0 5px;

  color: var(--otasing-blue);

  font-size: 24px;
}

.anime-page-info > p {
  margin-top: 0;

  font-size: 12px;
  color: #555;

  border-bottom: 1px dotted #999;

  padding-bottom: 8px;
}

/* Lista que futuramente receberá os vídeos */

.anime-video-list {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.anime-empty {
  padding: 10px;

  color: #666;

  font-family: "Courier New", monospace;
  font-size: 12px;
}

/* Barra inferior do Explorer */

.anime-window-status {
  padding: 4px 7px;

  background: #c0c0c0;
  color: #333;

  border-top: 2px solid #808080;

  font-size: 11px;
}

/* Voltar */

.anime-back {
  display: inline-block;

  margin-top: 12px;
  padding: 6px 10px;

  background: #c0c0c0;
  color: #111;

  text-decoration: none;
  font-size: 12px;
  font-weight: bold;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.anime-back:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

/* ==============================
   CELULAR / TELAS PEQUENAS
   ============================== */

/* ==============================
   CHAT / CBOX
   ============================== */

.chat-window {
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.cbox-frame {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* BARRINHA EXTRA DO CHAT */

.chat-extra-tools {
  padding: 3px 4px;

  background: #d4d0c8;

  border-top: 1px solid #808080;
}


/* BOTÃO CHAMAR ATENÇÃO */

.chat-shake-button {
  display: flex;
  align-items: center;

  gap: 4px;

  padding: 2px 5px;

  background: #c0c0c0;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-family: Arial, sans-serif;
  font-size: 10px;

  cursor: pointer;
}

.chat-shake-button:active {
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  transform: translate(1px, 1px);
}

.chat-shake-button img {
  width: 18px;
  height: 18px;

  object-fit: contain;
}


/* SHAKE */

.chat-window.chat-shake {
  animation: msn-shake 0.45s linear;
}

@keyframes msn-shake {

  0%   { transform: translate(0, 0); }
  15%  { transform: translate(-5px, 0); }
  30%  { transform: translate(5px, 0); }
  45%  { transform: translate(-5px, 0); }
  60%  { transform: translate(5px, 0); }
  75%  { transform: translate(-3px, 0); }
  90%  { transform: translate(3px, 0); }
  100% { transform: translate(0, 0); }

}

/* =========================================================
   ADAPTAÇÕES.EXE — LISTA COMPACTA + TÍTULOS DESLIZANTES
   ========================================================= */

.adaptacoes-window .adaptacoes-lista {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 0 !important;
}

.adaptacoes-window .adaptacoes-lista li {
  position: relative !important;

  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;

  padding: 4px 5px 4px 20px !important;

  font-size: 12px !important;
  line-height: 16px !important;

  white-space: nowrap !important;
  overflow: hidden !important;

  cursor: default;
}

.adaptacoes-window .adaptacoes-lista li::before {
  content: "♪";

  position: absolute;

  left: 5px;
  top: 4px;

  color: var(--otasing-orange);
}

.adaptacao-titulo-visor {
  display: block;

  width: 100%;
  overflow: hidden;

  white-space: nowrap;
}

.adaptacao-titulo {
  display: inline-block;

  width: max-content;

  white-space: nowrap;

  transform: translateX(0);
}

.adaptacao-titulo.deslizando {
  animation: titulo-deslizante 6s ease-in-out infinite alternate;
}

@keyframes titulo-deslizante {

  0%,
  15% {
    transform: translateX(0);
  }

  85%,
  100% {
    transform: translateX(var(--destino));
  }
}

/* =========================================================
   PÁGINA DE SUGESTÕES
   ========================================================= */

.sugestoes-page {
  width: min(950px, calc(100% - 30px));
  margin: 35px auto;
}


/* JANELA PRINCIPAL */

.sugestoes-window {
  background: #c0c0c0;

  border-top: 3px solid white;
  border-left: 3px solid white;
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;

  box-shadow: 5px 5px 0 #777;
}

/* IMAGEM */

.sugestoes-gif {
  display: block;
  width: 200px;
  height: 100px;
 margin: 8px auto 0;


  /* moldura rebaixada Win98 */
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  box-sizing: border-box;

}

.sugestoes-legenda {
  width: 200px;
  margin: 5px auto 10px;
  padding: 0;

  background: transparent;
  border: none;

  line-height: 1.15;
}

/* BARRA DE TÍTULO */

.sugestoes-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 4px 5px;

  background: var(--otasing-blue);
  color: white;

  font-weight: bold;
}


.sugestoes-window-buttons {
  display: flex;
  gap: 2px;
}


.sugestoes-window-buttons button,
.sugestoes-close {
  width: 22px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  padding: 0;

  background: #c0c0c0;
  color: #111;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-size: 12px;

  text-decoration: none;
}


/* MENU */

.sugestoes-menu {
  display: flex;
  gap: 14px;

  padding: 5px 8px;

  background: #c0c0c0;

  border-bottom: 1px solid #808080;

  font-size: 12px;
}


/* CONTEÚDO */

.sugestoes-content {
  padding: 14px;

  background: #e8e8e8;
}


/* =========================================================
   AVISO / LEIA-ME
   ========================================================= */

.sugestoes-aviso {
  display: grid;

  grid-template-columns: 190px 1fr;

  gap: 14px;

  margin-bottom: 18px;
}


/* =========================================
   TUNA - REGRAS DAS SUGESTÕES
   ========================================= */

.sugestoes-tuna-placeholder {
  position: relative;

  height: 270px;
  min-height: 0;

  padding: 0;

  background: #d4d0c8;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  overflow: hidden;
  align-self: start;
}


/* ARTE DA TUNA */

.sugestoes-tuna {
  position: absolute;

  width: 200px; /* ← AUMENTA/DIMINUI O ZOOM */
  max-width: none;
  height: auto;

  left: 50%;    /* ← MOVE PARA ESQUERDA/DIREITA */
  bottom: 0;    /* ← MOVE PARA CIMA/BAIXO */

  transform: translateX(-50%);

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* LEIA-ME */

.leia-me {
  background: white;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}


.leia-me-title {
  padding: 5px 7px;

  background: #c0c0c0;

  border-bottom: 1px solid #808080;

  font-weight: bold;
  font-size: 13px;
}


.leia-me-content {
  padding: 12px;

  font-family: "Courier New", monospace;

  font-size: 12px;
  line-height: 1.5;

  color: #111;
}


.leia-me-content p {
  margin: 8px 0;
}


.leia-me-content ul {
  margin: 6px 0;
  padding-left: 22px;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.sugestoes-form-box,
.sugestoes-lista-box {
  margin-top: 16px;

  padding: 12px;

  background: #d4d0c8;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
}


.sugestoes-form-box h2 {
  margin: 0 0 12px;

  font-size: 17px;

  color: var(--otasing-blue);
}


/* =========================================================
   LISTA
   ========================================================= */

.sugestoes-lista-header {
  display: flex;

  justify-content: space-between;

  margin-bottom: 10px;
}


.sugestoes-lista-header div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}


.sugestoes-lista-header span {
  font-size: 11px;

  color: #555;
}


.sugestoes-busca {
  margin-bottom: 10px;
}


.sugestoes-busca label {
  display: block;

  margin-bottom: 4px;

  font-size: 12px;
  font-weight: bold;
}


.sugestoes-lista {
  background: white;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}


.sugestao-item {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 7px 9px;

  border-bottom: 1px dotted #aaa;
}


.sugestao-item:last-child {
  border-bottom: 0;
}


.sugestao-item:hover {
  background: #000080;
  color: white;
}


.sugestao-icon {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--otasing-orange);
  color: white;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;

  font-weight: bold;
}


.sugestao-info {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.sugestao-info strong {
  font-size: 13px;
}


.sugestao-info span {
  font-size: 11px;

  color: #666;
}


.sugestao-item:hover .sugestao-info span {
  color: white;
}


/* VOLTAR */

.sugestoes-voltar {
  display: inline-block;

  margin-top: 16px;

  padding: 6px 10px;

  background: #c0c0c0;
  color: #111;

  text-decoration: none;

  font-size: 12px;
  font-weight: bold;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
}


/* BARRA DE STATUS */

.sugestoes-statusbar {
  padding: 4px 7px;

  background: #c0c0c0;

  border-top: 2px solid #808080;

  font-size: 11px;
}


/* CELULAR */

@media (max-width: 650px) {

  .sugestoes-aviso {
    grid-template-columns: 1fr;
  }

  .sugestoes-tuna-placeholder {
    min-height: 200px;
  }
}

/* =========================================================
   FORMULÁRIO TALLY
   ========================================================= */

.sugestoes-form-frame {
  display: block;

  width: 100%;
  height: 720px;

  margin: 16px 0 0;

  box-sizing: border-box;

  border: 0;

  background: white;
}

/* =========================================
   📰 ÚLTIMA NOTÍCIA
   ========================================= */

.noticias-box {
  overflow: hidden;
}

.noticia-atual {
  text-align: left;
}


/* BANNER */

.noticias-banner {
  display: block;
  width: 100%;
  max-width: 550px;
  height: auto;
  margin: 0 auto;
}


/* CORPO DA NOTÍCIA */

.noticia-conteudo {
  max-width: 550px;
  margin: 0 auto;
  padding: 16px 18px 20px;
}


/* TÍTULO */

.noticia-conteudo h3 {
  margin: 0;
  padding-bottom: 7px;

  border-bottom: 1px solid #b5b5b5;

  font-size: 17px;
  color: #17344c;
  text-align: left;
}


/* AUTOR */

.noticia-autor {
  display: inline-block;
  margin-top: 7px;
  padding: 0;

  background: none;
  border: none;

  font-size: 11px;
  font-weight: normal;
  color: #555;
}

/* DATA */

.noticia-data {
  float: right;

  margin-top: 7px;

  font-size: 10px;
  color: #777;
}


/* TEXTO */

.noticia-conteudo p {
  clear: both;

  margin: 18px 0 0;

  font-size: 14px;
  line-height: 1.6;

  color: #243b4d;

  text-align: left;
  white-space: pre-line;
}


/* LINKS DENTRO DA NOTÍCIA */

.noticia-conteudo p a {
  color: #245c91;
  font-weight: bold;
  text-decoration: underline;

  overflow-wrap: anywhere;
}

.noticia-conteudo p a:hover {
  color: #b22222;
}

/* =========================================
   BARRA DE TAREFAS - OTASING OS
   ========================================= */

.main-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* BOTÃO INICIAR */

.start-button {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 7px 10px;

  background: #c0c0c0;
  color: #111;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  font-weight: bold;
  cursor: pointer;
}


/* PROGRAMA ABERTO */

.taskbar-program {
  padding: 7px 14px;

  background: #dfdfdf;
  color: #111;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  text-decoration: none;
}

/* QUANDO ESTIVER ABERTO */

.start-dropdown.aberto {
  display: block;
}


/* LINKS DO MENU */

.start-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 7px 10px;

  background: transparent;
  color: #111;

  border: none;

  text-decoration: none;
  font-weight: bold;
}

.start-dropdown a:hover {
  background: #000080;
  color: #ffffff;
}


/* RELÓGIO VAI PARA O CANTO DIREITO */

.taskbar-clock {
  margin-left: auto;
}

/* =========================================
   ATALHOS DA BARRA
   ========================================= */

.quick-launch {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-left: 4px;
  padding-left: 5px;

  border-left: 1px solid #808080;
}

.quick-launch a {
  width: 32px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  min-height: 0;

  border: none;
  box-shadow: none;
  background: transparent;
}

.quick-launch img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.quick-launch a:hover {
  background: #d4d0c8;

  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}


/* ÍCONE + TEXTO DENTRO DO INICIAR */

.quick-launch a {
  border: none;
  box-shadow: none;
  background: transparent;

  padding: 0;
  min-height: 0;

  width: 27px;
  height: 27px;
}

/* =========================================
   SOBRE.EXE
   ========================================= */

.sobre-page {
  min-height: 100vh;
  padding: 10px 22px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* JANELA PRINCIPAL */

.sobre-explorer {
  position: relative;

  width: min(950px, 100%);
  min-height: 620px;

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;

  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow:
    1px 1px 0 #000000;
}


/* TITLEBAR */

.sobre-titlebar {
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 4px 0 7px;

  background: #0b6594;
  color: white;

  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}


.sobre-window-buttons {
  display: flex;
  gap: 2px;
}


.sobre-window-buttons button,
.sobre-close {
  box-sizing: border-box;
line-height: 1;
  width: 22px;
  height: 20px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c0c0c0;
  color: #000;

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;

  text-decoration: none;
}


/* MENU */

.sobre-menubar {
  display: flex;
  gap: 20px;

  padding: 6px 9px;

  font-family: Arial, sans-serif;
  font-size: 12px;

  border-bottom: 1px solid #808080;
}


/* ENDEREÇO */

.sobre-addressbar {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 5px;

  font-family: Arial, sans-serif;
  font-size: 12px;
}


.sobre-address {
  flex: 1;

  padding: 4px 7px;

  background: white;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  font-family: "Courier New", monospace;
}


/* =========================================
   ÁREA DE TRABALHO
   ========================================= */

.sobre-desktop {
  position: relative;

  min-height: 510px;

  margin: 0 6px;

  padding: 22px;

  overflow: visible;

  background: #ffffff;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}


/* ÍCONES */

.sobre-icon {
  width: 95px;

  margin: 5px 15px 20px 5px;
  padding: 6px;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  vertical-align: top;

  background: transparent;
  border: 1px solid transparent;

  font-family: Arial, sans-serif;
  font-size: 12px;

  cursor: pointer;
}


.sobre-icon img {
  width: 48px;
  height: 48px;

  object-fit: contain;

  image-rendering: pixelated;
}


.sobre-icon:hover {
  background: #dcecff;
  border: 1px dotted #000080;
}


.sobre-icon:focus {
  background: #000080;
  color: white;

  outline: 1px dotted white;
}


/* =========================================
   JANELAS INTERNAS
   ========================================= */

.internal-window {
  display: none;

  position: absolute;

  top: 105px;
  left: 150px;

  width: min(540px, calc(100% - 40px));

  background: #c0c0c0;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 2px 2px 0 #000;

  font-family: Arial, sans-serif;
}


.internal-window.open {
  display: block;
}


/* posições iniciais levemente diferentes */

#window-tuna {
  top: 125px;
  left: 185px;
}


#window-faq {
  top: 145px;
  left: 220px;
}


/* TITLEBAR DAS JANELAS */

.internal-titlebar {
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 6px;

  background: #000080;
  color: white;

  font-size: 13px;
  font-weight: bold;

  cursor: move;

  user-select: none;
}


.internal-close {
  width: 21px;
  height: 19px;

  margin-right: 3px;
  padding: 0;

  background: #c0c0c0;
  color: black;

  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  font-size: 12px;
  font-weight: bold;

  cursor: pointer;
}


/* CONTEÚDO */

.internal-content {
  min-height: 240px;

  margin: 8px;
  padding: 16px;

  background: white;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  font-size: 13px;
  line-height: 1.5;
}


.internal-content h2 {
  margin-top: 0;
}


/* STATUS */

.sobre-statusbar {
  display: flex;
  justify-content: space-between;

  margin: 5px;

  padding: 4px 7px;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  font-family: Arial, sans-serif;
  font-size: 11px;
}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

  .sobre-page {
    padding: 4px;
  }


  .sobre-explorer {
    min-height: calc(100vh - 8px);
  }


  .sobre-desktop {
    min-height: 520px;
    padding: 12px;
  }


  .sobre-icon {
    width: 75px;
    margin: 5px;
  }


  .sobre-icon img {
    width: 40px;
    height: 40px;
  }


  /* no celular a janela vira quase tela cheia */

  .internal-window,
  #window-tuna,
  #window-faq {
    position: absolute;

    top: 10px !important;
    left: 10px !important;

    width: calc(100% - 20px);
  }


  .internal-content {
    min-height: 330px;
  }


  /* sem arrastar visualmente no celular */

  .internal-titlebar {
    cursor: default;
  }

}

/* BOTÃO VOLTAR - SOBRE */

.sobre-back-area {
  padding: 10px 6px;
}

.sobre-back-button {
  display: inline-block;

  padding: 6px 10px;

  background: #c0c0c0;
  color: #000;

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 1px 1px 0 #000;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;

  text-decoration: none;
}

.sobre-back-button:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  box-shadow: none;

  padding: 7px 9px 5px 11px;
}

/* =========================================
   PÁGINAS INTERNAS / PROGRAMAS
   ========================================= */

.program-page {
  min-height: 100vh;
  padding: 10px 22px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* JANELA PRINCIPAL */

.program-window {
  position: relative;

  width: min(950px, 100%);
  min-height: 620px;

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 1px 1px 0 #000000;
}


/* BARRA DE TÍTULO */

.program-titlebar {
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 4px 0 7px;

  background: #0b6594;
  color: white;

  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}


.program-window-buttons {
  display: flex;
  gap: 2px;
}


.program-window-buttons button,
.program-close {
  box-sizing: border-box;

  width: 22px;
  height: 20px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c0c0c0;
  color: #000;

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;

  text-decoration: none;
}


/* MENU */

.program-menubar {
  display: flex;
  gap: 20px;

  padding: 6px 9px;

  font-family: Arial, sans-serif;
  font-size: 12px;

  border-bottom: 1px solid #808080;
}


/* ENDEREÇO */

.program-addressbar {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 5px;

  font-family: Arial, sans-serif;
  font-size: 12px;
}


.program-address {
  flex: 1;

  padding: 4px 7px;

  background: white;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  font-family: "Courier New", monospace;
}


/* ÁREA PRINCIPAL */

.program-content {
  position: relative;

  min-height: 510px;

  margin: 0 6px;
  padding: 22px;

  background: #ffffff;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  box-sizing: border-box;
}


/* BOTÃO VOLTAR */

.program-back-area {
  padding: 10px 6px;
}


.program-back-button {
  display: inline-block;

  padding: 6px 10px;

  background: #c0c0c0;
  color: #000;

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  box-shadow: 1px 1px 0 #000;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;

  text-decoration: none;
}


.program-back-button:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  box-shadow: none;

  padding: 7px 9px 5px 11px;
}


/* BARRA DE STATUS */

.program-statusbar {
  display: flex;
  justify-content: space-between;

  margin: 5px;
  padding: 4px 7px;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  font-family: Arial, sans-serif;
  font-size: 11px;
}


/* CELULAR */

@media (max-width: 600px) {

  .program-page {
    padding: 4px;
  }

  .program-window {
    min-height: calc(100vh - 8px);
  }

  .program-content {
    min-height: 520px;
    padding: 12px;
  }

}

/* =========================================================
   MOBILE - PÁGINA INICIAL
   ========================================================= */

@media (max-width: 700px) {

  /* -----------------------------------------
     PÁGINA
     ----------------------------------------- */

  body {
    padding: 8px;

    background-attachment: scroll;
  }


  /* -----------------------------------------
     HOME EM UMA COLUNA
     ----------------------------------------- */

  .site-wrapper {
    width: 100%;
    max-width: 100%;

    display: flex;
    flex-direction: column;

    gap: 12px;
  }


  .left-column,
  .main-column,
  .right-column {
    display: contents;
  }


  /* -----------------------------------------
     ORDEM DOS ELEMENTOS
     ----------------------------------------- */

  .main-menu {
    order: 1;
  }

  .logo-link {
    order: 2;
  }

  .welcome-box {
  order: 3;
}

.retro-player {
  order: 4;
}

.latest-release {
  order: 5;
}

.anime-marquee {
  order: 6;
}

.noticias-box {
  order: 7;
}

  .retro-player {
    order: 7;
  }

  .adaptacoes-window {
    order: 8;
  }

  .paint-window {
    order: 9;
  }

  .right-column .pc-window {
    order: 10;
  }

  .chat-window {
    order: 11;
  }

  .mini-marquee {
    order: 12;
  }
  
  .tuna-gadget {
  order: 99;
}


  /* -----------------------------------------
     LOGO
     ----------------------------------------- */

  .logo-link {
  order: 2;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 5px 0;
  box-sizing: border-box;
}

.logo-img {
  display: block;

  width: 190px;
  max-width: 70vw;

  margin: 0 auto;
}


  /* -----------------------------------------
     BARRA DE TAREFAS
     ----------------------------------------- */

  .main-menu {
    width: 100%;

    box-sizing: border-box;

    gap: 2px;

    overflow: hidden;
  }


  .start-button {
    flex-shrink: 0;

    padding: 5px 7px !important;

    font-size: 12px !important;
  }


  .start-icon {
    width: 18px;
    height: 18px;
  }


  .quick-launch {
    flex: 1;

    gap: 2px;

    margin-left: 2px;
    padding-left: 3px;

    min-width: 0;
  }


  .quick-launch a {
    width: 25px;
    height: 25px;

    flex-shrink: 1;
  }


  .quick-launch img {
    width: 21px;
    height: 21px;
  }


  .taskbar-clock {
    min-width: 42px;

    padding: 5px 3px;

    font-size: 10px;

    flex-shrink: 0;
  }


  /* -----------------------------------------
     CAIXAS GERAIS
     ----------------------------------------- */

  .box,
  .pc-window,
  .retro-player,
  .paint-window,
  .latest-release,
  .mini-marquee,
  .anime-marquee {
    width: 100%;

    box-sizing: border-box;

    margin-left: 0;
    margin-right: 0;
  }


  /* -----------------------------------------
     BOAS-VINDAS
     ----------------------------------------- */

  .box.welcome-box {
    min-height: 0;

    padding: 13px;
  }


  .box.welcome-box h1 {
    font-size: 21px;

    margin-top: 0;
  }


  .crt-text {
    font-size: 13px;
    line-height: 1.45;
  }
  
  
/* -----------------------------------------
     PLAYER
     ----------------------------------------- */

  .retro-player {
    max-width: 100%;
  }


  .retro-player-controls {
    gap: 7px;
  }


  .retro-player-controls button {
    flex: 1;

    min-width: 0;

    height: 34px;
  }


  /* -----------------------------------------
     ÚLTIMO LANÇAMENTO
     ----------------------------------------- */

  .latest-video {
    height: auto;
    min-height: 0;

    aspect-ratio: 16 / 9;
  }


  .latest-video iframe {
    width: 100%;
    height: 100%;
  }


  .latest-info {
    font-size: 11px;
  }


  /* -----------------------------------------
     FAIXA DE ANIMES
     ----------------------------------------- */

  .anime-marquee {
    padding: 6px;
  }


  .anime-card {
    width: 100px;
    height: 68px;
  }


  /* -----------------------------------------
     NOTÍCIAS
     ----------------------------------------- */

  .noticia-conteudo {
    padding: 12px;
  }


  .noticia-conteudo h3 {
    font-size: 16px;
  }


  .noticia-conteudo p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* -----------------------------------------
     ARTE DO DIA
     ----------------------------------------- */

  .paint-workspace {
    min-height: 0;
  }


  .paint-canvas {
    height: 260px;
  }


  .featured-art {
    height: 260px;
  }


  /* -----------------------------------------
     CHAT
     ----------------------------------------- */

  .cbox-frame {
    height: 330px;
  }


  /* -----------------------------------------
     TUNA FIXA
     ----------------------------------------- */

  .tuna-youtube {
    width: 105px;
    height: 105px;

    right: 2px;
    bottom: 2px;
  }


  .tuna-youtube img {
    width: 105px;
    height: 105px;
  }


  /* -----------------------------------------
     MINI MARQUEE
     ----------------------------------------- */

  .mini-marquee {
    overflow: hidden;
  }
  
   /* -----------------------------------------
     Sugestão
     ----------------------------------------- */
  
.suggestion-button {
  display: block;

  width: fit-content;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}
}

/* =========================================
   FAQ - SOBRE.EXE
   ========================================= */

.faq-content {
  padding: 12px;
}


/* CABEÇALHO */

.faq-header {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  padding-bottom: 10px;

  border-bottom: 1px solid #aaa;
}

.faq-header img {
  width: 38px;
  height: 38px;

  object-fit: contain;
  image-rendering: pixelated;
}

.faq-header h2 {
  margin: 0;

  font-size: 17px;
}

.faq-header p {
  margin: 3px 0 0;

  font-size: 11px;
  color: #666;
}


/* LISTA */

.faq-list {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}


/* PERGUNTA */

.faq-question {
  width: 100%;

  display: flex;
  align-items: flex-start;
  gap: 7px;

  padding: 8px 9px;

  background: #f1f1f1;
  color: #111;

  border: 0;
  border-bottom: 1px solid #c0c0c0;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;

  text-align: left;

  cursor: pointer;
}

.faq-question:hover {
  background: #000080;
  color: #fff;
}


/* SETINHA */

.faq-arrow {
  flex-shrink: 0;

  font-size: 9px;

  margin-top: 2px;
}


/* RESPOSTA FECHADA */

.faq-answer {
  display: none;

  padding: 10px 14px 10px 27px;

  background: #fff;

  border-bottom: 1px solid #c0c0c0;
}


/* RESPOSTA ABERTA */

.faq-item.open .faq-answer {
  display: block;
}


.faq-answer p {
  margin: 0;

  font-size: 12px;
  line-height: 1.5;
}


/* GIRA A SETA */

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

/* =========================================================
   ARTES.EXE
   ========================================================= */

.artes-content {
  position: relative;

  overflow: auto;
}


.artes-intro {
  margin-bottom: 22px;

  border-bottom: 1px solid #c0c0c0;

  padding-bottom: 12px;
}


.artes-intro h1 {
  margin: 0 0 5px;

  font-size: 20px;
}


.artes-intro p {
  margin: 4px 0;

  font-size: 12px;
}


.artes-hint {
  color: #666;
}



/* =========================================================
   GALERIA
   ========================================================= */

.artes-gallery {
  display: grid;

  grid-template-columns:
    repeat(auto-fill, minmax(115px, 1fr));

  gap: 20px 14px;

  align-items: start;
}


.artes-gallery-item {
  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;


  padding: 5px;


  border: 1px solid transparent;


  background: transparent;


  font-family: Arial, sans-serif;

  font-size: 11px;

  color: #000;


  cursor: default;
}


.artes-gallery-item:hover {
  border: 1px dotted #808080;

  background: #e9e9e9;
}


.artes-gallery-item:focus {
  background: #000080;

  color: white;

  outline: 1px dotted white;

  outline-offset: -3px;
}


.artes-gallery-item img {
  width: 100px;

  height: 100px;


  object-fit: contain;


  background: white;


  border:
    1px solid #808080;


  padding: 3px;


  box-sizing: border-box;


  user-select: none;

  -webkit-user-drag: none;
}


.artes-gallery-item span {
  max-width: 110px;

  text-align: center;

  overflow-wrap: anywhere;
}



/* =========================================================
   VISUALIZADOR DE IMAGENS
   ========================================================= */

.art-viewer {
  position: fixed;


  /*
    TODAS AS ARTES ABREM
    NA MESMA JANELA.
  */

  width: 700px;

  height: 590px;


  max-width:
    calc(100vw - 40px);


  max-height:
    calc(100vh - 40px);


  left: 50%;

  top: 50%;


  transform:
    translate(-50%, -50%);


  display: none;

  flex-direction: column;


  background: #c0c0c0;


  border-top:
    2px solid #fff;

  border-left:
    2px solid #fff;

  border-right:
    2px solid #000;

  border-bottom:
    2px solid #000;


  box-shadow:
    2px 2px 0 #404040;


  box-sizing: border-box;


  z-index: 9999;
}


.art-viewer.open {
  display: flex;
}



/* =========================================================
   TITLEBAR
   ========================================================= */

.art-viewer-titlebar {
  height: 27px;


  flex-shrink: 0;


  display: flex;

  align-items: center;

  justify-content: space-between;


  padding:
    3px 3px 3px 6px;


  box-sizing: border-box;


  background: #0b6594;

  color: white;


  font-family: Arial, sans-serif;

  font-size: 12px;

  font-weight: bold;


  cursor: move;


  user-select: none;
}


.art-viewer-titlebar span {
  min-width: 0;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}



/* =========================================================
   BOTÃO FECHAR
   ========================================================= */

.art-viewer-close {
  width: 20px;

  height: 19px;


  flex-shrink: 0;


  padding: 0;


  background: #c0c0c0;


  color: #000;


  border-top:
    2px solid #fff;

  border-left:
    2px solid #fff;

  border-right:
    2px solid #404040;

  border-bottom:
    2px solid #404040;


  box-sizing: border-box;


  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: bold;

  line-height: 1;


  cursor: pointer;
}


.art-viewer-close:active {
  border-top:
    2px solid #404040;

  border-left:
    2px solid #404040;

  border-right:
    2px solid #fff;

  border-bottom:
    2px solid #fff;
}



/* =========================================================
   MENU DO VISUALIZADOR
   ========================================================= */

.art-viewer-menu {
  height: 27px;


  flex-shrink: 0;


  display: flex;

  align-items: center;


  gap: 18px;


  padding: 0 8px;


  box-sizing: border-box;


  border-bottom:
    1px solid #808080;


  font-family: Arial, sans-serif;

  font-size: 11px;
}



/* =========================================================
   ÁREA DA ARTE
   ========================================================= */

.art-viewer-workspace {
  flex: 1;


  min-height: 0;


  margin: 6px;


  display: flex;

  align-items: center;

  justify-content: center;


  overflow: hidden;


  background: #808080;


  border-top:
    2px solid #404040;

  border-left:
    2px solid #404040;

  border-right:
    2px solid #fff;

  border-bottom:
    2px solid #fff;


  box-sizing: border-box;


  padding: 18px;
}



/*
  IMPORTANTE:

  A arte NÃO ocupa a tela inteira.
  Mesmo que o arquivo seja enorme,
  visualmente fica presa aqui.
*/

.art-viewer-image {
  display: block;


  max-width: 600px;

  max-height: 430px;


  width: auto;

  height: auto;


  object-fit: contain;


  box-shadow:
    1px 1px 5px rgba(0,0,0,.5);


  user-select: none;

  -webkit-user-drag: none;
}



/* =========================================================
   CRÉDITOS
   ========================================================= */

.art-viewer-info {
  min-height: 48px;


  flex-shrink: 0;


  padding: 6px 9px;


  box-sizing: border-box;


  background: #c0c0c0;


  border-top:
    1px solid #fff;


  font-family: Arial, sans-serif;

  font-size: 11px;

  line-height: 1.5;
}



/* =========================================================
   ARTES.EXE - MOBILE
   ========================================================= */

@media (max-width: 700px) {


  .artes-gallery {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 14px 5px;
  }


  .artes-gallery-item {
    padding: 2px;
  }


  .artes-gallery-item img {
    width: 78px;

    height: 78px;

    max-width: 100%;
  }


  .artes-gallery-item span {
    max-width: 80px;

    font-size: 10px;
  }



  /*
    VISUALIZADOR MOBILE

    Continua sem fullscreen.
  */

  .art-viewer {
    width:
      calc(100vw - 24px);


    height: 510px;


    max-width:
      calc(100vw - 24px);


    max-height:
      calc(100vh - 40px);
  }


  .art-viewer-workspace {
    padding: 12px;
  }


  .art-viewer-image {
    max-width:
      calc(100vw - 70px);


    max-height: 360px;
  }


  /*
    No celular não arrastamos a janela.
  */

  .art-viewer-titlebar {
    cursor: default;
  }

}

/* =========================================
   CORRENTE DA TUNA
   ========================================= */

.tuna-chain {
  padding: 12px 14px 14px;

  font-size: 12px;

  line-height: 1.35;

  text-align: center;
}


.tuna-chain p {
  margin: 5px 0;
}


.tuna-chain-title {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}


/* A stamp inteira é o botão */

.tuna-stamp-button {
  display: block;

  margin: 12px auto;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.tuna-stamp-button img {
  display: block;

  max-width: 100%;

  height: auto;

  image-rendering: auto;

  user-select: none;

  -webkit-user-drag: none;
}


/* Feedback ao passar o mouse */

.tuna-stamp-button:hover {
  transform: translateY(-1px);
}


.tuna-stamp-button:active {
  transform: translateY(1px);
}


/* Instrução */

.tuna-chain-instruction {
  color: #555;
  text-align: center;

}


/* AMEAÇA */

.tuna-chain-warning {
  display: block;

  margin-top: 9px;

  font-size: 11px;
  
  text-align: center;

}


/* Mensagem temporária */

.tuna-copy-message {
  height: 17px;

  margin-top: 7px;

  color: #006000;

  font-weight: bold;

  text-align: center;
}

/* =========================================
   VIDEOS.EXE
   ========================================= */

.videos-content {
  min-height: 430px;
  background: #ffffff;
  padding: 20px;
}


/* ÁREA DOS ÍCONES */

.videos-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, 110px);
  gap: 30px 45px;
  align-content: start;
}


/* PASTA */

.video-folder {
  width: 110px;
  min-height: 95px;

  padding: 4px;

  border: 1px solid transparent;
  background: transparent;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  font-family: inherit;
  font-size: 13px;

  cursor: default;
}


/* ÍCONE */

.video-folder-icon {
  display: block;

  font-size: 48px;
  line-height: 55px;

  margin-bottom: 5px;

  user-select: none;
}


/* NOME */

.video-folder-name {
  padding: 2px 4px;

  text-align: center;
  line-height: 1.2;

  user-select: none;
}


/* HOVER */

.video-folder:hover {
  border: 1px dotted #808080;
}


/* SELEÇÃO */

.video-folder.selected .video-folder-name {
  background: #000080;
  color: #ffffff;
}


/* PROIBIDO */

.video-folder-locked .video-folder-name {
  font-weight: bold;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .videos-content {
    min-height: 400px;
    padding: 15px 8px;
  }

  .videos-folder-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 10px;
  }

  .video-folder {
    width: 100%;
  }

}

/* =========================================
   NAVEGAÇÃO DO VIDEOS.EXE
   ========================================= */

.videos-back {
  width: 28px;
  height: 24px;

  padding: 0;

  font-family: inherit;
  font-size: 17px;
  font-weight: bold;

  cursor: pointer;
}

.videos-back:disabled {
  color: #808080;
  cursor: default;
}


.videos-folder-view {
  width: 100%;
  min-height: 390px;
}


.videos-empty {
  width: 100%;

  padding-top: 100px;

  text-align: center;
  color: #808080;
}


.videos-empty-icon {
  display: block;

  margin-bottom: 8px;

  font-size: 42px;
}


.videos-empty p {
  margin: 0;
}

/* =========================================
   🎬 JANELAS FLUTUANTES - PROIBIDÕES
   ========================================= */

.videos-content {
  position: relative;
}


.video-floating-window {

  position: absolute;

  width: min(560px, 90%);

  left: 50%;
  top: 40px;

  transform: translateX(-50%);

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;

  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  padding: 2px;

  box-sizing: border-box;
}


.video-floating-titlebar {

  min-height: 26px;

  background: #000080;
  color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  padding: 3px 4px 3px 7px;

  font-weight: bold;

  cursor: move;
}


.video-floating-titlebar span {

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;
}


.video-floating-close {

  width: 24px;
  height: 22px;

  flex-shrink: 0;

  padding: 0;

  background: #c0c0c0;
  color: black;

  border-top: 2px solid white;
  border-left: 2px solid white;

  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;

  font-weight: bold;

  cursor: pointer;
}


.video-floating-content {

  padding: 5px;

  background: #000;
}


.proibido-video {

  display: block;

  width: 100%;
  height: auto;

  background: black;
}

/* =========================================
   ARQUIVOS DA PASTA PROIBIDO
   ========================================= */

.proibido-lista {
  display: grid;

  grid-template-columns:
    repeat(auto-fill, 125px);

  gap: 28px 24px;

  align-items: start;
  justify-content: start;
}


.proibido-arquivo {
  width: 125px;
  min-height: 100px;

  padding: 5px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  background: transparent;
  border: 1px solid transparent;

  font-family: Arial, sans-serif;
  font-size: 11px;

  cursor: default;
}


/* ÍCONE DO VÍDEO */

.proibido-icone {
  display: block;

  margin-bottom: 6px;

  font-size: 43px;
  line-height: 48px;

  user-select: none;
}


/* NOME DO ARQUIVO */

.proibido-nome {
  max-width: 120px;

  padding: 2px 3px;

  text-align: center;
  line-height: 1.2;

  overflow-wrap: anywhere;

  user-select: none;
}


/* HOVER */

.proibido-arquivo:hover {
  border: 1px dotted #808080;
}


/* SELECIONADO */

.proibido-arquivo.selected .proibido-nome {
  background: #000080;
  color: white;
}


/* MOBILE */

@media (max-width: 700px) {

  .proibido-lista {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 22px 8px;
  }

  .proibido-arquivo {
    width: 100%;
  }

}

/* =========================================
   PLAYLISTS - VIDEOS.EXE
   ========================================= */

.videos-playlist-view {
  width: 100%;
}


.videos-playlist-title {
  margin-bottom: 8px;
  padding: 5px 7px;

  background: #c0c0c0;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;

  font-size: 12px;
  font-weight: bold;
}


/* ÁREA REBAIXADA DO PLAYER */

.videos-playlist-player {
  width: 100%;

  background: #000;

  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  box-sizing: border-box;

  overflow: hidden;
}


/* YOUTUBE */

.videos-playlist-player iframe {
  display: block;

  width: 100%;
  aspect-ratio: 16 / 9;

  border: 0;
}


/* MOBILE */

@media (max-width: 700px) {

  .videos-playlist-title {
    font-size: 11px;
  }

}

/* =========================================
   ARQUIVOS DO YOUTUBE
   ========================================= */

.youtube-arquivos {
  display: grid;
  grid-template-columns: repeat(auto-fill, 125px);
  gap: 28px 24px;

  align-items: start;
  justify-content: start;

  width: 100%;
}


.youtube-arquivo {
  width: 125px;
  min-height: 100px;

  padding: 5px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  box-sizing: border-box;

  color: #000;
  text-decoration: none;

  background: transparent;
  border: 1px solid transparent;

  font-family: Arial, sans-serif;
  font-size: 11px;

  cursor: pointer;
}


.youtube-arquivo:hover {
  border: 1px dotted #808080;
}


.youtube-arquivo:focus .youtube-arquivo-nome {
  background: #000080;
  color: white;
}


.youtube-arquivo-icone {
  display: block;

  margin-bottom: 6px;

  font-size: 43px;
  line-height: 48px;

  user-select: none;
}


.youtube-arquivo-nome {
  max-width: 120px;

  padding: 2px 3px;

  text-align: center;
  line-height: 1.2;

  overflow-wrap: anywhere;

  user-select: none;
}


/* MOBILE */

@media (max-width: 700px) {

  .youtube-arquivos {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 22px 8px;
  }


  .youtube-arquivo {
    width: 100%;
  }

}

/* ========================================
   HISTÓRIA DO OTASING
   ======================================== */

.otasing-history {
  padding: 8px;
}


/* ========================================
   ARQUIVOS PRINCIPAIS
   LEIA-ME, OTALOUCOS, NASCE O OTASING...
   ======================================== */

.otasing-history-file {
  margin-bottom: 6px;

  border: 2px solid #808080;
  background: #c0c0c0;
}


/* BOTÃO / NOME DO ARQUIVO */

.history-file-button {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 7px;

  padding: 7px 8px;

  border: 0;
  background: #c0c0c0;

  font: inherit;
  text-align: left;

  cursor: pointer;
}

.history-file-button:hover {
  background: #000080;
  color: white;
}

.history-file-icon {
  flex: 0 0 auto;
}

.history-file-button span:nth-child(2) {
  flex: 1;

  font-weight: bold;
}

.history-file-arrow {
  margin-left: auto;
}


/* CONTEÚDO DO ARQUIVO FECHADO */

.history-file-body {
  display: none;

  padding: 14px;

  border-top: 2px solid #808080;

  background: #ffffff;
  color: #111;
}


/* CONTEÚDO DO ARQUIVO ABERTO */

.otasing-history-file.open > .history-file-body {
  display: block;
}


/* TÍTULOS */

.history-file-body h2 {
  margin-top: 0;

  font-size: 18px;
}


/* PARÁGRAFOS */

.history-file-body p {
  line-height: 1.5;
}


/* ========================================
   ÁRVORE DE ARQUIVOS E PASTAS
   ======================================== */

.history-tree-folder,
.history-tree-file,
.history-tree-folder *,
.history-tree-file * {
  box-sizing: border-box;
}


/* ========================================
   PASTAS
   ======================================== */

.history-tree-folder {
  width: 100%;

  margin: 8px 0;
}


/* BOTÃO DA PASTA */

.history-folder-button {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 5px;

  padding: 5px 7px;

  border: 0;
  background: transparent;

  font: inherit;
  font-weight: bold;
  text-align: left;

  cursor: pointer;
}

.history-folder-button:hover {
  background: #000080;
  color: white;
}


/* SETINHA */

.history-folder-arrow {
  width: 14px;

  flex: 0 0 14px;
}


/* ÍCONE */

.history-folder-icon {
  flex: 0 0 auto;
}


/* CONTEÚDO DA PASTA FECHADA */

.history-tree-folder > .history-folder-body {
  display: none;

  margin-left: 14px;
  padding: 8px 0 4px 12px;

  border-left: 1px dotted #808080;
}


/* CONTEÚDO DA PASTA ABERTA */

.history-tree-folder.open > .history-folder-body {
  display: block;
}


/* ========================================
   ARQUIVOS TXT DENTRO DAS PASTAS
   ======================================== */

.history-tree-file {
  width: 100%;

  margin: 4px 0;
}


/* BOTÃO DO TXT */

.history-memory-button {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 5px;

  padding: 5px 7px;

  border: 0;
  background: transparent;

  font: inherit;
  text-align: left;

  cursor: pointer;
}

.history-memory-button:hover {
  background: #000080;
  color: white;
}


/* SETINHA DO TXT */

.history-memory-arrow {
  width: 14px;

  flex: 0 0 14px;
}


/* CONTEÚDO DO TXT FECHADO */

.history-memory-body {
  display: none;

  margin: 3px 0 8px 26px;
  padding: 8px 12px;

  border: 1px solid #808080;

  background: white;
}


/* CONTEÚDO DO TXT ABERTO */

.history-tree-file.open > .history-memory-body {
  display: block;
}


/* ========================================
   PASTAS DENTRO DE PASTAS
   ======================================== */

.history-folder-body .history-tree-folder {
  margin-top: 6px;
}


/* ========================================
   CHANTILLADIES
   ======================================== */

.chantilladies-folder > .history-folder-body {
  padding-right: 8px;
}


/* LOGO */

.chantilladies-logo {
  display: block;

  width: auto;
  height: auto;

  max-width: min(280px, 100%);
  max-height: 220px;

  margin: 12px auto;

  object-fit: contain;
}


/* ARTES */

.chantilladies-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 420px;

  margin: 10px auto;

  object-fit: contain;
}


/* ========================================
   MÍDIA HISTÓRICA
   ======================================== */

.history-media-file {
  box-sizing: border-box;

  width: 100%;

  margin: 12px 0;
  padding: 8px;

  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid white;
  border-bottom: 2px solid white;

  background: #d4d0c8;

  overflow: hidden;
}


/* NOME DO ARQUIVO */

.history-media-name {
  margin-bottom: 8px;

  font-weight: bold;
}


/* DESCRIÇÃO */

.history-media-description {
  margin-top: 5px;
}


/* VÍDEO */

.history-video {
  display: block;

  width: 100%;
  height: auto;

  max-width: 560px;

  margin: 8px auto;

  background: black;
}


/* ÁUDIO */

.history-audio {
  display: block;

  width: 100%;
  max-width: 500px;

  margin: 8px auto;
}


/* ========================================
   MATERIAL NÃO LANÇADO
   ======================================== */

.unreleased-folder {
  margin-top: 14px;

  border: 1px solid #808080;

  background: #eeeeee;
}


/* CABEÇALHO */

.unreleased-folder > .history-folder-button {
  background: #d4d0c8;
}

.unreleased-folder > .history-folder-button:hover {
  background: #000080;
  color: white;
}


/* CONTEÚDO */

.unreleased-folder > .history-folder-body {
  margin-left: 0;

  padding: 10px;

  border-left: 0;
  border-top: 1px solid #808080;

  background: #f5f5f5;
}


/* ========================================
   AVISOS
   ======================================== */

.history-warning {
  display: inline-block;

  margin: 3px 0 10px;
  padding: 4px 7px;

  border: 1px solid #808080;

  background: #ffffcc;

  font-weight: bold;
}


/* ========================================
   INFORMAÇÕES DO ARQUIVO
   ======================================== */

.history-file-info {
  display: flex;
  flex-direction: column;
  gap: 3px;

  margin: 10px 0;
  padding: 8px;

  border: 1px solid #808080;

  background: white;
}


/* ========================================
   CITAÇÕES
   ======================================== */

.history-quote {
  margin: 12px 0;
  padding: 9px 11px;

  border-left: 4px solid #808080;

  background: #eeeeee;

  font-weight: bold;
}


/* ========================================
   OBSERVAÇÕES
   ======================================== */

.history-note {
  font-size: 12px;
  font-style: italic;
}


/* ========================================
   KKKKKKKKKKK
   sim, isso merece uma seção
   ======================================== */

.history-lol {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}


/* ========================================
   DESTAQUES DOS CAPÍTULOS
   ======================================== */

.history-highlight {
  padding: 8px;

  border: 1px solid #999;

  background: #eeeeee;

  font-weight: bold;
}


/* ========================================
   LINKS
   ======================================== */

.history-file-link {
  display: block;

  margin: 8px 0;
  padding: 6px;

  color: #000080;

  text-decoration: underline;
}

.history-file-link:hover {
  background: #000080;
  color: white;
}


/* ========================================
   SUBGRUPOS DO OTASING
   ======================================== */

.history-subgroups {
  margin: 14px 0;
}

.history-subgroup {
  margin: 8px 0;
  padding: 10px;

  border: 1px solid #999;

  background: #f2f2f2;
}

.history-subgroup > strong {
  display: block;

  margin-bottom: 5px;
}


/* ========================================
   FINAL DA HISTÓRIA
   ======================================== */

.history-command {
  margin-top: 18px;
  padding: 10px;

  background: black;
  color: #00ff00;

  font-family: "Courier New", monospace;
}

.history-ending {
  margin-top: 14px;

  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
