.page-resources-gambling-industry-news {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-resources-gambling-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-gambling-industry-news__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a345c 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-gambling-industry-news__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-gambling-industry-news__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0; /* Lighter gray for subtitles */
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-gambling-industry-news__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-gambling-industry-news__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-gambling-industry-news__section:last-of-type {
  border-bottom: none;
}

.page-resources-gambling-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-gambling-industry-news__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Slightly darker light gray for descriptions */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-resources-gambling-industry-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-gambling-industry-news__grid-item {
  background-color: #1A2A44; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-gambling-industry-news__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-gambling-industry-news__item-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-gambling-industry-news__item-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-resources-gambling-industry-news__content-block {
  background-color: #1A2A44;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-gambling-industry-news__tech-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-gambling-industry-news__tech-list li {
  background-color: #1A2A44;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-resources-gambling-industry-news__tech-list li:hover {
  background-color: #243B5C;
}

.page-resources-gambling-industry-news__strategy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-gambling-industry-news__strategy-item {
  background-color: #1A2A44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-gambling-industry-news__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-gambling-industry-news__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin: 50px auto;
  display: block;
}

.page-resources-gambling-industry-news__cta {
  background-color: #0A192F; /* Ensure consistent background */
  text-align: center;
  padding-bottom: 80px;
}

.page-resources-gambling-industry-news__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-gambling-industry-news__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-gambling-industry-news__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-resources-gambling-industry-news__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-gambling-industry-news__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-resources-gambling-industry-news__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-resources-gambling-industry-news .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-gambling-industry-news__hero-title {
    font-size: 2.5em;
  }

  .page-resources-gambling-industry-news__hero-subtitle,
  .page-resources-gambling-industry-news__section-description {
    font-size: 1em;
  }

  .page-resources-gambling-industry-news__section-title {
    font-size: 2em;
  }

  .page-resources-gambling-industry-news__item-title {
    font-size: 1.4em;
  }

  .page-resources-gambling-industry-news__grid,
  .page-resources-gambling-industry-news__strategy-points {
    grid-template-columns: 1fr;
  }

  .page-resources-gambling-industry-news__hero,
  .page-resources-gambling-industry-news__section {
    padding: 60px 0 40px;
  }

  .page-resources-gambling-industry-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-gambling-industry-news__hero-title {
    font-size: 2em;
  }

  .page-resources-gambling-industry-news__section-title {
    font-size: 1.8em;
  }

  .page-resources-gambling-industry-news__button-group {
    flex-direction: column;
    gap: 15px;
  }
}