/* style/responsible-gaming-minor-protection.css */
.page-responsible-gaming-minor-protection {
  font-family: 'Arial', sans-serif;
  color: #1A2B4C; /* Dark Blue */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-responsible-gaming-minor-protection__hero {
  background: linear-gradient(135deg, #1A2B4C, #3A506B); /* Dark Blue Gradient */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gaming-minor-protection__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-responsible-gaming-minor-protection__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold Accent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-minor-protection__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming-minor-protection__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-responsible-gaming-minor-protection__section {
  padding: 60px 20px;
  border-bottom: 1px solid #eee;
}

.page-responsible-gaming-minor-protection__section--dark {
  background-color: #1A2B4C;
  color: #FFFFFF;
}

.page-responsible-gaming-minor-protection__section--dark .page-responsible-gaming-minor-protection__section-title,
.page-responsible-gaming-minor-protection__section--dark .page-responsible-gaming-minor-protection__grid-title {
  color: #FFD700;
}

.page-responsible-gaming-minor-protection__section--accent {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-responsible-gaming-minor-protection__section--accent .page-responsible-gaming-minor-protection__section-title {
  color: #1A2B4C;
}

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

.page-responsible-gaming-minor-protection__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-responsible-gaming-minor-protection__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-responsible-gaming-minor-protection__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-responsible-gaming-minor-protection__grid-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gaming-minor-protection__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-minor-protection__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-responsible-gaming-minor-protection__grid-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

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

.page-responsible-gaming-minor-protection__list li {
  background-color: #FFFFFF;
  color: #1A2B4C;
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.page-responsible-gaming-minor-protection__list li:hover {
  transform: translateX(5px);
}

.page-responsible-gaming-minor-protection__list-title {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 10px;
}

.page-responsible-gaming-minor-protection__sub-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 10px;
}

.page-responsible-gaming-minor-protection__sub-list li {
  background-color: transparent;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 1em;
}

.page-responsible-gaming-minor-protection__sub-list li:hover {
  transform: none;
}

.page-responsible-gaming-minor-protection__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming-minor-protection__call-to-action {
  text-align: center;
  margin-top: 40px;
}

.page-responsible-gaming-minor-protection__button {
  display: inline-block;
  background-color: #FFD700; /* Gold Accent */
  color: #1A2B4C; /* Dark Blue */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-minor-protection__button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-minor-protection__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

  .page-responsible-gaming-minor-protection__grid-item {
    padding: 25px;
  }

  .page-responsible-gaming-minor-protection__icon {
    width: 60px;
    height: 60px;
  }

  .page-responsible-gaming-minor-protection__list li {
    padding: 20px;
  }

  .page-responsible-gaming-minor-protection__button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming-minor-protection__hero {
    padding: 60px 15px;
  }

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

  .page-responsible-gaming-minor-protection__section {
    padding: 40px 15px;
  }

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

  .page-responsible-gaming-minor-protection__text {
    font-size: 1em;
  }

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

  .page-responsible-gaming-minor-protection__list-title {
    font-size: 1.3em;
  }
}