/* style/responsible-gaming.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* General page styling */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background #1a1a1a */
  background-color: transparent; /* Body background handled by shared.css */
}

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

/* Section titles */
.page-responsible-gaming__section-title {
  font-size: 2.5em;
  color: #FFFFFF; /* White for contrast on dark sections */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gaming__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439; /* Brand primary color */
  border-radius: 2px;
}

/* Text blocks */
.page-responsible-gaming__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Images */
.page-responsible-gaming__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-responsible-gaming__btn-primary {
  background-color: #017439; /* Primary brand color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-responsible-gaming__btn-primary:hover {
  background-color: #005a2e; /* Darker green */
  border-color: #005a2e;
  transform: translateY(-2px);
}

.page-responsible-gaming__btn-secondary {
  background-color: #FFFFFF;
  color: #017439; /* Primary brand color */
  border: 2px solid #017439;
}

.page-responsible-gaming__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e; /* Darker green */
  border-color: #005a2e;
  transform: translateY(-2px);
}

.page-responsible-gaming__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}


/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh; /* Ensure hero section has height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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