/* style/responsible-gambling-self-exclusion.css */
.page-responsible-gambling-self-exclusion {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-responsible-gambling-self-exclusion__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  color: #FFD700; /* Luxury gold for hero text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-responsible-gambling-self-exclusion__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #C0C0C0; /* Lighter grey for subtitle */
}

.page-responsible-gambling-self-exclusion__content-section {
  padding: 60px 0;
}

.page-responsible-gambling-self-exclusion__article {
  background-color: #1A2E44; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion__section-title {
  font-size: 2em;
  color: #FFD700; /* Luxury gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-responsible-gambling-self-exclusion__article p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light grey for paragraph text */
}

.page-responsible-gambling-self-exclusion__article ul,
.page-responsible-gambling-self-exclusion__article ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-responsible-gambling-self-exclusion__article li {
  margin-bottom: 8px;
}

.page-responsible-gambling-self-exclusion__text-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-responsible-gambling-self-exclusion__text-link:hover {
  color: #FFF; /* White on hover */
  text-decoration: underline;
}

.page-responsible-gambling-self-exclusion__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A192F; /* Main dark background for CTA */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion__cta-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #C0C0C0;
}

.page-responsible-gambling-self-exclusion__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

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

.page-responsible-gambling-self-exclusion__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-responsible-gambling-self-exclusion__btn--secondary {
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-responsible-gambling-self-exclusion__btn--secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #0A192F; /* Dark blue text on hover */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-responsible-gambling-self-exclusion__hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling-self-exclusion__hero-subtitle {
    font-size: 1em;
  }

  .page-responsible-gambling-self-exclusion__section-title {
    font-size: 1.6em;
  }

  .page-responsible-gambling-self-exclusion__article {
    padding: 25px;
  }

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

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

  .page-responsible-gambling-self-exclusion__hero-subtitle {
    font-size: 0.9em;
  }

  .page-responsible-gambling-self-exclusion__section-title {
    font-size: 1.4em;
  }

  .page-responsible-gambling-self-exclusion__article {
    padding: 15px;
  }

  .page-responsible-gambling-self-exclusion__btn {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
}