.page-resources-latest-gambling-tech-trends {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light gray for main text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-resources-latest-gambling-tech-trends__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-resources-latest-gambling-tech-trends__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-gambling-tech-trends__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.3)); /* Dark blue to golden gradient overlay */
  z-index: 2;
}

.page-resources-latest-gambling-tech-trends__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-latest-gambling-tech-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-resources-latest-gambling-tech-trends__hero-subtitle {
  font-size: 1.5em;
  color: #E2E8F0;
  margin-bottom: 30px;
}

.page-resources-latest-gambling-tech-trends__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-latest-gambling-tech-trends__hero-cta:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-latest-gambling-tech-trends__article-section {
  padding: 60px 20px;
  background-color: #1A202C;
  display: flex;
  justify-content: center;
}

.page-resources-latest-gambling-tech-trends__article-container {
  max-width: 800px;
  width: 100%;
  background-color: #2D3748; /* Slightly lighter dark background for content area */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-gambling-tech-trends__article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4A5568;
}

.page-resources-latest-gambling-tech-trends__meta {
  font-size: 0.9em;
  color: #A0AEC0; /* Lighter gray for meta info */
}

.page-resources-latest-gambling-tech-trends__back-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-gambling-tech-trends__back-link:hover {
  color: #e6c200;
}

.page-resources-latest-gambling-tech-trends__article-content p {
  margin-bottom: 1.5em;
  color: #E2E8F0;
  font-size: 1.1em;
}

.page-resources-latest-gambling-tech-trends__heading {
  color: #FFD700; /* Gold for H2 headings */
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-latest-gambling-tech-trends__sub-heading {
  color: #CBD5E0; /* Lighter gray for H3 headings */
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-latest-gambling-tech-trends__article-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1.5em;
  color: #E2E8F0;
}

.page-resources-latest-gambling-tech-trends__article-content ul li {
  margin-bottom: 0.8em;
  font-size: 1.1em;
}

.page-resources-latest-gambling-tech-trends__article-content strong {
  color: #FFD700;
}

.page-resources-latest-gambling-tech-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-gambling-tech-trends__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-gambling-tech-trends__cta-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-resources-latest-gambling-tech-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.page-resources-latest-gambling-tech-trends__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text */
}

.page-resources-latest-gambling-tech-trends__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-latest-gambling-tech-trends__cta-button--secondary {
  background-color: #4A5568; /* Dark gray */
  color: #E2E8F0; /* Light text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-resources-latest-gambling-tech-trends__cta-button--secondary:hover {
  background-color: #6a778b;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-latest-gambling-tech-trends__hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-gambling-tech-trends__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-latest-gambling-tech-trends__article-container {
    padding: 25px;
  }

  .page-resources-latest-gambling-tech-trends__heading {
    font-size: 1.8em;
  }

  .page-resources-latest-gambling-tech-trends__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-latest-gambling-tech-trends__article-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-resources-latest-gambling-tech-trends__meta {
    margin-bottom: 10px;
  }

  .page-resources-latest-gambling-tech-trends__cta-group {
    flex-direction: column;
  }
}

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

  .page-resources-latest-gambling-tech-trends__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-latest-gambling-tech-trends__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-latest-gambling-tech-trends__article-container {
    padding: 15px;
  }

  .page-resources-latest-gambling-tech-trends__heading {
    font-size: 1.5em;
  }

  .page-resources-latest-gambling-tech-trends__sub-heading {
    font-size: 1.2em;
  }

  .page-resources-latest-gambling-tech-trends__article-content p,
  .page-resources-latest-gambling-tech-trends__article-content ul li {
    font-size: 0.95em;
  }

  .page-resources-latest-gambling-tech-trends__cta-button {
    width: 100%;
    min-width: unset;
  }
}