.live-matches-section {
  background: #02132d;
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #4ea1ff;
  letter-spacing: 2px;
  font-weight: 600;
}

.section-title h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin: 15px 0;
}

.section-title p {
  color: #a7b8d8;
  max-width: 700px;
  margin: auto;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.match-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: .3s;
}

.match-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,102,255,.25);
}

.match-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 30px;
  background: #ff3333;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}

.upcoming {
  background: #2563eb;
}

.completed {
  background: #10b981;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}

.team h4 {
  color: #fff;
  margin-bottom: 8px;
}

.team span {
  color: #4ea1ff;
  font-size: 24px;
  font-weight: 700;
}

.vs {
  color: #4ea1ff;
  font-size: 22px;
  font-weight: 700;
}

.match-info {
  display: flex;
  justify-content: space-between;
  color: #a7b8d8;
  margin-bottom: 20px;
}

.match-footer {
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}

.score-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  font-weight: 600;
}

.score-btn:hover {
  color: #fff;
}

@media (max-width:991px) {
  .matches-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:991px) {
  .section-title h2 {
    font-size: 38px;
  }
}

.match-footer {
  margin-bottom: 25px;
}

.score-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  font-weight: 600;
}

