/* style/resources-how-to-claim-188k-bonus.css */

:root {
  --primary-color: #007BFF;
  --secondary-color: #FFC107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --dark-bg-1: #0d0d0d; /* Assuming this from shared.css */
}

/* Ensure page content starts below fixed header */
.page-resources-how-to-claim-188k-bonus {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  background-color: var(--dark-bg-1); /* Consistent with body background */
  color: var(--text-light); /* Light text on dark background */
}

.page-resources-how-to-claim-188k-bonus__hero-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
  padding-top: 180px; /* Ensure content is not hidden by fixed header on desktop */
}

.page-resources-how-to-claim-188k-bonus__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-claim-188k-bonus__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-how-to-claim-188k-bonus__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-how-to-claim-188k-bonus__hero-description a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-how-to-claim-188k-bonus__hero-description a:hover {
  color: #fff;
}

.page-resources-how-to-claim-188k-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-how-to-claim-188k-bonus__cta-button:hover {
  background: #ffdb58; /* Lighter shade of secondary */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-claim-188k-bonus__cta-button.page-resources-how-to-claim-188k-bonus__cta-small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 15px;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-how-to-claim-118k-bonus__cta-button.page-resources-how-to-claim-188k-bonus__cta-small:hover {
  background: #0056b3; /* Darker shade of primary */
}

.page-resources-how-to-claim-188k-bonus__cta-button.page-resources-how-to-claim-188k-bonus__cta-large {
  margin-top: 40px;
  padding: 18px 50px;
  font-size: 22px;
}

.page-resources-how-to-claim-188k-bonus__content-section {
  padding: 40px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-how-to-claim-188k-bonus__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-resources-how-to-claim-188k-bonus__section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-resources-how-to-claim-188k-bonus__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-how-to-claim-188k-bonus__article p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__article p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-claim-188k-bonus__article p a:hover {
  text-decoration: underline;
}

.page-resources-how-to-claim-188k-bonus__article ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__article ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__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);
  object-fit: cover;
}

/* FAQ Section Styles */
.page-resources-how-to-claim-188k-bonus__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-claim-188k-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-resources-how-to-claim-188k-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__faq-item.active .page-resources-how-to-claim-188k-bonus__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px !important;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

.page-resources-how-to-claim-188k-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-how-to-claim-188k-bonus__faq-question:active {
  background: #eeeeee;
}

.page-resources-how-to-claim-188k-bonus__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-resources-how-to-claim-188k-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-how-to-claim-188k-bonus__faq-item.active .page-resources-how-to-claim-188k-bonus__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Rotate to form an 'X' or similar for close */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-claim-188k-bonus {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-claim-188k-bonus__hero-banner {
    padding: 40px 15px;
    padding-top: 160px !important; /* Mobile: Override desktop padding for hero */
  }

  .page-resources-how-to-claim-188k-bonus__hero-title {
    font-size: 32px;
  }

  .page-resources-how-to-claim-188k-bonus__hero-description {
    font-size: 16px;
  }

  .page-resources-how-to-claim-188k-bonus__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-resources-how-to-claim-188k-bonus__cta-button.page-resources-how-to-claim-188k-bonus__cta-small {
    padding: 8px 20px;
    font-size: 14px;
  }

  .page-resources-how-to-claim-188k-bonus__cta-button.page-resources-how-to-claim-188k-bonus__cta-large {
    padding: 15px 40px;
    font-size: 18px;
  }

  .page-resources-how-to-claim-188k-bonus__content-section {
    padding: 20px 15px;
  }

  .page-resources-how-to-claim-188k-bonus__container,
  .page-resources-how-to-claim-188k-bonus__article {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px;
  }

  .page-resources-how-to-claim-188k-bonus__section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-resources-how-to-claim-188k-bonus__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-how-to-claim-188k-bonus__article p,
  .page-resources-how-to-claim-188k-bonus__article ul li {
    font-size: 15px;
  }

  .page-resources-how-to-claim-188k-bonus__image {
    margin: 20px auto;
  }

  .page-resources-how-to-claim-188k-bonus__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-resources-how-to-claim-188k-bonus__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

  .page-resources-how-to-claim-188k-bonus__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-resources-how-to-claim-188k-bonus__faq-answer {
    padding: 0 15px;
  }

  .page-resources-how-to-claim-188k-bonus__faq-item.active .page-resources-how-to-claim-188k-bonus__faq-answer {
    padding: 15px !important;
  }

  /* Force image responsiveness */
  .page-resources-how-to-claim-188k-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}