.match-stat-card,
.match-info-card,
.match-day-block,
.match-empty-state,
.match-bottom-cta {
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 42, 73, 0.08);
  border: 1px solid rgba(9, 148, 125, 0.12);
}

.match-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.match-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(9, 148, 125, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.match-stat-card h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.6rem;
}

.match-stat-card p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

.match-info-card {
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}

.match-info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.match-info-card h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.match-info-card p {
  color: #6c757d;
  margin: 0;
}

.match-day-block {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.match-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(9, 148, 125, 0.08);
  border-bottom: 1px solid rgba(9, 148, 125, 0.12);
}

.match-day-header h2 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.match-day-header span {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 600;
}

.match-schedule-table thead th {
  background: var(--surface-color);
  color: var(--heading-color);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(16, 42, 73, 0.08);
  white-space: nowrap;
}

.match-schedule-table tbody td {
  vertical-align: middle;
  padding: 1rem 0.85rem;
}

.kickoff-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent-color);
  white-space: nowrap;
}

.package-pill,
.status-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-pill.vip {
  background: rgba(9, 148, 125, 0.15);
  color: var(--accent-color);
}

.package-pill.ordinary {
  background: rgba(16, 42, 73, 0.1);
  color: var(--heading-color);
}

.status-pill.pending {
  background: rgba(255, 193, 7, 0.18);
  color: #b78103;
}

.match-empty-state {
  text-align: center;
  padding: 3rem 2rem;
}

.match-empty-state i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.match-empty-state h3 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.match-empty-state p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.match-bottom-cta {
  margin-top: 2rem;
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.match-bottom-cta h3 {
  color: var(--heading-color);
  margin-bottom: 0.35rem;
}

.match-bottom-cta p {
  color: #6c757d;
  margin: 0;
}

.match-cta-btn,
.match-cta-btn-outline {
  border-radius: 10px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.match-cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.match-cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  color: var(--contrast-color);
}

.match-cta-btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.match-cta-btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .match-day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
