/* style/responsible-gambling.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */
.page-responsible-gambling {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Mặc định cho nền sáng */
  background-color: var(--secondary-color, #FFFFFF); /* Sử dụng biến từ shared.css, mặc định là trắng */
}

/* Đảm bảo màu chữ trên nền chính */
.page-responsible-gambling.page-content {
  color: #333333; /* Đảm bảo màu chữ tối trên nền sáng */
}

.page-responsible-gambling__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Hình ảnh trên, nội dung dưới */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ ở trên, body đã xử lý phần còn lại */
  background-color: #26A9E0; /* Màu chủ đạo */
  color: #ffffff;
  text-align: center;
  overflow: hidden; /* Đảm bảo không tràn */
}

.page-responsible-gambling__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Tối đa bằng kích thước ảnh hero */
  margin-bottom: 30px; /* Khoảng cách giữa ảnh và nội dung */
}

.page-responsible-gambling__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-responsible-gambling__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* Đảm bảo nội dung hiển thị trên ảnh */
  position: relative;
}

.page-responsible-gambling__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-responsible-gambling__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-responsible-gambling__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%; /* Đảm bảo nút không tràn */
  box-sizing: border-box;
  white-space: normal; /* Cho phép xuống dòng */
  word-wrap: break-word; /* Cho phép ngắt từ */
}

.page-responsible-gambling__btn-primary {
  background-color: #EA7C07; /* Màu đăng nhập */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-responsible-gambling__btn-primary:hover {
  background-color: #d66a00;
}

.page-responsible-gambling__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-responsible-gambling__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
}

.page-responsible-gambling__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Nền trắng cho khu vực nội dung */
  color: #333333; /* Chữ đen cho nền trắng */
}

.page-responsible-gambling__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-responsible-gambling__content-area p {
  margin-bottom: 1em;
}

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

.page-responsible-gambling__feature-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

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

.page-responsible-gambling__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px; /* Giới hạn chiều cao ảnh trong card */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-responsible-gambling__list,
.page-responsible-gambling__tips-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-responsible-gambling__list-item,
.page-responsible-gambling__tips-item {
  margin-bottom: 10px;
}

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

.page-responsible-gambling__support-card {
  background-color: #f0f7fb; /* Nền màu nhạt hơn */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-responsible-gambling__support-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}