/* style/responsible-gambling.css */

:root {
  --primary-color: #FF4500; /* Cam đỏ sôi động */
  --secondary-color: #00BFFF; /* Xanh dương công nghệ */
  --text-light-color: #ffffff; /* Cho nền tối */
  --text-dark-color: #333333; /* Cho nền sáng */
  --bg-dark: #0d0d1a; /* Màu nền body */
  --bg-light: #f8f9fa; /* Màu nền phụ sáng */
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling {
  color: var(--text-light-color); /* Body background is dark (#0d0d1a), so use light text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.page-responsible-gambling__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px; /* Desktop padding-top for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

.page-responsible-gambling__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-responsible-gambling__main-title {
  font-size: 3.2em;
  color: var(--text-light-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px var(--shadow-medium);
}

.page-responsible-gambling__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-responsible-gambling__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-light);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-responsible-gambling__btn-primary {
  background: var(--primary-color);
  color: var(--text-light-color);
}