/* style/responsible-gaming.css */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.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: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-responsible-gaming__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.u888-vip-highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-responsible-gaming__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

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

.page-responsible-gaming__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary {
  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, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-responsible-gaming__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-responsible-gaming__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-responsible-gaming__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Intro Section */
.page-responsible-gaming__intro-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast with body */
  color: #ffffff;
}

/* Tools Section */
.page-responsible-gaming__tools-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Darker background */
}

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

.page-responsible-gaming__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff; /* Light text for dark card background */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-responsible-gaming__card:hover {
  transform: translateY(-5px);
}

.page-responsible-gaming__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-responsible-gaming__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-responsible-gaming__contact-prompt {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Recognition Section */
.page-responsible-gaming__recognition-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-responsible-gaming__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-responsible-gaming__checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-responsible-gaming__checklist-icon {
  color: #26A9E0;
  font-size: 1.4em;
  margin-right: 15px;
  line-height: 1;
}

/* Underage Protection Section */
.page-responsible-gaming__underage-protection-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-responsible-gaming__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-responsible-gaming__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  color: #ffffff;
}

.page-responsible-gaming__feature-icon {
  font-size: 3em;
  color: #26A9E0;
  margin-bottom: 20px;
  display: block;
}

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

.page-responsible-gaming__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-responsible-gaming__action-prompt {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Support Section */
.page-responsible-gaming__support-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-responsible-gaming__support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-responsible-gaming__support-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-responsible-gaming__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-responsible-gaming__support-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Tips Section */
.page-responsible-gaming__tips-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-responsible-gaming__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-responsible-gaming__tips-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-responsible-gaming__tips-icon {
  font-size: 3em;
  color: #26A9E0;
  margin-bottom: 20px;
  display: block;
}

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

.page-responsible-gaming__tips-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Video Section */
.page-responsible-gaming__video-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
  color: #ffffff;
}