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

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

.page-responsible-gaming-minor-protection__hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-responsible-gaming-minor-protection__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.page-responsible-gaming-minor-protection__hero-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  max-width: 800px;
}

.page-responsible-gaming-minor-protection__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-responsible-gaming-minor-protection__hero-subtitle {
  font-size: 1.2em;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
}

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

.page-responsible-gaming-minor-protection__section--alt {
  background-color: #22223A;
}

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

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

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

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

.page-responsible-gaming-minor-protection__grid-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 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 8px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming-minor-protection__grid-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-responsible-gaming-minor-protection__grid-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-responsible-gaming-minor-protection__grid-description {
  font-size: 1em;
  color: #C0C0C0;
}

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

.page-responsible-gaming-minor-protection__list-item {
  background-color: #22223A;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #DC143C;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-responsible-gaming-minor-protection__list-item p {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-responsible-gaming-minor-protection__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming-minor-protection__button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #DC143C);
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming-minor-protection__button:hover {
  background: linear-gradient(90deg, #DC143C, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  color: #FFFFFF; /* Ensure contrast on hover */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gaming-minor-protection__hero-title {
    font-size: 2.8em;
  }
  .page-responsible-gaming-minor-protection__section-title {
    font-size: 2em;
  }
  .page-responsible-gaming-minor-protection__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming-minor-protection__hero-title {
    font-size: 2.2em;
  }
  .page-responsible-gaming-minor-protection__hero-subtitle {
    font-size: 1em;
  }
  .page-responsible-gaming-minor-protection__section {
    padding: 40px 0;
  }
  .page-responsible-gaming-minor-protection__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gaming-minor-protection__grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gaming-minor-protection__grid-item {
    padding: 25px;
  }
  .page-responsible-gaming-minor-protection__list-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming-minor-protection__hero-title {
    font-size: 1.8em;
  }
  .page-responsible-gaming-minor-protection__hero-subtitle {
    font-size: 0.9em;
  }
  .page-responsible-gaming-minor-protection__section-title {
    font-size: 1.5em;
  }
  .page-responsible-gaming-minor-protection__text-block,
  .page-responsible-gaming-minor-protection__grid-description,
  .page-responsible-gaming-minor-protection__list-item p {
    font-size: 0.95em;
  }
  .page-responsible-gaming-minor-protection__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}