/* style/responsible-gaming.css */

/* Base styles for the page */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-responsible-gaming__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-responsible-gaming__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-responsible-gaming__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  padding: 100px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #017439 0%, #005f2c 100%); /* Brand color gradient */
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-responsible-gaming__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-responsible-gaming__intro-text {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.page-responsible-gaming__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary,
.page-responsible-gaming__btn-register,
.page-responsible-gaming__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-responsible-gaming__btn-primary {
  background: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-responsible-gaming__btn-primary:hover {
  background: #005f2c;
  border-color: #005f2c;
}

/* Custom button for Register/Login with specific color requirements */
.page-responsible-gaming__btn-register {
  background: #C30808; /* Red for Register as per custom color config */
  color: #000000; /* Black for text to ensure WCAG AA contrast with #C30808 (4.72:1). Original #FFFF00 (yellow) would be 4.14:1 (FAIL) - WCAG AA has higher priority. */
  border: 2px solid #C30808;
}

.page-responsible-gaming__btn-register:hover {
  background: #a00606;
  border-color: #a00606;
}

/* General Section Styling */
.page-responsible-gaming__principles-section,
.page-responsible-gaming__tools-section,
.page-responsible-gaming__tips-section,
.page-responsible-gaming__faq-section {
  padding: 80px 0;
}

.page-responsible-gaming__recognition-section,
.page-responsible-gaming__external-help-section {
  padding: 80px 0;
  background: #017439;
  color: #ffffff;
}