body {
  background-color: #0a0a1a;
}

.sportsbook-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(45, 21, 64, 0.7), rgba(45, 21, 64, 0.7)),
    url("../assets/background.png") no-repeat center 20%;
  background-size: cover;
}

.sportsbook-hero h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.sportsbook-content {
  padding: 100px 0;
  background-color: #ffffff;
  opacity: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  animation: contentFadeIn 1s ease-out 0.3s forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sports-image {
  animation: fadeInLeft 1s ease-out 0.6s both;
}

.sports-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.content-text {
  padding-right: 40px;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.content-text h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #2d1540;
  margin-bottom: 40px;
  line-height: 1.3;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2d1540;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  animation: fadeInUp 0.5s ease-out both;
}

.features-list li:nth-child(1) {
  animation-delay: 1.4s;
}
.features-list li:nth-child(2) {
  animation-delay: 1.6s;
}
.features-list li:nth-child(3) {
  animation-delay: 1.8s;
}
.features-list li:nth-child(4) {
  animation-delay: 2s;
}
.features-list li:nth-child(5) {
  animation-delay: 2.2s;
}
.features-list li:nth-child(6) {
  animation-delay: 2.4s;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d1540;
  font-size: 24px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-text {
    padding-right: 0;
    text-align: center;
  }

  .features-list li {
    padding-left: 0;
  }

  .features-list li::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .sportsbook-hero {
    height: 300px;
    margin-top: 76px;
  }

  .sportsbook-hero h1 {
    font-size: 36px;
  }

  .sportsbook-content {
    padding: 60px 0;
  }

  .content-text h2 {
    font-size: 28px;
  }

  .features-list li {
    font-size: 20px;
  }
}
