/* Estilo base */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(145deg, #222244, #444466);
  font-family: 'VT323', monospace;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Janela estilo Windows */
.window {
  background-color: #c0c0c0;
  border: 3px solid #fff;
  box-shadow: 0 0 20px #000;
  width: 600px;
  max-width: 90%;
  border-radius: 6px;
}

/* Barra de título */
.title-bar {
  background: linear-gradient(to right, #000080, #0000cd);
  color: white;
  padding: 10px;
  font-weight: bold;
  border-bottom: 2px solid #000;
  border-radius: 4px 4px 0 0;
}

/* Conteúdo */
.content {
  padding: 20px;
  background: #e0e0e0;
  color: #000;
}

/* Postagem */
.post {
  background: #ffffff;
  border: 2px dashed #aaa;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
  color: #000;
}

/* Botão retrô */
.retro-btn {
  background: linear-gradient(to bottom, #ff00ff, #cc00cc);
  color: white;
  padding: 10px 20px;
  border: 2px solid #880088;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 2px 2px 4px #444;
  transition: 0.2s;
}

.retro-btn:hover {
  background: linear-gradient(to bottom, #cc00cc, #990099);
}
