
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

h1, h2 {
  color: #ffd700;
}

p {
  font-size: 16px;
  line-height: 1.6;
}


.cabecera {
  background-color: #000;
  color: #ffd700;
  padding: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}


.menu {
  background-color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 20px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

.nav a.activo {
  background-color: #222;
  color: #ffd700;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}


.contenedor-principal,
.contenedor {
  max-width: 1000px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}


table.novedades {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table.novedades th,
table.novedades td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
}

table.novedades th {
  background-color: #333;
  color: #ffd700;
}

.slider img,
.alineacion-img,
.estadio-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.contenedor-principal > div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contenedor-principal > div > div {
  text-align: center;
  background-color: #222;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }

  .contenedor-principal > div {
    flex-direction: column;
  }
}


