.s-why .l-base {
  position: absolute;
  inset: 0;
  background: hsl(222 26% 6%);
}

.s-why .l-dots {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.s-why .l-bloom1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10rem;
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.07);
  filter: blur(140px);
  pointer-events: none;
}

.s-why .l-bloom2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.025);
  filter: blur(120px);
  pointer-events: none;
}

.s-why .l-topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, hsl(222 24% 5%), transparent);
}

.s-why .l-botfade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, hsl(222 24% 5%), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.why-head {
  margin-bottom: 2.5rem;
}

.why-head h2 {
  margin-top: 0.75rem;
  line-height: 1.25;
}

.why-head p {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 1.25rem;
}

.why-item + .why-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-item .ic {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  transition: background 0.2s ease;
}

.why-item:hover .ic {
  background: hsl(var(--primary) / 0.15);
}

.why-item .ic .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.why-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.odds {
  position: relative;
}

.odds .glow {
  position: absolute;
  inset: 2rem;
  background: hsl(var(--primary) / 0.1);
  filter: blur(60px);
  border-radius: 9999px;
}

.odds-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: hsl(222 22% 8%);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.odds-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.odds-head .l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.odds-head .l .icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.odds-head .l span {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: hsl(var(--foreground));
}

.odds-head .live {
  font-size: 11px;
  font-weight: 700;
  color: hsl(var(--foreground));
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.odds-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.odds-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.odds-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.odds-row .match {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.9);
}

.odds-row .sport {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.125rem;
}

.odds-row .picks {
  display: flex;
  gap: 0.5rem;
}

.odds-row .pick {
  width: 3.5rem;
  height: 2.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.15s ease;
}

.odds-row .pick.p1 {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}

.odds-row .pick.p1:hover {
  background: hsl(var(--primary) / 0.2);
}

.odds-row .pick.p2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: hsl(var(--muted-foreground));
}

.odds-row .pick.p2:hover {
  background: rgba(255, 255, 255, 0.07);
}

.odds-foot {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.odds-foot .a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.odds-foot .b {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

