.sidebar {
  width: 220px;

  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 10px;

  background: #ffffff;

  border: 1px dashed #000000;

  color: rgb(90, 54, 69);

  font-family: "Dogica", monospace;

  image-rendering: pixelated;

  position: relative;
}

/* =========================
   HEADER / NAV TITLE BOX
========================= */
.profile-card {
  padding: 6px;

  text-align: center;
  color: rgb(195, 255, 245);

  background: #f7629b;


  position: relative;
}

.sidebar-divider {
  width: 100%;

  image-rendering: pixelated;

  display: block;

  margin: 6px 0;
}

/* =========================
   LINKS STYLE (2000s buttons)
========================= */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 6px;

  background: #ffffff;
}

.nav-links a {
  font-size: 10px;

  text-decoration: none;
  color: rgb(184, 37, 62);

  padding: 5px 6px;

  border: 1px dashed #000000;

  background: #ffffff;

  display: block;

  image-rendering: pixelated;
}

/* efecto click viejo */
.nav-links a:active {
  transform: translate(1px, 1px);
  background: #b8b7b7;
}

/* hover simple estilo retro */
.nav-links a:hover {
  background: #fffeaf;
}

.sidebar-box {
  border: 1px dashed #000000;
  background: #ffffff;
  padding: 8px;
}

.sidebar-box-title {
  font-size: 9px;
  background: #ffceea;
  padding: 2px 6px;
  display: inline-block;
  border: 1px solid #000;
  margin-bottom: 6px;
  color: #000;
  text-transform: lowercase;
}

.sidebar-avatar {
  width: 100%;
  display: block;
  margin: 6px 0;
  image-rendering: pixelated;
  padding: 3px;
  background: #fff;
}

.sidebar-box p {
  margin: 4px 0;
  font-size: 10px;
  line-height: 1.3;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-links a {
  font-size: 10px;
  text-decoration: none;
  color: rgb(184, 37, 62);
  padding: 4px 6px;
  border: 1px dashed #000000;
  background: #ffffff;
  display: block;
}

.sidebar-links a:hover {
  background: #fffeaf;
}

.favicon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.favicon-grid .favicon {
  width: 18px;
  height: 18px;
}

.site-warning {
  margin-top: 6px;

  font-size: 9px;
  line-height: 1.4;
  letter-spacing: -1.5px;

  color: #3a0030;

  background: #ffffff;

  border: 1px dotted #000000;

  padding: 6px;

  font-family: "Dogica", monospace;

  image-rendering: pixelated;

  opacity: 0.9;

  position: relative;
}

/* título estilo “old internet box” */
.site-warning-title {
  font-size: 10px;

  text-align: center;

  margin-bottom: 4px;

  padding: 2px 4px;

  background: #cf9cff;

  border: 1px dashed #000000;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #000000;
}