body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  overflow: hidden;
}

/* APP */
.app {
  width: 100vw;
  height: 100vh;
}

/* NAV */
nav {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: white;
  border-bottom: 1px solid #ddd;
}

button {
  border: none;
  padding: 8px 16px;
  border-radius: 12px;
  background: #e0e7ff;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #c7d2fe;
}

/* PANTALLAS */
.pantalla {
  display: none;
  height: calc(100vh - 60px);
  padding: 20px;
}

.activa {
  display: block;
}

/* PERFIL */
.perfil {
  text-align: center;
}

.perfil img {
  width: 80px; /* 🔥 más pequeña */
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ARTICULOS */
.lista {
  height: 100%;
  overflow-y: auto;
  padding-right: 5px;
}

/* SCROLL BONITO */
.lista::-webkit-scrollbar {
  width: 6px;
}

.lista::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 10px;
}

.articulo {
  display: flex;
  gap: 12px;
  background: white;
  padding: 12px;
  border-radius: 15px;
  margin-bottom: 12px;
  align-items: flex-start;
}

/* 🔥 IMAGEN PEQUEÑA tipo feed */
.articulo img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* TEXTO */
.articulo-contenido {
  flex: 1;
}

.articulo h3 {
  margin: 0;
  font-size: 16px;
}

.articulo small {
  color: #777;
  font-size: 12px;
}

.articulo p {
  font-size: 14px;
  margin: 6px 0;
}

.articulo a {
  font-size: 13px;
  color: #6366f1;
  text-decoration: none;
}