/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== BASE ==== */
body {
  background: linear-gradient(to bottom, #000000, #1a0000);
  color: #e0d5ce;
  font-family: "MS Gothic", "Verdana", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px;
  border: 2px solid #660000;
  text-shadow: 1px 1px 2px #000;
}

/* ==== ENCABEZADO PRINCIPAL ==== */
header {
  background: #220000;
  border: 2px solid #b30000;
  padding: 10px;
  text-align: center;
  color: #ffcccc;
  box-shadow: inset 0 0 8px #800000, 0 0 6px #330000;
}

header h1 {
  font-family: "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff4d4d;
  text-shadow: 2px 2px 4px #000;
}

/* ==== NAVEGACIÓN ==== */
nav {
  background: #111;
  border: 1px solid #b30000;
  padding: 6px;
  text-align: center;
  font-size: 13px;
}

nav a {
  color: #ff4d4d;
  text-decoration: none;
  padding: 0 6px;
}

nav a:hover {
  color: #fff;
  background: #b30000;
  text-shadow: 0 0 6px #fff;
}

/* ==== ESTRUCTURA PRINCIPAL ==== */
main {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

main > section {
  flex: 2;
  background: #1a0000;
  border: 1px solid #660000;
  padding: 8px;
}

main > section:last-child {
  flex: 1;
  background: #0d0d0d;
  border: 1px solid #330000;
  color: #cfcfcf;
}

/* ==== ARTÍCULOS ==== */
article {
  background: #0d0000;
  border: 1px solid #990000;
  padding: 8px;
  margin-bottom: 10px;
  box-shadow: 0 0 6px #1a0000 inset;
}

article header h3 {
  font-family: "MS Gothic", monospace;
  font-size: 16px;
  color: #ff3333;
  border-bottom: 1px solid #660000;
  margin-bottom: 5px;
}

/* ==== TEXTO ==== */
p {
  background: #1a0000;
  border: 1px dashed #660000;
  padding: 6px;
  margin-top: 5px;
}

/* ==== ASIDE ==== */
aside {
  background: #1c0f0f;
  border: 1px solid #990000;
  padding: 6px;
  color: #ff9999;
  font-size: 13px;
  margin-top: 8px;
}

/* ==== FOOTER ==== */
footer {
  background: #150000;
  border: 1px solid #660000;
  padding: 8px;
  text-align: center;
  color: #ffcccc;
  margin-top: 10px;
  font-size: 12px;
}

/* ==== GALERÍA ==== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  border: 2px solid #990000;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff0000;
}

/* ==== DETALLES ESTÉTICOS ==== */
hr {
  border: none;
  border-top: 1px dashed #660000;
  margin: 10px 0;
}

a {
  cursor: crosshair;
}

marquee {
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 800px) {
  main {
    flex-direction: column;
  }
}