body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: white;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

body::after {
  content: '';
  background: url('https://www.sdpnoticias.com/resizer/v2/QFKK6VJRHVATPHF2Z2EFDN7UKM.jpg?smart=true&auth=651e950544076d865994f4164bd5ca02dcdded8f9aac85363fcba6b37158a3a7&width=1200&height=675') no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  text-align: center;
}

.logo {
  height: 180px;
  margin-bottom: 10px;
}

.titulo {
  background-color: rgba(16, 10, 46, 0.6);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.8rem;
  color: #00ffcc;
}

.liga-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.tabla-principal, .tabla-goleadores {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 600px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.tabla-principal h2, .tabla-goleadores h2 {
  text-align: center;
  color: #00bfff;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: center;
}

th {
  background-color: rgba(16, 10, 46, 0.6);
}

tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dg-pos { color: #00ff00; }
.dg-neg { color: #ff4444; }
.dg-zero { color: #ffffff; }

@media (max-width: 768px) {
  .liga-container {
    flex-direction: column;
  }
}
