.page-betting-products-tv-games {
  font-family: 'Arial', sans-serif;
  color: #0A244A;
  line-height: 1.6;
}

.page-betting-products-tv-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-products-tv-games__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-betting-products-tv-games__section--dark {
  background-color: #0A244A;
  color: #F0F0F0; /* Light grey for text on dark background */
}

.page-betting-products-tv-games__section--dark .page-betting-products-tv-games__section-title,
.page-betting-products-tv-games__section--dark .page-betting-products-tv-games__sub-title {
  color: #FFD700;
}

.page-betting-products-tv-games__section--dark .page-betting-products-tv-games__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-betting-products-tv-games__section--dark .page-betting-products-tv-games__link:hover {
  color: #FFF;
}

.page-betting-products-tv-games__section-title {
  font-size: 2.8em;
  color: #0A244A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-betting-products-tv-games__section-title--light {
  color: #FFD700;
}

.page-betting-products-tv-games__sub-title {
  font-size: 1.8em;
  color: #0A244A;
  margin-bottom: 20px;
}

.page-betting-products-tv-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-betting-products-tv-games__text--center {
  text-align: center;
}

.page-betting-products-tv-games__text--light {
  color: #F0F0F0;
}

.page-betting-products-tv-games__link {
  color: #0A244A;
  text-decoration: none;
  font-weight: bold;
}

.page-betting-products-tv-games__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-betting-products-tv-games__hero {
  background: linear-gradient(135deg, #0A244A 0%, #30547A 100%);
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-products-tv-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-betting-products-tv-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-betting-products-tv-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-betting-products-tv-games__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-betting-products-tv-games__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-betting-products-tv-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-products-tv-games__button--primary {
  background-color: #FFD700;
  color: #0A244A;
}

.page-betting-products-tv-games__button--primary:hover {
  background-color: #e6c200;
}

.page-betting-products-tv-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-products-tv-games__button--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
}

/* List Styles */
.page-betting-products-tv-games__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #0A244A;
}

.page-betting-products-tv-games__list--light {
  color: #F0F0F0;
}

.page-betting-products-tv-games__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-betting-products-tv-games__list--light li {
  color: #F0F0F0;
}

/* Grid for Game Showcase */
.page-betting-products-tv-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-products-tv-games__grid-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-products-tv-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-betting-products-tv-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-products-tv-games__game-title {
  font-size: 1.5em;
  color: #0A244A;
  margin-bottom: 10px;
}

.page-betting-products-tv-games__game-description {
  font-size: 1em;
  color: #333;
}

/* Flex Container for App/Link Section */
.page-betting-products-tv-games__flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.page-betting-products-tv-games__flex-item {
  flex: 1 1 45%;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-products-tv-games__flex-item .page-betting-products-tv-games__sub-title {
  color: #FFD700;
}

.page-betting-products-tv-games__flex-item .page-betting-products-tv-games__text {
  color: #f0f0f0;
}

.page-betting-products-tv-games__flex-item .page-betting-products-tv-games__list {
  color: #f0f0f0;
}

.page-betting-products-tv-games__flex-item .page-betting-products-tv-games__list li {
  color: #f0f0f0;
}

/* Steps Section */
.page-betting-products-tv-games__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-betting-products-tv-games__step-item {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-betting-products-tv-games__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A244A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-betting-products-tv-games__step-title {
  font-size: 1.6em;
  color: #0A244A;
  margin-bottom: 15px;
}

/* CTA Background Section */
.page-betting-products-tv-games__section--cta-bg {
  background-color: #0A244A;
  position: relative;
  overflow: hidden;
  color: #f0f0f0;
}

.page-betting-products-tv-games__container--cta {
  position: relative;
  z-index: 1;
}

.page-betting-products-tv-games__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

/* Conclusion Section */
.page-betting-products-tv-games__section--conclusion {
  text-align: center;
  background-color: #f0f0f0;
}

.page-betting-products-tv-games__cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-products-tv-games__hero-title {
    font-size: 2.8em;
  }

  .page-betting-products-tv-games__hero-description {
    font-size: 1.1em;
  }

  .page-betting-products-tv-games__section-title {
    font-size: 2.2em;
  }

  .page-betting-products-tv-games__flex-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-betting-products-tv-games__hero {
    padding: 60px 15px;
  }

  .page-betting-products-tv-games__hero-title {
    font-size: 2.2em;
  }

  .page-betting-products-tv-games__hero-description {
    font-size: 1em;
  }

  .page-betting-products-tv-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-products-tv-games__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-betting-products-tv-games__section {
    padding: 40px 0;
  }

  .page-betting-products-tv-games__section-title {
    font-size: 1.8em;
  }

  .page-betting-products-tv-games__grid {
    grid-template-columns: 1fr;
  }

  .page-betting-products-tv-games__steps {
    flex-direction: column;
  }

  .page-betting-products-tv-games__step-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-betting-products-tv-games__hero-title {
    font-size: 1.8em;
  }

  .page-betting-products-tv-games__section-title {
    font-size: 1.5em;
  }
}