/* style/responsible-gambling.css */

.page-responsible-gambling {
  color: #ffffff; /* Body background is dark (#0D1F3F), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-responsible-gambling__hero-section {
  background: linear-gradient(135deg, #0A1931, rgba(255, 215, 0, 0.2)); /* Blend main and accent color with transparency */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-responsible-gambling__hero-link-brand {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-responsible-gambling__hero-link-brand:hover {
  color: #e6c200;
}

.page-responsible-gambling__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-responsible-gambling__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-responsible-gambling__hero-button {
  display: inline-block;
  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, transform 0.2s ease;
}

.page-responsible-gambling__hero-button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-responsible-gambling__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-responsible-gambling__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gambling__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-responsible-gambling__section {
  padding: 60px 0;
}

.page-responsible-gambling__section:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-responsible-gambling__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-responsible-gambling__link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-responsible-gambling__link-inline:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-responsible-gambling__content-grid--small {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-responsible-gambling__grid-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__image-content {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.page-responsible-gambling__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-responsible-gambling__item-text {
  font-size: 1em;
  color: #cccccc;
}

.page-responsible-gambling__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-responsible-gambling__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-responsible-gambling__image-large-right,
.page-responsible-gambling__image-large-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
}

.page-responsible-gambling__list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-responsible-gambling__list--bullet {
  list-style: disc;
  padding-left: 20px;
}

.page-responsible-gambling__list-item {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-responsible-gambling__list-item strong {
  color: #FFD700;
}

.page-responsible-gambling__call-to-action {
  text-align: center;
  margin-top: 60px;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__cta-text {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
}

.page-responsible-gambling__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-responsible-gambling__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-responsible-gambling__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gambling__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

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

.page-responsible-gambling__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

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

.page-responsible-gambling__card-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-responsible-gambling__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gambling__card-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-responsible-gambling__hero-title {
    font-size: 2.8em;
  }

  .page-responsible-gambling__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling__content-wrapper,
  .page-responsible-gambling__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-responsible-gambling__image-large-right,
  .page-responsible-gambling__image-large-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling__hero-section {
    padding: 80px 0;
  }

  .page-responsible-gambling__hero-title {
    font-size: 2.2em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 1.1em;
  }

  .page-responsible-gambling__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-responsible-gambling__hero-button,
  .page-responsible-gambling__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-responsible-gambling__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling__section-description {
    font-size: 1em;
  }

  .page-responsible-gambling__content-grid,
  .page-responsible-gambling__card-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling__grid-item,
  .page-responsible-gambling__card {
    padding: 20px;
  }

  .page-responsible-gambling__item-title,
  .page-responsible-gambling__card-title {
    font-size: 1.4em;
  }

  .page-responsible-gambling__list-item {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-section {
    padding: 60px 0;
  }

  .page-responsible-gambling__hero-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 0.9em;
  }

  .page-responsible-gambling__hero-button,
  .page-responsible-gambling__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-responsible-gambling__section {
    padding: 40px 0;
  }

  .page-responsible-gambling__section-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling__section-description {
    font-size: 0.9em;
  }

  .page-responsible-gambling__item-title,
  .page-responsible-gambling__card-title {
    font-size: 1.2em;
  }

  .page-responsible-gambling__item-text,
  .page-responsible-gambling__card-text {
    font-size: 0.9em;
  }

  .page-responsible-gambling__cta-text {
    font-size: 1em;
  }
}