.parlay-stats-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 150, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #020b1f 0%, #061a3a 45%, #0b4fa3 100%);
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.parlay-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.parlay-stats-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(37, 168, 255, 0.15);
  border: 1px solid rgba(80, 190, 255, 0.45);
  color: #7dd3ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-badge.small {
  margin-bottom: 8px;
}

.parlay-stats-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.parlay-stats-header p {
  color: #c7dcff;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.parlay-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(118, 199, 255, 0.22);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(115, 205, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #006dff, #00c2ff);
  font-size: 26px;
  margin-bottom: 18px;
}

.stat-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  color: #7dd3ff;
  margin-bottom: 10px;
}

.stat-card p {
  color: #c6d9ff;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

.match-history-box {
  background: rgba(2, 15, 40, 0.74);
  border: 1px solid rgba(104, 190, 255, 0.28);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.history-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}

.history-title h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
}

.history-filter {
  min-width: 170px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(120, 205, 255, 0.4);
  background: #061a3a;
  color: #ffffff;
  outline: none;
  cursor: pointer;
}

.history-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.history-table th,
.history-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(130, 200, 255, 0.15);
}

.history-table th {
  color: #7dd3ff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.history-table td {
  color: #e8f2ff;
  font-size: 15px;
}

.status {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status.win {
  color: #b9ffdf;
  background: rgba(0, 210, 120, 0.16);
  border: 1px solid rgba(0, 255, 150, 0.35);
}

.status.lose {
  color: #ffd0d0;
  background: rgba(255, 60, 80, 0.16);
  border: 1px solid rgba(255, 90, 110, 0.35);
}

@media (max-width: 992px) {
  .parlay-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .parlay-stats-section {
    padding: 64px 16px;
  }

  .parlay-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .match-history-box {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .history-filter {
    width: 100%;
  }

  .history-table th,
  .history-table td {
    padding: 14px 12px;
    font-size: 14px;
  }
}