/* style/news-responsible-gaming-initiatives.css */
.page-news-responsible-gaming-initiatives {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text for dark background */
  background-color: #0A2239; /* Main dark blue background */
}

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

.page-news-responsible-gaming-initiatives__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5c 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-responsible-gaming-initiatives__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Bright gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-responsible-gaming-initiatives__hero-subtitle {
  font-size: 1.4em;
  color: #F5F5F5;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-news-responsible-gaming-initiatives__content-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-news-responsible-gaming-initiatives__section-title {
  font-size: 2.5em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

.page-news-responsible-gaming-initiatives__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  border-radius: 2px;
}

.page-news-responsible-gaming-initiatives__sub-section-title {
  font-size: 1.8em;
  color: #F5F5F5;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #E0B400;
  padding-left: 15px;
}

.page-news-responsible-gaming-initiatives__text-block {
  background-color: #1a3a5c; /* Slightly lighter dark blue for content blocks */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  line-height: 1.8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news-responsible-gaming-initiatives__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E6E6E6;
}

.page-news-responsible-gaming-initiatives__highlight {
  color: #E0B400;
  font-weight: bold;
}

.page-news-responsible-gaming-initiatives__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E6E6E6;
  font-size: 1.1em;
}

.page-news-responsible-gaming-initiatives__list li {
  margin-bottom: 10px;
}

.page-news-responsible-gaming-initiatives__list li strong {
  color: #E0B400;
}

.page-news-responsible-gaming-initiatives__btn {
  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;
  margin: 10px;
}

.page-news-responsible-gaming-initiatives__btn--primary {
  background-color: #E0B400; /* Gold button */
  color: #0A2239;
}

.page-news-responsible-gaming-initiatives__btn--primary:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-news-responsible-gaming-initiatives__btn--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-news-responsible-gaming-initiatives__btn--secondary:hover {
  background-color: #1a3a5c;
  transform: translateY(-3px);
}

.page-news-responsible-gaming-initiatives__cta-block {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(224, 180, 0, 0.3);
}

.page-news-responsible-gaming-initiatives__cta-block p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.page-news-responsible-gaming-initiatives__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-news-responsible-gaming-initiatives__image--full-width {
  width: 100%;
}

.page-news-responsible-gaming-initiatives__image--medium {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.page-news-responsible-gaming-initiatives__image--small {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Floating Ad */
.page-news-responsible-gaming-initiatives__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E0B400;
  color: #0A2239;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.page-news-responsible-gaming-initiatives__floating-ad.show {
  opacity: 1;
  transform: translateY(0);
}

.page-news-responsible-gaming-initiatives__floating-ad-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.page-news-responsible-gaming-initiatives__floating-ad-text {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.4;
}

.page-news-responsible-gaming-initiatives__floating-ad-close-btn {
  background: none;
  border: none;
  color: #0A2239;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 15px;
  padding: 0 5px;
  line-height: 1;
}

.page-news-responsible-gaming-initiatives__floating-ad-close-btn:hover {
  color: #1a3a5c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news-responsible-gaming-initiatives__hero-title {
    font-size: 2.5em;
  }

  .page-news-responsible-gaming-initiatives__hero-subtitle,
  .page-news-responsible-gaming-initiatives__text-block p,
  .page-news-responsible-gaming-initiatives__list li {
    font-size: 1em;
  }

  .page-news-responsible-gaming-initiatives__section-title {
    font-size: 2em;
  }

  .page-news-responsible-gaming-initiatives__sub-section-title {
    font-size: 1.5em;
  }

  .page-news-responsible-gaming-initiatives__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news-responsible-gaming-initiatives__image--medium,
  .page-news-responsible-gaming-initiatives__image--small {
    width: 90%;
  }

  .page-news-responsible-gaming-initiatives__floating-ad {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
  }

  .page-news-responsible-gaming-initiatives__floating-ad-text {
    font-size: 0.9em;
  }

  .page-news-responsible-gaming-initiatives__floating-ad-close-btn {
    font-size: 1.2em;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .page-news-responsible-gaming-initiatives__hero-section {
    padding: 60px 0;
  }

  .page-news-responsible-gaming-initiatives__hero-title {
    font-size: 2em;
  }

  .page-news-responsible-gaming-initiatives__hero-subtitle {
    font-size: 0.9em;
  }

  .page-news-responsible-gaming-initiatives__section-title {
    font-size: 1.8em;
  }

  .page-news-responsible-gaming-initiatives__sub-section-title {
    font-size: 1.3em;
  }

  .page-news-responsible-gaming-initiatives__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

  .page-news-responsible-gaming-initiatives__floating-ad {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 10px;
  }
}