body {
  background: black;
  color: #ccc;
  font-family: 'Futura Extra Bold', sans-serif;
  text-align: center;
  padding-top: 80px;
  user-select: none;
}

/* Encabezado */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(30, 30, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1100;
}

.logo {
  max-height: 50px;
  cursor: pointer;
  animation: flotar 3s ease-in-out infinite;
  user-select: none;
}

@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fecha {
  color: cyan;
  font-weight: bold;
  text-align: center;
}

.fecha .numero-fecha {
  font-size: 1.8rem;
  line-height: 1;
}

.fecha .mes-fecha {
  font-size: 0.9rem;
  line-height: 1;
}

/* Menú hamburguesa */
.menu-btn {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1200;
}

.menu-btn .barra {
  display: block;
  height: 4px;
  background-color: cyan;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Transformación hamburguesa a X */
.menu-btn.open .barra:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.open .barra:nth-child(2) {
  opacity: 0;
}
.menu-btn.open .barra:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu lateral */
.menu-hamburguesa {
  position: fixed;
  top: 60px;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  width: 250px;
  max-width: 80vw;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1150;
  padding: 1.5rem;
  border-radius: 0 0 0 10px;
  text-align: left;
}

.menu-hamburguesa.open {
  transform: translateX(0);
}

.menu-hamburguesa ul {
  list-style: none;
}

.menu-hamburguesa li {
  margin-bottom: 1.5rem;
}

.menu-hamburguesa a {
  color: cyan;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.3rem;
  user-select: none;
}

.menu-hamburguesa a:hover {
  color: white;
}
.logo-equipo {
  width: 180px;
  animation: flotar 3s ease-in-out infinite;
  margin: 0 auto 10px;
  display: block;
}

.nombre-equipo {
  font-size: 2.5rem;
  font-weight: 800;
  color: cyan;
  animation: brillo 2s infinite;
  margin-bottom: 20px;
}

@keyframes brillo {
  0%, 100% { text-shadow: 0 0 5px cyan; }
  50% { text-shadow: 0 0 20px white; }
}

@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.info-equipo {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.vs {
  font-size: 2rem;
  font-weight: bold;
  color: cyan;
  margin: 20px 0 10px;
}

.logo-oponente {
  width: 130px;
  animation: flotar 3s ease-in-out infinite;
  display: block;
  margin: 0 auto 30px;
}

.info-plus {
  font-size: 1.2rem;
  color: cyan;
  margin-bottom: 30px;
}

.apuestas {
  background: rgba(20,20,20,0.7);
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto 60px;
  color: cyan;
  font-weight: bold;
}

.apuestas span {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}
/* Footer */
footer {
  background: rgba(30, 30, 30, 0.9);
  padding: 20px 1rem;
  color: cyan;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

footer p {
  font-size: 0.9rem;
}

footer a {
  color: cyan;
  text-decoration: none;
  font-weight: 700;
}

footer a:hover {
  text-decoration: underline;
}

footer img {
  max-width: 100px;
  border-radius: 8px;
}