/* style/responsible-gaming-minor-protection.css */

.page-responsible-gaming-minor-protection {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-responsible-gaming-minor-protection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-responsible-gaming-minor-protection__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-responsible-gaming-minor-protection__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-responsible-gaming-minor-protection__button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  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;
  border: 2px solid #FFD700;
}

.page-responsible-gaming-minor-protection__button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #000066; /* Slightly darker blue */
  border-color: #e6c200;
}

.page-responsible-gaming-minor-protection__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-responsible-gaming-minor-protection__button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-responsible-gaming-minor-protection__button--download {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border-color: #000080;
}

.page-responsible-gaming-minor-protection__button--download:hover {
  background-color: #000066; /* Slightly darker blue */
  color: #FFD700;
  border-color: #000066;
}

.page-responsible-gaming-minor-protection__section {
  padding: 60px 0;
}

.page-responsible-gaming-minor-protection__section--alt-bg {
  background-color: #e6e6fa; /* Light Lavender - for contrast with dark blue text */
}

.page-responsible-gaming-minor-protection__heading {
  font-size: 2.5em;
  color: #000080; /* Dark Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-responsible-gaming-minor-protection__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

.page-responsible-gaming-minor-protection__subheading {
  font-size: 1.8em;
  color: #000080; /* Dark Blue */
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
}

.page-responsible-gaming-minor-protection p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-responsible-gaming-minor-protection__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-responsible-gaming-minor-protection__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-responsible-gaming-minor-protection__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-responsible-gaming-minor-protection__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold icon */
}

.page-responsible-gaming-minor-protection__feature-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

.page-responsible-gaming-minor-protection__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-responsible-gaming-minor-protection__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-responsible-gaming-minor-protection__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #000080; /* Dark Blue checkmark */
  font-weight: bold;
}

.page-responsible-gaming-minor-protection__list--risk li::before {
  content: '✖';
  color: #ff4500; /* OrangeRed for risk */
}

.page-responsible-gaming-minor-protection__cta-content {
  text-align: center;
}

.page-responsible-gaming-minor-protection__cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-responsible-gaming-minor-protection__title {
    font-size: 2.5em;
  }

  .page-responsible-gaming-minor-protection__subtitle {
    font-size: 1.1em;
  }

  .page-responsible-gaming-minor-protection__heading {
    font-size: 2em;
  }

  .page-responsible-gaming-minor-protection__subheading {
    font-size: 1.5em;
  }

  .page-responsible-gaming-minor-protection__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gaming-minor-protection__button {
    width: 100%;
    max-width: 300px;
  }

  .page-responsible-gaming-minor-protection__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming-minor-protection__title {
    font-size: 2em;
  }

  .page-responsible-gaming-minor-protection__heading {
    font-size: 1.8em;
  }

  .page-responsible-gaming-minor-protection p,
  .page-responsible-gaming-minor-protection__list li {
    font-size: 1em;
  }
}