/* style/blog-game-guides-tips-hb88.css */

/* Custom Colors */
:root {
  --hb88-primary-color: #11A84E;
  --hb88-secondary-color: #22C768;
  --hb88-button-gradient-start: #2AD16F;
  --hb88-button-gradient-end: #13994A;
  --hb88-card-bg: #11271B;
  --hb88-background: #08160F;
  --hb88-text-main: #F2FFF6;
  --hb88-text-secondary: #A7D9B8;
  --hb88-border-color: #2E7A4E;
  --hb88-glow-color: #57E38D;
  --hb88-gold-color: #F2C14E;
  --hb88-divider-color: #1E3A2A;
  --hb88-deep-green: #0A4B2C;
}

.page-blog-game-guides-tips-hb88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--hb88-text-main); /* Default text color for the main page content */
  background-color: var(--hb88-background);
}

.page-blog-game-guides-tips-hb88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  color: var(--hb88-text-main);
  overflow: hidden;
}

.page-blog-game-guides-tips-hb88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-blog-game-guides-tips-hb88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-game-guides-tips-hb88__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-blog-game-guides-tips-hb88__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--hb88-text-main);
  line-height: 1.2;
}

.page-blog-game-guides-tips-hb88__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--hb88-text-secondary);
}

.page-blog-game-guides-tips-hb88__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-blog-game-guides-tips-hb88__btn-primary,
.page-blog-game-guides-tips-hb88__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-game-guides-tips-hb88__btn-primary {
  background: linear-gradient(180deg, var(--hb88-button-gradient-start) 0%, var(--hb88-button-gradient-end) 100%);
  color: var(--hb88-text-main);
  border: 2px solid var(--hb88-button-gradient-start);
}

.page-blog-game-guides-tips-hb88__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--hb88-glow-color), 0.4);
}

.page-blog-game-guides-tips-hb88__btn-secondary {
  background: transparent;
  color: var(--hb88-primary-color);
  border: 2px solid var(--hb88-primary-color);
}

.page-blog-game-guides-tips-hb88__btn-secondary:hover {
  background: var(--hb88-primary-color);
  color: var(--hb88-text-main);
  transform: translateY(-2px);
}

.page-blog-game-guides-tips-hb88__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--hb88-background); /* Ensure consistent background */
  color: var(--hb88-text-main); /* Ensure text color contrasts with background */
}

.page-blog-game-guides-tips-hb88__section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-game-guides-tips-hb88__section-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--hb88-primary-color);
  border-radius: 2px;
}

.page-blog-game-guides-tips-hb88__section-title {
  font-size: 2.5em;
  color: var(--hb88-text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-game-guides-tips-hb88__text-block {
  margin-bottom: 30px;
  color: var(--hb88-text-secondary);
}

.page-blog-game-guides-tips-hb88__text-block h3 {
  color: var(--hb88-primary-color);
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-game-guides-tips-hb88__text-block p {
  margin-bottom: 15px;
  color: var(--hb88-text-secondary);
}

.page-blog-game-guides-tips-hb88__text-block a {
  color: var(--hb88-gold-color);
  text-decoration: underline;
}

.page-blog-game-guides-tips-hb88__text-block a:hover {
  color: var(--hb88-glow-color);
}

.page-blog-game-guides-tips-hb88__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-game-guides-tips-hb88__card {
  background-color: var(--hb88-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--hb88-text-main);
  border: 1px solid var(--hb88-border-color);
}

.page-blog-game-guides-tips-hb88__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(var(--hb88-glow-color), 0.3);
}

.page-blog-game-guides-tips-hb88__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-game-guides-tips-hb88__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 15px 15px 10px 15px;
  color: var(--hb88-text-main);
}

.page-blog-game-guides-tips-hb88__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-game-guides-tips-hb88__card-title a:hover {
  color: var(--hb88-primary-color);
}

.page-blog-game-guides-tips-hb88__card-description {
  font-size: 0.95em;
  color: var(--hb88-text-secondary);
  padding: 0 15px;
  flex-grow: 1;
}

.page-blog-game-guides-tips-hb88__card-button {
  margin: 15px;
  text-align: center;
}

/* FAQ Section */
.page-blog-game-guides-tips-hb88__faq-list {
  margin-top: 40px;
}

.page-blog-game-guides-tips-hb88__faq-item {
  background-color: var(--hb88-card-bg);
  border: 1px solid var(--hb88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--hb88-text-main);
}

.page-blog-game-guides-tips-hb88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--hb88-deep-green);
  color: var(--hb88-text-main);
  border-bottom: 1px solid var(--hb88-divider-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-game-guides-tips-hb88__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-game-guides-tips-hb88__faq-question:hover {
  background-color: var(--hb88-primary-color);
}

.page-blog-game-guides-tips-hb88__faq-qtext {
  flex-grow: 1;
}

.page-blog-game-guides-tips-hb88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-game-guides-tips-hb88__faq-item[open] .page-blog-game-guides-tips-hb88__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-blog-game-guides-tips-hb88__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: var(--hb88-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-guides-tips-hb88__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-game-guides-tips-hb88__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides-tips-hb88__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides-tips-hb88 {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-game-guides-tips-hb88__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-game-guides-tips-hb88__hero-content {
    padding: 15px;
  }
  .page-blog-game-guides-tips-hb88__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-blog-game-guides-tips-hb88__description {
    font-size: 1em;
  }
  .page-blog-game-guides-tips-hb88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-game-guides-tips-hb88__btn-primary,
  .page-blog-game-guides-tips-hb88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-game-guides-tips-hb88__content-area {
    padding: 30px 15px;
  }
  .page-blog-game-guides-tips-hb88__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides-tips-hb88__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-game-guides-tips-hb88__card {
    padding: 0;
  }
  .page-blog-game-guides-tips-hb88__card-image {
    height: 180px;
  }
  .page-blog-game-guides-tips-hb88__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-game-guides-tips-hb88__faq-answer {
    padding: 15px 20px;
  }
  /* Ensure all content containers are responsive */
  .page-blog-game-guides-tips-hb88__section,
  .page-blog-game-guides-tips-hb88__card,
  .page-blog-game-guides-tips-hb88__container,
  .page-blog-game-guides-tips-hb88__text-block,
  .page-blog-game-guides-tips-hb88__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-game-guides-tips-hb88__content-area .page-blog-game-guides-tips-hb88__text-block, 
  .page-blog-game-guides-tips-hb88__content-area .page-blog-game-guides-tips-hb88__grid-container {
      padding-left: 15px;
      padding-right: 15px;
  }
  .page-blog-game-guides-tips-hb88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}