body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f1f1f1;
  color: #333;
}
header {
  background: #1e3a8a;
  color: white;
  padding: 1rem;
  text-align: center;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}
.teams {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  color: #aaa;
}
.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.breadcrumb li:last-child {
  color: #555;
}
.team {
  text-align: center;
  flex: 1 1 40%;
}
.team img {
  max-width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
}
.vs {
  font-size: 2rem;
  margin: 0 1rem;
}
.match-info {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
h2 {
  color: #1e3a8a;
}
.match-time {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;      
  background: #fff;
  margin-top: 0.5rem;      
}
.watch-free {
  text-align: center;    
  margin: 1rem;
}   
.watch-button {
  display: inline-block;
  padding: 24px 66px;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
}
.watch-button:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.5);
}
@media (max-width: 600px) {
  .teams {
    flex-direction: column;
  }
  .vs {
    margin: 1rem 0;
  }
}

.matches {
    padding: 20px;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.match-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.match-card:hover {
    transform: scale(1.03);
}

.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.team2 {
    margin: 0 20px;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.team-name {
    font-weight: bold;
    font-size: 12px;
    width: 50px;
}

.versus {
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

.match-info {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.watch-button2 {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.watch-button2:hover {
    background-color: #0056b3;
}



.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.tab-button {
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  background-color: #ddd;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}
.tab-button.active {
  background-color: #555;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.match {
  margin-bottom: 15px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.pagination a, .pagination strong {
  padding: 8px 14px;
  font-size: 16px;
  border-radius: 6px;
  background-color: #e0e0e0;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: 0.2s;
}

.pagination a:hover {
  background-color: #d0d0d0;
}

.pagination strong {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-color: #007bff;
}

.match-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.match-list li {
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.match-list a {
  color: #007bff;
  text-decoration: none;
}

.match-list a:hover {
  text-decoration: underline;
}



