body {
  margin: 0;
  background: linear-gradient(135deg, #0b1b3a, #143a7b);
  color: white;
  font-family: Arial;
  text-align: center;
}

h1 {
  margin: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.card {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: blue;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.player {
  width: 90%;
  max-width: 900px;
  margin: 20px auto;
  aspect-ratio: 16/9;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.free {
  color: lightgreen;
}

.paid {
  color: red;
}
.stream-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer a {
  display: inline-block;
  margin-top: 8px;
}

.footer a:hover {
  text-decoration: underline;
}
.matches {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  border-collapse: collapse;
  background: #111827;
  border-radius: 10px;
  overflow: hidden;
}

.matches th, .matches td {
  padding: 10px;
  border-bottom: 1px solid #1f2937;
  text-align: center;
}

.matches th {
  background: #1f2937;
}

.matches tr:hover {
  background: #1a2238;
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.back {
  display: block;
  margin: 15px;
  color: #9ca3af;
}