.stab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.stab:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.stab-active {
  background: #e50914 !important;
  border-color: #e50914 !important;
  color: white !important;
}

.spill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.spill:hover {
  background: rgba(255,255,255,0.09);
  color: white;
}

.spill-active {
  background: rgba(229,9,20,0.15) !important;
  border-color: rgba(229,9,20,0.4) !important;
  color: #e50914 !important;
}

.match-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color .2s;
}

.match-card:hover {
  border-color: rgba(229,9,20,0.3);
}

.match-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(229,9,20,0.15);
  border: 1px solid rgba(229,9,20,0.35);
  color: #e50914;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #e50914;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.match-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  letter-spacing: 2px;
  line-height: 1;
}

.match-team {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-align: center;
  max-width: 100px;
}

.match-league {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.standings-table th {
  color: #555;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.standings-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #ccc;
  text-align: center;
}

.standings-table td:first-child,
.standings-table th:first-child {
  text-align: left;
}

.standings-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.standings-table .rank-top3 {
  color: #e50914;
  font-weight: 800;
}

.sport-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
