/* style/blog-how-to-choose-best-open88-game.css */

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

/* Base styles for the page content */
.page-blog-how-to-choose-best-open88-game {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark body background */
  background-color: var(--background-color); /* Matches custom background color */
}

.page-blog-how-to-choose-best-open88-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-choose-best-open88-game__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-blog-how-to-choose-best-open88-game__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-open88-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-open88-game__hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.page-blog-how-to-choose-best-open88-game__main-title {
  color: var(--text-main-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-open88-game__hero-description {
  color: var(--text-secondary-color);
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Content Area */
.page-blog-how-to-choose-best-open88-game__content-area {
  background-color: var(--background-color);
  padding: 60px 20px;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-open88-game__section-title {
  color: var(--text-main-color);
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-blog-how-to-choose-best-open88-game__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--button-gradient);
  margin: 10px auto 0;
}

.page-blog-how-to-choose-best-open88-game__sub-title {
  color: var(--text-main-color);
  font-size: 1.6em;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-open88-game__paragraph {
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-choose-best-open88-game__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-blog-how-to-choose-best-open88-game__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-how-to-choose-best-open88-game__list-item {
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-open88-game__list-item strong {
  color: var(--text-main-color);
}

/* Call to Action Buttons */
.page-blog-how-to-choose-best-open88-game__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-best-open88-game__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-choose-best-open88-game__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--glow-color), 0.4);
}

.page-blog-how-to-choose-best-open88-game__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-choose-best-open88-game__btn-secondary:hover {
  background: rgba(var(--primary-color), 0.1);
  color: var(--glow-color);
  border-color: var(--glow-color);
}

.page-blog-how-to-choose-best-open88-game__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
.page-blog-how-to-choose-best-open88-game__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-best-open88-game__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-choose-best-open88-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  user-select: none;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
}

.page-blog-how-to-choose-best-open88-game__faq-question:hover {
  background-color: rgba(var(--deep-green-color), 0.8);
}

.page-blog-how-to-choose-best-open88-game__faq-item[open] .page-blog-how-to-choose-best-open88-game__faq-question {
  border-bottom: 1px solid transparent; /* Hide border when open */
}

.page-blog-how-to-choose-best-open88-game__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-blog-how-to-choose-best-open88-game__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color);
}

.page-blog-how-to-choose-best-open88-game__faq-item[open] .page-blog-how-to-choose-best-open88-game__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-how-to-choose-best-open88-game__faq-answer {
  padding: 15px 25px;
  color: var(--text-secondary-color);
  background-color: var(--card-bg);
  font-size: 0.95em;
}

/* Remove default details marker */
.page-blog-how-to-choose-best-open88-game__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-how-to-choose-best-open88-game__faq-item summary {
  list-style: none;
}

/* CTA Section at the bottom */
.page-blog-how-to-choose-best-open88-game__cta-section {
  background-color: var(--deep-green-color);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-open88-game__cta-section .page-blog-how-to-choose-best-open88-game__section-title {
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-open88-game__cta-section .page-blog-how-to-choose-best-open88-game__paragraph {
  color: var(--text-secondary-color);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-open88-game__main-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-choose-best-open88-game__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-open88-game {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-open88-game__hero-section,
  .page-blog-how-to-choose-best-open88-game__content-area,
  .page-blog-how-to-choose-best-open88-game__cta-section {
    padding: 30px 15px !important;
  }

  .page-blog-how-to-choose-best-open88-game__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-blog-how-to-choose-best-open88-game__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-best-open88-game__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-best-open88-game__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-choose-best-open88-game__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }

  /* Images responsiveness */
  .page-blog-how-to-choose-best-open88-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-choose-best-open88-game__hero-image-wrapper,
  .page-blog-how-to-choose-best-open88-game__image-full-width,
  .page-blog-how-to-choose-best-open88-game__container,
  .page-blog-how-to-choose-best-open88-game__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Buttons responsiveness */
  .page-blog-how-to-choose-best-open88-game__cta-button,
  .page-blog-how-to-choose-best-open88-game__btn-primary,
  .page-blog-how-to-choose-best-open88-game__btn-secondary,
  .page-blog-how-to-choose-best-open88-game a[class*="button"],
  .page-blog-how-to-choose-best-open88-game a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-best-open88-game__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    padding: 0 15px;
  }

  .page-blog-how-to-choose-best-open88-game__faq-question {
    padding: 15px 20px;
  }
  .page-blog-how-to-choose-best-open88-game__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-best-open88-game__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-blog-how-to-choose-best-open88-game__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-blog-how-to-choose-best-open88-game__section-title {
    font-size: 1.6em;
  }
  .page-blog-how-to-choose-best-open88-game__sub-title {
    font-size: 1.2em;
  }
}