/* style/responsible-gaming.css */
/* 
  Page-specific styles for Responsible Gaming page.
  All class names must follow BEM naming convention: .page-responsible-gaming__element-name
  Styles are scoped to .page-responsible-gaming main element.
*/

/* Base styles for the page content area */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background #0a0a0a */
  background-color: transparent; /* Body background is handled by shared.css, which is #0a0a0a */
}

/* Sections */
.page-responsible-gaming__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-responsible-gaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff;
  overflow: hidden; /* For image positioning */
}

.page-responsible-gaming__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-responsible-gaming__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for main title */
  line-height: 1.2;
}

.page-responsible-gaming__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-responsible-gaming__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-responsible-gaming__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-responsible-gaming__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim image to keep text readable */
}

/* General typography */
.page-responsible-gaming__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

/* Card Grid */
.page-responsible-gaming__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-responsible-gaming__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gaming__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-responsible-gaming__card-text {
  font-size: 1em;
  line-height: 1.7;
}

/* Feature Grid */
.page-responsible-gaming__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-responsible-gaming__feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-responsible-gaming__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-responsible-gaming__feature-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-responsible-gaming__feature-text {
  font-size: 1em;
  line-height: 1.7;
}

/* Info Block with Image */
.page-responsible-gaming__info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-responsible-gaming__info-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming__info-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.page-responsible-gaming__info-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Full width image */
.page-responsible-gaming__full-width-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Checklist */
.page-responsible-gaming__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-responsible-gaming__checklist-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.page-responsible-gaming__checklist-item::before {
  content: '✓';
  color: #26A9E0;
  font-size: 1.8em;
  margin-right: 15px;
  align-self: flex-start;
  line-height: 1;
}

.page-responsible-gaming__checklist-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-top: -30px; /* Adjust to align with checkmark */
  margin-left: 45px;
  margin-bottom: 10px;
}

.page-responsible-gaming__checklist-text {
  font-size: 1em;
  line-height: 1.6;
  margin-left: 45px;
}

/* FAQ Section */
.page-responsible-gaming__faq-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-responsible-gaming__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}