/* style/blog-good88-games-exclusive-promotions-guide.css */

/* Custom Color Variables */
:root {
  --good88-primary-color: #11A84E; /* Main color */
  --good88-secondary-color: #22C768; /* Auxiliary color */
  --good88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  --good88-card-bg: #11271B; /* Card background */
  --good88-background: #08160F; /* Overall page background */
  --good88-text-main: #F2FFF6; /* Main text color */
  --good88-text-secondary: #A7D9B8; /* Secondary text color */
  --good88-border-color: #2E7A4E; /* Border color */
  --good88-glow-color: #57E38D; /* Glow effect color */
  --good88-gold-color: #F2C14E; /* Gold accent color */
  --good88-divider-color: #1E3A2A; /* Divider color */
  --good88-deep-green: #0A4B2C; /* Deep green accent */
}

.page-blog-good88-games-exclusive-promotions-guide {
  background-color: var(--good88-background); /* Overall page background */
  color: var(--good88-text-main); /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 1.125rem; /* 18px for better readability */
}

/* Hero Section */
.page-blog-good88-games-exclusive-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: var(--good88-deep-green); /* Darker green for hero section background */
}

.page-blog-good88-games-exclusive-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-good88-games-exclusive-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-good88-games-exclusive-promotions-guide__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-good88-games-exclusive-promotions-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive H1 font size */
  color: var(--good88-gold-color); /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-good88-games-exclusive-promotions-guide__description {
  font-size: 1.25rem; /* 20px */
  color: var(--good88-text-secondary); /* Secondary text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-good88-games-exclusive-promotions-guide__cta-button {
  display: inline-block;
  background: var(--good88-button-gradient);
  color: var(--good88-text-main); /* White text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-blog-good88-games-exclusive-promotions-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Content Area */
.page-blog-good88-games-exclusive-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--good88-background); /* Ensure consistent background */
  color: var(--good88-text-main); /* Main text color */
}

.page-blog-good88-games-exclusive-promotions-guide__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-good88-games-exclusive-promotions-guide__section-title {
  font-size: 2rem; /* 32px */
  color: var(--good88-gold-color); /* Gold color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--good88-divider-color);
  padding-bottom: 15px;
}

.page-blog-good88-games-exclusive-promotions-guide__text-block {
  margin-bottom: 20px;
  color: var(--good88-text-main); /* Main text color */
}

.page-blog-good88-games-exclusive-promotions-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-good88-games-exclusive-promotions-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto; /* Center image */
}

.page-blog-good88-games-exclusive-promotions-guide__list {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
  color: var(--good88-text-main); /* Main text color */
}

.page-blog-good88-games-exclusive-promotions-guide__list-item {
  margin-bottom: 10px;
}

.page-blog-good88-games-exclusive-promotions-guide__list-item strong {
  color: var(--good88-gold-color); /* Highlight strong text */
}

/* FAQ Section */
.page-blog-good88-games-exclusive-promotions-guide__faq-list {
  margin-top: 30px;
}

.page-blog-good88-games-exclusive-promotions-guide__faq-item {
  background-color: var(--good88-card-bg); /* Card background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--good88-border-color);
  overflow: hidden;
}

.page-blog-good88-games-exclusive-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--good88-text-main); /* Main text color for questions */
  background-color: var(--good88-card-bg);
  transition: background-color 0.3s ease;
}

.page-blog-good88-games-exclusive-promotions-guide__faq-question:hover {
  background-color: var(--good88-deep-green); /* Slightly darker on hover */
}

.page-blog-good88-games-exclusive-promotions-guide__faq-qtext {
  flex-grow: 1;
  font-size: 1.1rem;
  color: var(--good88-text-main);
}

.page-blog-good88-games-exclusive-promotions-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--good88-gold-color); /* Gold color for toggle */
}

.page-blog-good88-games-exclusive-promotions-guide__faq-item[open] .page-blog-good88-games-exclusive-promotions-guide__faq-toggle {
  content: '−'; /* Change to minus when open (handled by JS for non-details) */
}

.page-blog-good88-games-exclusive-promotions-guide__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--good88-text-secondary); /* Secondary text color for answers */
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-good88-games-exclusive-promotions-guide__faq-item[open] .page-blog-good88-games-exclusive-promotions-guide__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  transition: max-height 0.5s ease-in;
}

/* For details tag, hide default marker */
.page-blog-good88-games-exclusive-promotions-guide__faq-item summary {
  list-style: none;
}

.page-blog-good88-games-exclusive-promotions-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

/* CTA Buttons at bottom */
.page-blog-good88-games-exclusive-promotions-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-good88-games-exclusive-promotions-guide__btn-primary,
.page-blog-good88-games-exclusive-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-good88-games-exclusive-promotions-guide__btn-primary {
  background: var(--good88-button-gradient);
  color: var(--good88-text-main);
  border: 2px solid transparent;
}

.page-blog-good88-games-exclusive-promotions-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-good88-games-exclusive-promotions-guide__btn-secondary {
  background: transparent;
  color: var(--good88-gold-color); /* Gold text for secondary button */
  border: 2px solid var(--good88-border-color); /* Border matches accent */
}

.page-blog-good88-games-exclusive-promotions-guide__btn-secondary:hover {
  background-color: var(--good88-deep-green); /* Dark green hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-good88-games-exclusive-promotions-guide__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-blog-good88-games-exclusive-promotions-guide__description {
    font-size: 1.15rem;
  }
  .page-blog-good88-games-exclusive-promotions-guide__section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-blog-good88-games-exclusive-promotions-guide {
    font-size: 1rem; /* Adjust base font size for mobile */
    line-height: 1.5;
  }

  .page-blog-good88-games-exclusive-promotions-guide__hero-section {
    padding: 10px 15px 40px 15px; /* Adjust padding for mobile */
  }

  .page-blog-good88-games-exclusive-promotions-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-good88-games-exclusive-promotions-guide__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-good88-games-exclusive-promotions-guide__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-blog-good88-games-exclusive-promotions-guide__content-area {
    padding: 40px 15px; /* Adjust padding for mobile */
  }

  .page-blog-good88-games-exclusive-promotions-guide__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-good88-games-exclusive-promotions-guide__text-block,
  .page-blog-good88-games-exclusive-promotions-guide__list-item {
    font-size: 1rem;
  }

  .page-blog-good88-games-exclusive-promotions-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-good88-games-exclusive-promotions-guide__image-wrapper,
  .page-blog-good88-games-exclusive-promotions-guide__container,
  .page-blog-good88-games-exclusive-promotions-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-blog-good88-games-exclusive-promotions-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-good88-games-exclusive-promotions-guide__faq-qtext {
    font-size: 1rem;
  }

  .page-blog-good88-games-exclusive-promotions-guide__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-good88-games-exclusive-promotions-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px; /* Add padding to button container */
  }

  .page-blog-good88-games-exclusive-promotions-guide__btn-primary,
  .page-blog-good88-games-exclusive-promotions-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 1rem;
  }
}

/* Ensure content area images are at least 200px wide for desktop */
.page-blog-good88-games-exclusive-promotions-guide__content-area img {
  min-width: 200px;
  min-height: 200px;
}
/* No filter property to change image colors */
.page-blog-good88-games-exclusive-promotions-guide img {
  filter: none;
}