.parlay-odds-match {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(43,198,255,.20), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(0,102,255,.30), transparent 34%),
    linear-gradient(135deg, #020b18 0%, #041b3f 45%, #062d72 100%);
  color: #fff;
}

.parlay-odds-match::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
}

.odds-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
}

.odds-heading {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.odds-badge,
.panel-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(111,211,255,.35);
  color: #8fe1ff;
  font-size: 13px;
  font-weight: 800;
}

.odds-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff 0%, #c7ecff 60%, #5ed4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.odds-heading p {
  color: #d9ecff;
  font-size: 16px;
  line-height: 1.85;
}

.odds-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}

.odds-table-card,
.odds-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border: 1px solid rgba(138,214,255,.18);
  box-shadow: 0 18px 55px rgba(0,25,80,.32);
  backdrop-filter: blur(14px);
}

.odds-table-card {
  padding: 28px;
}

.odds-table-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.odds-table-head h3 {
  font-size: 26px;
  color: #fff;
}

.odds-table-head span {
  padding: 8px 14px;
  border-radius: 999px;
  color: #8fe1ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(111,211,255,.24);
  font-size: 12px;
  font-weight: 900;
}

.odds-table {
  display: grid;
  gap: 12px;
}

.odds-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr .6fr .6fr .6fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: #d9ecff;
  font-size: 14.5px;
}

.odds-title {
  background: linear-gradient(135deg, rgba(49,201,255,.20), rgba(0,102,255,.18));
  color: #fff;
  font-weight: 900;
}

.odds-row strong {
  color: #70d8ff;
}

.odds-row em {
  display: inline-flex;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #70d8ff;
  background: rgba(49,201,255,.18);
  border: 1px solid rgba(111,211,255,.35);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.odds-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(0,102,255,.34), rgba(49,201,255,.13)),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border-color: rgba(111,211,255,.38);
}

.odds-panel-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -100px;
  background: rgba(76,207,255,.24);
  border-radius: 50%;
  filter: blur(34px);
}

.odds-panel h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.odds-panel p {
  position: relative;
  z-index: 1;
  color: #d9ecff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.odds-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.odds-list li {
  display: flex;
  gap: 12px;
  color: #d9ecff;
  font-size: 15px;
}

.odds-list span {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #31c9ff, #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.odds-cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.odds-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s ease;
}

.odds-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #31c9ff, #0066ff);
}

.odds-btn.secondary {
  color: #eef8ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.24);
}

.odds-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.12);
}

@media (max-width: 992px) {
  .odds-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .parlay-odds-match {
    padding: 60px 16px;
  }

  .odds-heading h2 {
    font-size: 31px;
  }

  .odds-table-card,
  .odds-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .odds-table-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .odds-row {
    grid-template-columns: 1fr;
  }

  .odds-title {
    display: none;
  }
}