/* ======== GERAL ======== */

body {
  margin: 0;
  background: #0a000a;
  color: #ffccff;
  font-family: "VT323", monospace;
  font-size: 22px;
  image-rendering: pixelated;
}

/* ======== TOPO ======== */

.top-banner {
  text-align: center;
  padding: 25px;
  background: #1a001a;
  border-bottom: 3px solid #ff66cc;
  box-shadow: 0 0 15px #ff33aa88;
}

.top-banner h1 {
  font-size: 48px;
  color: #ff99ee;
  text-shadow: 0 0 8px #ff00cc;
}

.top-banner p {
  color: #ffbdf5;
}

/* ======== LAYOUT ======== */

.layout {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 30px 10px;
  gap: 25px;
}

/* ======== SIDEBAR ======== */

.sidebar {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ======== CONTENT ======== */

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ======== BOX (estilo dimden) ======== */

.box {
  background: #1a001a;
  border: 2px solid #ff66cc;
  box-shadow: 0 0 10px #ff33aa55;
  padding: 15px;
  color: #ffccff;
}

.box h2 {
  margin-top: 0;
  color: #ff88dd;
  text-shadow: 0 0 6px #ff33aa;
  font-size: 28px;
}

/* ======== LINKS ======== */

ul {
  list-style: none;
  padding-left: 5px;
}

a {
  color: #ff99dd;
  text-decoration: none;
  text-shadow: 0 0 3px #ff55cc;
}

a:hover {
  color: #ffffff;
}

/* ======== POSTS ======== */

.post {
  border-left: 3px solid #ff55bb;
  padding-left: 10px;
  margin-bottom: 12px;
}

.date {
  color: #ff77dd;
}

/* ======== IMAGENS ======== */

.preview {
  width: 100%;
  border: 2px solid #ff66cc;
}

/* ======== RESPONSIVO ======== */

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
    align-items: center;
  }

  .sidebar,
  .content {
    width: 95%;
  }
}
