/* style/blog-how-to-use-xibet-code-for-bonuses.css */

:root {
  --xibet-primary: #11A84E;
  --xibet-secondary: #22C768;
  --xibet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --xibet-card-bg: #11271B;
  --xibet-background: #08160F;
  --xibet-text-main: #F2FFF6;
  --xibet-text-secondary: #A7D9B8;
  --xibet-border: #2E7A4E;
  --xibet-glow: #57E38D;
  --xibet-gold: #F2C14E;
  --xibet-divider: #1E3A2A;
  --xibet-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-blog-how-to-use-xibet-code-for-bonuses {
  color: var(--xibet-text-main); /* Default text color for dark body background */
  background-color: var(--xibet-background); /* Explicitly set for clarity */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-blog-how-to-use-xibet-code-for-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-use-xibet-code-for-bonuses__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-how-to-use-xibet-code-for-bonuses__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-how-to-use-xibet-code-for-bonuses__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--xibet-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__description {
  font-size: 1.125rem;
  color: var(--xibet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-use-xibet-code-for-bonuses__btn-primary,
.page-blog-how-to-use-xibet-code-for-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-xibet-code-for-bonuses__btn-primary {
  background: var(--xibet-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-use-xibet-code-for-bonuses__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-how-to-use-xibet-code-for-bonuses__btn-secondary {
  background: none;
  color: var(--xibet-primary);
  border: 2px solid var(--xibet-primary);
  box-shadow: 0 2px 10px rgba(17, 168, 78, 0.2);
}

.page-blog-how-to-use-xibet-code-for-bonuses__btn-secondary:hover {
  background-color: var(--xibet-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

/* Content Sections */
.page-blog-how-to-use-xibet-code-for-bonuses__content-section {
  padding: 60px 0;
}

.page-blog-how-to-use-xibet-code-for-bonuses__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--xibet-gold);
}

.page-blog-how-to-use-xibet-code-for-bonuses__text-block {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__text-block p {
  margin-bottom: 1.2em;
  color: inherit;
}

.page-blog-how-to-use-xibet-code-for-bonuses__highlight {
  color: var(--xibet-gold);
  font-weight: 700;
}

.page-blog-how-to-use-xibet-code-for-bonuses__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-blog-how-to-use-xibet-code-for-bonuses__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--xibet-secondary);
  font-weight: 700;
}

.page-blog-how-to-use-xibet-code-for-bonuses__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-how-to-use-xibet-code-for-bonuses__faq-section {
  padding: 60px 0;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-item {
  background-color: var(--xibet-card-bg);
  border: 1px solid var(--xibet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--xibet-text-main);
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  color: var(--xibet-text-main);
  font-weight: 600;
  font-size: 1.1rem;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xibet-secondary);
  margin-left: 15px;
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-item[open] .page-blog-how-to-use-xibet-code-for-bonuses__faq-toggle {
  content: '−';
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--xibet-text-secondary);
}

.page-blog-how-to-use-xibet-code-for-bonuses__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-how-to-use-xibet-code-for-bonuses__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Color Contrast System */
.page-blog-how-to-use-xibet-code-for-bonuses__dark-bg {
  background-color: var(--xibet-background);
  color: var(--xibet-text-main);
}

.page-blog-how-to-use-xibet-code-for-bonuses__light-bg {
  background-color: #0d2017; /* Slightly lighter dark for contrast */
  color: var(--xibet-text-main);
}

.page-blog-how-to-use-xibet-code-for-bonuses__light-bg p,
.page-blog-how-to-use-xibet-code-for-bonuses__light-bg li {
  color: var(--xibet-text-secondary);
}

.page-blog-how-to-use-xibet-code-for-bonuses__light-bg .page-blog-how-to-use-xibet-code-for-bonuses__section-title {
  color: var(--xibet-gold);
}

.page-blog-how-to-use-xibet-code-for-bonuses__dark-bg p,
.page-blog-how-to-use-xibet-code-for-bonuses__dark-bg li {
  color: var(--xibet-text-secondary);
}

.page-blog-how-to-use-xibet-code-for-bonuses__dark-bg .page-blog-how-to-use-xibet-code-for-bonuses__section-title {
  color: var(--xibet-gold);
}

.page-blog-how-to-use-xibet-code-for-bonuses a {
  color: var(--xibet-secondary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-how-to-use-xibet-code-for-bonuses a:hover {
  color: var(--xibet-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-how-to-use-xibet-code-for-bonuses__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__btn-primary,
  .page-blog-how-to-use-xibet-code-for-bonuses__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__content-section,
  .page-blog-how-to-use-xibet-code-for-bonuses__faq-section,
  .page-blog-how-to-use-xibet-code-for-bonuses__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__text-block {
    font-size: 0.95rem;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__list-item {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__list-item::before {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-use-xibet-code-for-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__hero-image-wrapper,
  .page-blog-how-to-use-xibet-code-for-bonuses__container,
  .page-blog-how-to-use-xibet-code-for-bonuses__content-section,
  .page-blog-how-to-use-xibet-code-for-bonuses__faq-section,
  .page-blog-how-to-use-xibet-code-for-bonuses__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-use-xibet-code-for-bonuses__faq-answer {
    padding: 0 20px 15px;
  }
}