/* style/resources-how-to-register-for-sic-bo-bonuses.css */

/* Base styles for the page */
.page-resources-how-to-register-for-sic-bo-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a2e; /* Inherited from body via shared.css */
}

.page-resources-how-to-register-for-sic-bo-bonuses__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-how-to-register-for-sic-bo-bonuses__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-resources-how-to-register-for-sic-bo-bonuses__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(to right, #26A9E0, #1a1a2e);
}

.page-resources-how-to-register-for-sic-bo-bonuses__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-bottom: 40px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-how-to-register-for-sic-bo-bonuses__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-how-to-register-for-sic-bo-bonuses__hero-image-wrapper {
  max-width: 1000px;
  width: 100%;
  margin-top: 40px;
  z-index: 5;
}

.page-resources-how-to-register-for-sic-bo-bonuses__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-resources-how-to-register-for-sic-bo-bonuses__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-register-for-sic-bo-bonuses__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-how-to-register-for-sic-bo-bonuses__unordered-list,
.page-resources-how-to-register-for-sic-bo-bonuses__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-how-to-register-for-sic-bo-bonuses__list-item strong {
  color: #000000;
}

.page-resources-how-to-register-for-sic-bo-bonuses__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-resources-how-to-register-for-sic-bo-bonuses__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Buttons */
.page-resources-how-to-register-for-sic-bo-bonuses__btn-primary,
.page-resources-how-to-register-for-sic-bo-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-how-to-register-for-sic-bo-bonuses__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin-right: 15px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
  transform: translateY(-2px);
}

.page-resources-how-to-register-for-sic-bo-bonuses__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-register-for-sic-bo-bonuses__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b7;
  transform: translateY(-2px);
}

.page-resources-how-to-register-for-sic-bo-bonuses__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* FAQ Section */
.page-resources-how-to-register-for-sic-bo-bonuses__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #f0f8ff;
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-question:hover {
  background-color: #e6f2ff;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-item.active .page-resources-how-to-register-for-sic-bo-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-item.active .page-resources-how-to-register-for-sic-bo-bonuses__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-how-to-register-for-sic-bo-bonuses__faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-register-for-sic-bo-bonuses__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__content-area {
    padding: 30px 15px;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__paragraph,
  .page-resources-how-to-register-for-sic-bo-bonuses__list-item {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-resources-how-to-register-for-sic-bo-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important; /* Enforce minimum size */
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__image-container,
  .page-resources-how-to-register-for-sic-bo-bonuses__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-resources-how-to-register-for-sic-bo-bonuses__btn-primary,
  .page-resources-how-to-register-for-sic-bo-bonuses__btn-secondary,
  .page-resources-how-to-register-for-sic-bo-bonuses a[class*="button"],
  .page-resources-how-to-register-for-sic-bo-bonuses a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-right: 0 !important; /* Remove right margin for stacked buttons */
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__cta-wrapper {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-register-for-sic-bo-bonuses__faq-item.active .page-resources-how-to-register-for-sic-bo-bonuses__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure content sections and containers are responsive */
.page-resources-how-to-register-for-sic-bo-bonuses__section,
.page-resources-how-to-register-for-sic-bo-bonuses__card,
.page-resources-how-to-register-for-sic-bo-bonuses__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Content images minimum size enforcement */
.page-resources-how-to-register-for-sic-bo-bonuses p img,
.page-resources-how-to-register-for-sic-bo-bonuses li img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* No CSS filter for images */
.page-resources-how-to-register-for-sic-bo-bonuses img {
  filter: none !important;
}