/* style/resources-how-to-play-779-club-safely.css */
.page-resources-how-to-play-779-club-safely {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

.page-resources-how-to-play-779-club-safely__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-play-779-club-safely__hero-section {
  position: relative;
  padding: 100px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #017439, #00502a); /* Darker green gradient */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-how-to-play-779-club-safely__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Custom color for important titles */
}

.page-resources-how-to-play-779-club-safely__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-how-to-play-779-club-safely__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-how-to-play-779-club-safely__btn-primary,
.page-resources-how-to-play-779-club-safely__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-how-to-play-779-club-safely__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-how-to-play-779-club-safely__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
  transform: translateY(-2px);
}

.page-resources-how-to-play-779-club-safely__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-how-to-play-779-club-safely__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-resources-how-to-play-779-club-safely__section-title,
.page-resources-how-to-play-779-club-safely__chapter-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-how-to-play-779-club-safely__dark-bg .page-resources-how-to-play-779-club-safely__section-title,
.page-resources-how-to-play-779-club-safely__dark-bg .page-resources-how-to-play-779-club-safely__chapter-title {
  color: #ffffff;
}

.page-resources-how-to-play-779-club-safely__introduction-section,
.page-resources-how-to-play-779-club-safely__chapter-section,
.page-resources-how-to-play-779-club-safely__conclusion-section {
  padding: 60px 0;
}

.page-resources-how-to-play-779-club-safely__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-resources-how-to-play-779-club-safely__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-how-to-play-779-club-safely__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-how-to-play-779-club-safely__text-block {
  flex: 1;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-how-to-play-779-club-safely__dark-bg .page-resources-how-to-play-779-club-safely__text-block {
  color: #f0f0f0;
}

.page-resources-how-to-play-779-club-safely__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-how-to-play-779-club-safely__card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-play-779-club-safely__card-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-play-779-club-safely__card--dark {
  background-color: #00502a; /* Darker shade of brand green */
  color: #ffffff;
}

.page-resources-how-to-play-779-club-safely__card--dark .page-resources-how-to-play-779-club-safely__card-title {
  color: #FFFF00;
}

/* FAQ Section */
.page-resources-how-to-play-779-club-safely__faq-section {
  background-color: #017439;
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-how-to-play-779-club-safely__faq-section .page-resources-how-to-play-779-club-safely__section-title {
  color: #ffffff;
}

.page-resources-how-to-play-779-club-safely__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-how-to-play-779-club-safely__faq-item {
  background-color: #00502a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-play-779-club-safely__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-play-779-club-safely__faq-question:hover {
  background-color: #003a1f;
}

.page-resources-how-to-play-779-club-safely__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-play-779-club-safely__faq-item.active .page-resources-how-to-play-779-club-safely__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-play-779-club-safely__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-how-to-play-779-club-safely__faq-item.active .page-resources-how-to-play-779-club-safely__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 30px 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-play-779-club-safely__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-play-779-club-safely__section-title,
  .page-resources-how-to-play-779-club-safely__chapter-title {
    font-size: 2em;
  }

  .page-resources-how-to-play-779-club-safely__card-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-play-779-club-safely__hero-section {
    padding: 80px 15px 60px;
  }

  .page-resources-how-to-play-779-club-safely__hero-title {
    font-size: 2.2em;
    line-height: 1.3;
  }

  .page-resources-how-to-play-779-club-safely__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-play-779-club-safely__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-play-779-club-safely__btn-primary,
  .page-resources-how-to-play-779-club-safely__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-resources-how-to-play-779-club-safely__section-title,
  .page-resources-how-to-play-779-club-safely__chapter-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-play-779-club-safely__introduction-section,
  .page-resources-how-to-play-779-club-safely__chapter-section,
  .page-resources-how-to-play-779-club-safely__conclusion-section,
  .page-resources-how-to-play-779-club-safely__faq-section {
    padding: 40px 0;
  }

  .page-resources-how-to-play-779-club-safely__container {
    padding: 0 15px;
  }

  .page-resources-how-to-play-779-club-safely__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .page-resources-how-to-play-779-club-safely__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-resources-how-to-play-779-club-safely__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }

  .page-resources-how-to-play-779-club-safely__card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-play-779-club-safely__card-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-play-779-club-safely__text-block {
    font-size: 1em;
  }

  .page-resources-how-to-play-779-club-safely__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-how-to-play-779-club-safely__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-play-779-club-safely__faq-item.active .page-resources-how-to-play-779-club-safely__faq-answer {
    padding: 10px 20px 20px;
  }

  /* General content area images responsive fix */
  .page-resources-how-to-play-779-club-safely img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-play-779-club-safely__section,
  .page-resources-how-to-play-779-club-safely__card,
  .page-resources-how-to-play-779-club-safely__container,
  .page-resources-how-to-play-779-club-safely__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-play-779-club-safely__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-play-779-club-safely__section-title,
  .page-resources-how-to-play-779-club-safely__chapter-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-play-779-club-safely__card-title {
    font-size: 1.2em;
  }

  .page-resources-how-to-play-779-club-safely__btn-primary,
  .page-resources-how-to-play-779-club-safely__btn-secondary {
    font-size: 1em;
    padding: 10px 15px;
  }
}

/* Color contrast fixes for specific elements */
.page-resources-how-to-play-779-club-safely__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-how-to-play-779-club-safely__dark-bg .page-resources-how-to-play-779-club-safely__text-block {
  color: #f0f0f0;
}

.page-resources-how-to-play-779-club-safely__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-how-to-play-779-club-safely__light-bg .page-resources-how-to-play-779-club-safely__text-block {
  color: #333333;
}