.page-gambling-news-latest-trends {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D36; /* Darker background for contrast */
  line-height: 1.6;
}

.page-gambling-news-latest-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-news-latest-trends__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1D36); /* Main color to darker */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 450px;
}

.page-gambling-news-latest-trends__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gambling-news-latest-trends__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-news-latest-trends__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-gambling-news-latest-trends__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-gambling-news-latest-trends__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gambling-news-latest-trends__section {
  padding: 60px 0;
  background-color: #1A2B4C; /* Main section background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gambling-news-latest-trends__section:nth-of-type(even) {
  background-color: #0F1D36; /* Alternating background for sections */
}

.page-gambling-news-latest-trends__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-gambling-news-latest-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gambling-news-latest-trends__paragraph {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gambling-news-latest-trends__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gambling-news-latest-trends__feature-card {
  background-color: #2A3E5C; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-news-latest-trends__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-gambling-news-latest-trends__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700; /* Gold background for icons */
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-latest-trends__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-gambling-news-latest-trends__feature-description {
  font-size: 1em;
  color: #C0C0C0;
  text-align: justify;
}

.page-gambling-news-latest-trends__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-gambling-news-latest-trends__content-block--reverse {
  flex-direction: row-reverse;
}

.page-gambling-news-latest-trends__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-gambling-news-latest-trends__block-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-latest-trends__text-content {
  flex: 2;
  min-width: 300px;
}

.page-gambling-news-latest-trends__content-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for content titles */
  margin-bottom: 20px;
}

.page-gambling-news-latest-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gambling-news-latest-trends__list-item {
  background-color: #2A3E5C;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-latest-trends__list-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gambling-news-latest-trends__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gambling-news-latest-trends__info-card {
  background-color: #2A3E5C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-gambling-news-latest-trends__info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-latest-trends__info-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gambling-news-latest-trends__info-description {
  font-size: 1em;
  color: #C0C0C0;
  text-align: justify;
}

.page-gambling-news-latest-trends__future-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-gambling-news-latest-trends__future-item {
  background-color: #2A3E5C;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-latest-trends__future-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gambling-news-latest-trends__cta-banner {
  background: linear-gradient(90deg, #1A2B4C, #0F1D36); /* Dark gradient */
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gambling-news-latest-trends__cta-banner-inner {
  max-width: 900px;
}

.page-gambling-news-latest-trends__cta-banner-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gambling-news-latest-trends__cta-banner-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-gambling-news-latest-trends__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text on gold */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gambling-news-latest-trends__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gambling-news-latest-trends__cta-button--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gambling-news-latest-trends__hero-title {
    font-size: 3em;
  }
  .page-gambling-news-latest-trends__section-title {
    font-size: 2.4em;
  }
  .page-gambling-news-latest-trends__content-title {
    font-size: 2em;
  }
  .page-gambling-news-latest-trends__feature-title, .page-gambling-news-latest-trends__list-title {
    font-size: 1.6em;
  }
  .page-gambling-news-latest-trends__cta-banner-title {
    font-size: 2.4em;
  }
  .page-gambling-news-latest-trends__future-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gambling-news-latest-trends__hero {
    padding: 60px 0;
  }
  .page-gambling-news-latest-trends__hero-title {
    font-size: 2.5em;
  }
  .page-gambling-news-latest-trends__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gambling-news-latest-trends__section {
    padding: 40px 0;
  }
  .page-gambling-news-latest-trends__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-gambling-news-latest-trends__paragraph {
    font-size: 0.95em;
  }
  .page-gambling-news-latest-trends__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-gambling-news-latest-trends__content-block {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .page-gambling-news-latest-trends__content-block--reverse {
    flex-direction: column;
  }
  .page-gambling-news-latest-trends__info-cards {
    grid-template-columns: 1fr;
  }
  .page-gambling-news-latest-trends__cta-banner {
    padding: 50px 0;
  }
  .page-gambling-news-latest-trends__cta-banner-title {
    font-size: 2em;
  }
  .page-gambling-news-latest-trends__cta-banner-description {
    font-size: 1em;
  }
  .page-gambling-news-latest-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gambling-news-latest-trends__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gambling-news-latest-trends__hero-title {
    font-size: 2em;
  }
  .page-gambling-news-latest-trends__section-title {
    font-size: 1.8em;
  }
  .page-gambling-news-latest-trends__content-title {
    font-size: 1.6em;
  }
  .page-gambling-news-latest-trends__feature-title, .page-gambling-news-latest-trends__list-title {
    font-size: 1.4em;
  }
  .page-gambling-news-latest-trends__cta-banner-title {
    font-size: 1.8em;
  }
}