/* style/betting-news-tech-innovations.css */
.page-betting-news-tech-innovations {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E5D1BB; /* Light text for dark backgrounds */
  background-color: #1A2E44; /* Main primary background */
}

.page-betting-news-tech-innovations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-news-tech-innovations__hero {
  background: linear-gradient(135deg, #1A2E44, #3a506b);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

.page-betting-news-tech-innovations__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 46, 68, 0) 70%);
  opacity: 0.3;
  animation: page-betting-news-tech-innovations-rotate 20s linear infinite;
}

@keyframes page-betting-news-tech-innovations-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-betting-news-tech-innovations__hero .page-betting-news-tech-innovations__container {
  position: relative;
  z-index: 1;
}

.page-betting-news-tech-innovations__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-betting-news-tech-innovations__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E5D1BB;
}

.page-betting-news-tech-innovations__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-news-tech-innovations__section--alt {
  background-color: #2a3d52; /* Slightly lighter dark blue for contrast */
}

.page-betting-news-tech-innovations__content-block {
  background-color: #1A2E44;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #E5D1BB;
}

.page-betting-news-tech-innovations__section--alt .page-betting-news-tech-innovations__content-block {
    background-color: #2a3d52;
}

.page-betting-news-tech-innovations__heading {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-betting-news-tech-innovations__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-betting-news-tech-innovations__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-betting-news-tech-innovations__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-betting-news-tech-innovations__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-betting-news-tech-innovations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-betting-news-tech-innovations__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-betting-news-tech-innovations__btn--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-betting-news-tech-innovations__btn--secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-betting-news-tech-innovations__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-betting-news-tech-innovations__cta-section {
  text-align: center;
  background-color: #1A2E44;
  padding: 80px 0;
}

.page-betting-news-tech-innovations__cta-section .page-betting-news-tech-innovations__heading {
  color: #FFD700;
}

.page-betting-news-tech-innovations__call-to-action {
  font-size: 1.3em;
  margin-top: 30px;
  margin-bottom: 40px;
  color: #FFD700;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-betting-news-tech-innovations__title {
    font-size: 2.5em;
  }

  .page-betting-news-tech-innovations__subtitle {
    font-size: 1.2em;
  }

  .page-betting-news-tech-innovations__heading {
    font-size: 2em;
  }

  .page-betting-news-tech-innovations__sub-heading {
    font-size: 1.5em;
  }

  .page-betting-news-tech-innovations__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0;
    display: block;
    margin-bottom: 15px;
  }

  .page-betting-news-tech-innovations__btn--secondary {
    margin-left: 0;
  }

  .page-betting-news-tech-innovations__content-block {
    padding: 25px;
  }

  .page-betting-news-tech-innovations__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-betting-news-tech-innovations__title {
    font-size: 2em;
  }

  .page-betting-news-tech-innovations__subtitle {
    font-size: 1em;
  }

  .page-betting-news-tech-innovations__heading {
    font-size: 1.8em;
  }

  .page-betting-news-tech-innovations__list {
    margin-left: 0;
    list-style-position: outside;
  }

  .page-betting-news-tech-innovations__btn {
    width: 100%;
    box-sizing: border-box;
  }
}