body {
  margin: 0;
  background-color: #0b0b0b;
  font-family: 'Cinzel', serif;
}

/* Navbar general */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #2b2b2b, #3a3a3a);
  padding: 15px 0;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo centrado */
.logo-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Corazón pixel-art */
.heart {
  width: 110px;
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px crimson);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.heart:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px red);
}

/* Texto del logo */
.brand {
  font-size: 1.9em;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #b8860b;
  letter-spacing: 1px;
}

/* Menú */
.menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin-left: 40px;
}

.menu a {
  text-decoration: none;
  color: #fff8dc;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #ffd700;
  transform: scale(1.05);
}

.menu a:hover::after {
  width: 100%;
}
