.page-responsible-gambling {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-responsible-gambling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gambling__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-responsible-gambling__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-responsible-gambling__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

.page-responsible-gambling__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-responsible-gambling__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent color for button */
  color: #3F0071; /* Deep purple 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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-responsible-gambling__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__subsection-title {
  font-size: 2em;
  color: #FFD700; /* Gold accent color for subsection titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-responsible-gambling__text-content {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gambling__tools-grid, 
.page-responsible-gambling__info-grid, 
.page-responsible-gambling__support-cards, 
.page-responsible-gambling__commitment-grid, 
.page-responsible-gambling__detail-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-responsible-gambling__tool-card,
.page-responsible-gambling__info-card,
.page-responsible-gambling__support-card,
.page-responsible-gambling__commitment-card,
.page-responsible-gambling__tip-card,
.page-responsible-gambling__detail-card {
  background-color: rgba(63, 0, 113, 0.7); /* Semi-transparent deep purple */
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-responsible-gambling__tool-card:hover,
.page-responsible-gambling__info-card:hover,
.page-responsible-gambling__support-card:hover,
.page-responsible-gambling__commitment-card:hover,
.page-responsible-gambling__tip-card:hover,
.page-responsible-gambling__detail-card:hover {
  transform: translateY(-8px);
  background-color: rgba(63, 0, 113, 0.9);
}

.page-responsible-gambling__tool-icon,
.page-responsible-gambling__support-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 25px;
  display: block;
  border: 2px solid #FFD700;
}

.page-responsible-gambling__card-title,
.page-responsible-gambling__detail-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-responsible-gambling__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-responsible-gambling__detail-card-title a:hover {
  text-decoration: underline;
}

.page-responsible-gambling__card-description,
.page-responsible-gambling__detail-card-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
  flex-grow: 1;
}

.page-responsible-gambling__button {
  display: inline-block;
  background-color: #FFD700;
  color: #3F0071;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

.page-responsible-gambling__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-responsible-gambling__button--small {
  font-size: 0.85em;
  padding: 10px 20px;
}

.page-responsible-gambling__details-link {
  text-align: center;
  margin-top: 50px;
}

.page-responsible-gambling__list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-responsible-gambling__list-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-responsible-gambling__cta-section {
  background: linear-gradient(135deg, #3F0071, #6a00c7);
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-responsible-gambling__cta-content {
  max-width: 900px;
}

.page-responsible-gambling__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #3F0071;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 15px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-responsible-gambling__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-responsible-gambling {
    padding-top: var(--header-offset, 80px);
  }

  .page-responsible-gambling__hero-title {
    font-size: 2.2em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 1em;
  }

  .page-responsible-gambling__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-responsible-gambling__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling__subsection-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling__text-content {
    font-size: 0.95em;
  }

  .page-responsible-gambling__tool-card,
  .page-responsible-gambling__info-card,
  .page-responsible-gambling__support-card,
  .page-responsible-gambling__commitment-card,
  .page-responsible-gambling__tip-card,
  .page-responsible-gambling__detail-card {
    padding: 20px;
  }

  .page-responsible-gambling__tool-icon,
  .page-responsible-gambling__support-icon {
    max-width: 100%;
    height: auto;
  }

  .page-responsible-gambling__card-title,
  .page-responsible-gambling__detail-card-title {
    font-size: 1.3em;
  }

  .page-responsible-gambling__card-description,
  .page-responsible-gambling__detail-card-description {
    font-size: 0.9em;
  }

  .page-responsible-gambling__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .page-responsible-gambling__cta-title {
    font-size: 2em;
  }

  .page-responsible-gambling__cta-description {
    font-size: 1em;
  }

  .page-responsible-gambling__cta-button {
    padding: 15px 25px;
    font-size: 1em;
    margin: 0 8px 15px;
  }

  .page-responsible-gambling__hero-content {
    width: 95%;
    padding: 15px;
  }

  .page-responsible-gambling__tools-grid,
  .page-responsible-gambling__info-grid,
  .page-responsible-gambling__support-cards,
  .page-responsible-gambling__commitment-grid,
  .page-responsible-gambling__detail-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure all content area images are responsive and don't overflow */
  .page-responsible-gambling img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 0.9em;
  }

  .page-responsible-gambling__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-responsible-gambling__cta-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling__cta-button {
    display: block;
    margin: 10px auto;
  }
}