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

.page-blog-c8bet-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--c8bet-text-main); /* Default text color for dark background */
  background-color: var(--c8bet-background-color);
}

.page-blog-c8bet-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-c8bet-game-strategy__hero-section {
  position: relative;
  width: 100%;
  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-c8bet-game-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-c8bet-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-blog-c8bet-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Overlap slightly for visual effect, but not text on image */
  background: rgba(8, 22, 15, 0.85); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-c8bet-game-strategy__hero-title {
  font-weight: bold;
  color: var(--c8bet-text-main);
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-blog-c8bet-game-strategy__hero-description {
  font-size: 1.1em;
  color: var(--c8bet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-c8bet-game-strategy__cta-button {
  display: inline-block;
  background: var(--c8bet-button-gradient);
  color: var(--c8bet-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  box-sizing: border-box;
}

.page-blog-c8bet-game-strategy__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-c8bet-game-strategy__cta-button--primary {
  background: var(--c8bet-button-gradient);
  color: var(--c8bet-text-main);
}

.page-blog-c8bet-game-strategy__cta-button--secondary {
  background: none;
  border: 2px solid var(--c8bet-primary-color);
  color: var(--c8bet-primary-color);
}

.page-blog-c8bet-game-strategy__cta-button--secondary:hover {
  background: var(--c8bet-primary-color);
  color: var(--c8bet-text-main);
}

.page-blog-c8bet-game-strategy__introduction-section,
.page-blog-c8bet-game-strategy__game-strategies-section,
.page-blog-c8bet-game-strategy__management-section,
.page-blog-c8bet-game-strategy__promotions-section,
.page-blog-c8bet-game-strategy__safety-section,
.page-blog-c8bet-game-strategy__faq-section,
.page-blog-c8bet-game-strategy__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--c8bet-divider-color);
}

.page-blog-c8bet-game-strategy__introduction-section:last-of-type {
  border-bottom: none;
}

.page-blog-c8bet-game-strategy__section-title {
  font-size: 2.5em;
  color: var(--c8bet-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-c8bet-game-strategy__sub-title {
  font-size: 1.8em;
  color: var(--c8bet-text-main);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-c8bet-game-strategy__paragraph {
  font-size: 1.1em;
  color: var(--c8bet-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-c8bet-game-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--c8bet-text-secondary);
}

.page-blog-c8bet-game-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-c8bet-game-strategy__strategy-card {
  background-color: var(--c8bet-card-bg);
  border: 1px solid var(--c8bet-border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-c8bet-game-strategy__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-c8bet-game-strategy__card-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-blog-c8bet-game-strategy__card-title {
  font-size: 1.6em;
  color: var(--c8bet-text-main);
  margin-bottom: 15px;
}

.page-blog-c8bet-game-strategy__card-description {
  font-size: 1em;
  color: var(--c8bet-text-secondary);
  margin-bottom: 15px;
}

.page-blog-c8bet-game-strategy__content-block {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.page-blog-c8bet-game-strategy__content-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-c8bet-game-strategy__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-blog-c8bet-game-strategy__text-content {
  flex: 1;
  max-width: 50%;
}

.page-blog-c8bet-game-strategy__promotions-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-c8bet-game-strategy__faq-list {
  margin-top: 30px;
}

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

.page-blog-c8bet-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--c8bet-text-main);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--c8bet-deep-green);
  border-bottom: 1px solid var(--c8bet-border-color);
  list-style: none; /* For details/summary */
}

.page-blog-c8bet-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-c8bet-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-c8bet-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--c8bet-glow-color);
}

.page-blog-c8bet-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--c8bet-text-secondary);
  border-top: 1px solid var(--c8bet-divider-color);
}

details.page-blog-c8bet-game-strategy__faq-item[open] .page-blog-c8bet-game-strategy__faq-question {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-c8bet-game-strategy__hero-content {
    margin-top: -100px;
  }

  .page-blog-c8bet-game-strategy__section-title {
    font-size: 2em;
  }

  .page-blog-c8bet-game-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-blog-c8bet-game-strategy__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-c8bet-game-strategy__content-block--reverse {
    flex-direction: column;
  }

  .page-blog-c8bet-game-strategy__content-image,
  .page-blog-c8bet-game-strategy__text-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-c8bet-game-strategy__hero-content {
    margin-top: -50px;
    padding: 15px;
  }

  .page-blog-c8bet-game-strategy__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
  }

  .page-blog-c8bet-game-strategy__hero-description {
    font-size: 1em;
  }

  .page-blog-c8bet-game-strategy__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-c8bet-game-strategy__cta-button + .page-blog-c8bet-game-strategy__cta-button {
    margin-top: 10px;
  }

  .page-blog-c8bet-game-strategy__introduction-section,
  .page-blog-c8bet-game-strategy__game-strategies-section,
  .page-blog-c8bet-game-strategy__management-section,
  .page-blog-c8bet-game-strategy__promotions-section,
  .page-blog-c8bet-game-strategy__safety-section,
  .page-blog-c8bet-game-strategy__faq-section,
  .page-blog-c8bet-game-strategy__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-c8bet-game-strategy__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-c8bet-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-c8bet-game-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-blog-c8bet-game-strategy__paragraph,
  .page-blog-c8bet-game-strategy__list li,
  .page-blog-c8bet-game-strategy__card-description {
    font-size: 1em;
  }

  .page-blog-c8bet-game-strategy__card-image,
  .page-blog-c8bet-game-strategy__content-image,
  .page-blog-c8bet-game-strategy__promotions-image,
  .page-blog-c8bet-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-c8bet-game-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-c8bet-game-strategy__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-c8bet-game-strategy__hero-content {
    margin-top: -30px;
  }

  .page-blog-c8bet-game-strategy__hero-title {
    font-size: clamp(1.5em, 8vw, 2em) !important;
  }

  .page-blog-c8bet-game-strategy__section-title {
    font-size: 1.5em;
  }

  .page-blog-c8bet-game-strategy__sub-title {
    font-size: 1.2em;
  }
}