/* style/blog-bcgame-slot-winning-strategy.css */

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

.page-blog-bcgame-slot-winning-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--bcgame-text-main); /* Main text color for dark body background */
  background-color: var(--bcgame-background); /* Explicitly set for content area if body is not covering */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-bcgame-slot-winning-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 60px 20px; /* Adjusted padding */
  background-color: var(--bcgame-background);
}

.page-blog-bcgame-slot-winning-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper can scale */
  margin-bottom: 30px;
}

.page-blog-bcgame-slot-winning-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-bcgame-slot-winning-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-bcgame-slot-winning-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--bcgame-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-bcgame-slot-winning-strategy__hero-description {
  font-size: 1.1rem;
  color: var(--bcgame-text-secondary);
  margin-bottom: 30px;
}

.page-blog-bcgame-slot-winning-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bcgame-background);
  border-radius: 8px;
}

.page-blog-bcgame-slot-winning-strategy__section-title {
  font-size: 2.2rem;
  color: var(--bcgame-main-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  font-weight: 600;
}

.page-blog-bcgame-slot-winning-strategy__sub-title {
  font-size: 1.6rem;
  color: var(--bcgame-accent-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-bcgame-slot-winning-strategy p {
  margin-bottom: 15px;
  color: var(--bcgame-text-main);
}

.page-blog-bcgame-slot-winning-strategy ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--bcgame-text-main);
}

.page-blog-bcgame-slot-winning-strategy li {
  margin-bottom: 8px;
  color: var(--bcgame-text-main);
}

.page-blog-bcgame-slot-winning-strategy a {
  color: var(--bcgame-accent-color);
  text-decoration: underline;
}

.page-blog-bcgame-slot-winning-strategy a:hover {
  color: var(--bcgame-glow);
}

.page-blog-bcgame-slot-winning-strategy__btn-primary,
.page-blog-bcgame-slot-winning-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-bcgame-slot-winning-strategy__btn-primary {
  background: var(--bcgame-button-gradient);
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-blog-bcgame-slot-winning-strategy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-bcgame-slot-winning-strategy__btn-secondary {
  background: transparent;
  color: var(--bcgame-main-color);
  border: 2px solid var(--bcgame-main-color);
}

.page-blog-bcgame-slot-winning-strategy__btn-secondary:hover {
  background: var(--bcgame-main-color);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-blog-bcgame-slot-winning-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-bcgame-slot-winning-strategy__image-wrapper {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-bcgame-slot-winning-strategy__content-image {
  width: 100%;
  max-width: 800px; /* Recommended size for content images */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-blog-bcgame-slot-winning-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-bcgame-slot-winning-strategy__faq-item {
  background-color: var(--bcgame-card-bg);
  border: 1px solid var(--bcgame-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--bcgame-text-main);
}

.page-blog-bcgame-slot-winning-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--bcgame-text-main);
  position: relative;
  list-style: none;
}

.page-blog-bcgame-slot-winning-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bcgame-slot-winning-strategy__faq-question:hover {
  background-color: rgba(var(--bcgame-main-color), 0.1);
}

.page-blog-bcgame-slot-winning-strategy__faq-qtext {
  flex-grow: 1;
  color: var(--bcgame-text-main);
}

.page-blog-bcgame-slot-winning-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--bcgame-accent-color);
}

.page-blog-bcgame-slot-winning-strategy__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1rem;
  color: var(--bcgame-text-secondary);
}

.page-blog-bcgame-slot-winning-strategy__faq-answer p {
  margin-bottom: 0;
  color: var(--bcgame-text-secondary);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-bcgame-slot-winning-strategy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-bcgame-slot-winning-strategy__hero-section {
    padding: 0 15px 40px 15px;
  }

  .page-blog-bcgame-slot-winning-strategy__hero-content {
    padding: 0 15px;
  }

  .page-blog-bcgame-slot-winning-strategy__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-bcgame-slot-winning-strategy__hero-description {
    font-size: 1rem;
  }

  .page-blog-bcgame-slot-winning-strategy__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-bcgame-slot-winning-strategy__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-bcgame-slot-winning-strategy__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-bcgame-slot-winning-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-bcgame-slot-winning-strategy__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-bcgame-slot-winning-strategy__cta-button,
  .page-blog-bcgame-slot-winning-strategy__btn-primary,
  .page-blog-bcgame-slot-winning-strategy__btn-secondary,
  .page-blog-bcgame-slot-winning-strategy a[class*="button"],
  .page-blog-bcgame-slot-winning-strategy 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: 10px 0 !important; /* Adjust margin for vertical stacking */
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-bcgame-slot-winning-strategy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px; /* Space between stacked buttons */
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-bcgame-slot-winning-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-bcgame-slot-winning-strategy__faq-answer {
    padding: 0 20px 15px 20px;
  }
}