/* style/responsible-gaming.css */

.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-responsible-gaming__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Main & Auxiliary color gradient */
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding as per rule */
  position: relative;
  overflow: hidden;
}

.page-responsible-gaming__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-responsible-gaming__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Min image size for content images */
  min-height: 200px; /* Min image size for content images */
}

.page-responsible-gaming__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  color: #0A0A0A; /* Dark text on light background */
}

.page-responsible-gaming__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}

.page-responsible-gaming__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #333333;
}

.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  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: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-responsible-gaming__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border color */
  margin-left: 20px;
}

.page-responsible-gaming__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.page-responsible-gaming__section {
  padding: 60px 0;
  background-color: #0A0A0A;
}