/* ===== Fondo general ===== */
body {
  background-color: #ff0f83;
  color: #fff;
  font-family: "Comic Sans MS", cursive;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* ===== Header ===== */
.header {
  background-image: url('zebrapink.png');
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #000;
  padding: 20px;
  box-shadow: 0 0 10px #ffccff;
}

img.glitter {
  width: 100%;
  max-width: 400px;
  border: 3px groove #ff99cc;
  border-radius: 10px;
  transition: transform 0.3s, filter 0.3s;
}
img.glitter:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px #ff99cc);
}

/* ===== Navegación ===== */
.nav {
  background-color: #000;
  padding: 12px;
  border-top: 3px solid #ff66b2;
  border-bottom: 3px solid #ff66b2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.nav a {
  color: #ff99cc;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(255, 102, 178, 0.2);
  cursor: pointer;
  transition: 0.3s;
}
.nav a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ff99cc;
  background-color: rgba(255, 102, 178, 0.4);
}

/* ===== Contenido ===== */
.content {
  background-color: #1a1a1a;
  width: 90%;
  margin: 20px auto;
  border: 3px ridge #ff99cc;
  padding: 20px;
  box-shadow: 0 0 20px #ff66b2;
  border-radius: 10px;
}

.content h2 {
  color: #ffccff;
  text-shadow: 0 0 5px #ff99cc;
}

/* ===== Blog ===== */
.entrada-blog {
  margin-top: 30px;
  background-color: #fff5fa;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #ff69b4;
}

.entrada-blog h3 {
  margin-top: 0;
}

/* Fecha de las entradas */
.entrada-blog .date {
  font-size: 12px;
  color: #ff99cc;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Imagen en entradas */
.entrada-blog img {
  width: 100%;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 0 10px #ff99cc;
}

/* Contenedor de video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 10px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background-color: #ff66b2;
  border-top: 4px solid #000;
  padding: 10px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

/* ===== Marquee ===== */
.marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
  color: #ffccff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 0 5px #ff99cc;
  margin-top: 10px;
}
@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== Generales ===== */
.hidden { display: none; }

iframe {
  width: 100%;
  max-width: 100%;
  min-height: 300px;
  border: 3px groove #ff99cc;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  body { font-size: 14px; }
  .content h2 { font-size: 18px; }
  .nav { flex-direction: column; }
  .nav a { margin: 3px 0; }
}
