/* style/resources-how-to-play-safely-on-sumvip-sweet.css */

/* Base styles for the page content */
.page-resources-how-to-play-safely-on-sumvip-sweet {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color on dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-how-to-play-safely-on-sumvip-sweet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-how-to-play-safely-on-sumvip-sweet__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, #017439 0%, #005f2e 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-right: 40px;
  text-align: left;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__hero-image-wrapper {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

/* General Section Styling */
.page-resources-how-to-play-safely-on-sumvip-sweet__content-area {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for content */
  color: #333333; /* Dark text for light background */
}

.page-resources-how-to-play-safely-on-sumvip-sweet__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-resources-how-to-play-safely-on-sumvip-sweet__btn-primary,
.page-resources-how-to-play-safely-on-sumvip-sweet__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
  margin-right: 15px;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-resources-how-to-play-safely-on-sumvip-sweet__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__btn-secondary:hover {
  background-color: #e0ffe0;
  transform: translateY(-2px);
}

/* Call to Action Section */
.page-resources-how-to-play-safely-on-sumvip-sweet__cta-section {
  background: linear-gradient(90deg, #017439 0%, #005f2e 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* FAQ Section */
.page-resources-how-to-play-safely-on-sumvip-sweet__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  color: #017439;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-item.active .page-resources-how-to-play-safely-on-sumvip-sweet__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f9f9f9;
  color: #333333;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-item.active .page-resources-how-to-play-safely-on-sumvip-sweet__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px;
}

.page-resources-how-to-play-safely-on-sumvip-sweet__faq-answer p {
  margin-bottom: 0;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-description {
    font-size: 1.1em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__sub-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-play-safely-on-sumvip-sweet {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__container {
    padding: 0 15px;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-section {
    padding: 40px 15px;
    min-height: auto;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__btn-primary,
  .page-resources-how-to-play-safely-on-sumvip-sweet__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-content .page-resources-how-to-play-safely-on-sumvip-sweet__btn-primary {
    margin-bottom: 0; /* Last button in hero content, if only one */
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__sub-title {
    font-size: 1.3em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all image containers also adapt */
  .page-resources-how-to-play-safely-on-sumvip-sweet__hero-image-wrapper,
  .page-resources-how-to-play-safely-on-sumvip-sweet__content-area,
  .page-resources-how-to-play-safely-on-sumvip-sweet__cta-section,
  .page-resources-how-to-play-safely-on-sumvip-sweet__faq-list,
  .page-resources-how-to-play-safely-on-sumvip-sweet__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__cta-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__cta-description {
    font-size: 0.95em;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__faq-answer {
    padding: 0 15px;
  }

  .page-resources-how-to-play-safely-on-sumvip-sweet__faq-item.active .page-resources-how-to-play-safely-on-sumvip-sweet__faq-answer {
    padding: 15px;
  }
}