/* style/blog-good88-latest-gameplay.css */

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

/* Base styles for the page content */
.page-blog-good88-latest-gameplay {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-background); /* Default background for the page */
}

/* Ensure body padding-top is handled by shared.css */
/* .page-blog-good88-latest-gameplay should not have padding-top: var(--header-offset); */

.page-blog-good88-latest-gameplay__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-good88-latest-gameplay__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--page-deep-green-color);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-good88-latest-gameplay__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
}

.page-blog-good88-latest-gameplay__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Absolutely no CSS filter for images */
}

.page-blog-good88-latest-gameplay__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font-size rule */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-gold-color);
}

.page-blog-good88-latest-gameplay__subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-good88-latest-gameplay__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-good88-latest-gameplay__btn-primary,
.page-blog-good88-latest-gameplay__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Button responsiveness */
  white-space: normal; /* Button text wrapping */
  word-wrap: break-word; /* Button text wrapping */
}

.page-blog-good88-latest-gameplay__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* Always white for primary button text */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-good88-latest-gameplay__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-good88-latest-gameplay__btn-secondary {
  background: transparent;
  color: var(--page-glow-color);
  border: 2px solid var(--page-glow-color);
  box-shadow: none;
}

.page-blog-good88-latest-gameplay__btn-secondary:hover {
  background: rgba(var(--page-glow-color), 0.1);
  transform: translateY(-2px);
}

.page-blog-good88-latest-gameplay__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-good88-latest-gameplay__introduction-section,
.page-blog-good88-latest-gameplay__analysis-section,
.page-blog-good88-latest-gameplay__tips-section,
.page-blog-good88-latest-gameplay__faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--page-divider-color);
}

.page-blog-good88-latest-gameplay__cta-section {
  padding: 80px 0;
  background-color: var(--page-deep-green-color);
  text-align: center;
}

.page-blog-good88-latest-gameplay__cta-section .page-blog-good88-latest-gameplay__section-title {
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__cta-section p {
  color: var(--page-text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-blog-good88-latest-gameplay__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Absolutely no CSS filter for images */
}

.page-blog-good88-latest-gameplay__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-good88-latest-gameplay__feature-card {
  background-color: var(--page-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-good88-latest-gameplay__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Absolutely no CSS filter for images */
}

.page-blog-good88-latest-gameplay__card-title {
  font-size: 1.5rem;
  color: var(--page-gold-color);
  margin-bottom: 15px;
}

.page-blog-good88-latest-gameplay__feature-card p {
  color: var(--page-text-secondary);
  margin-bottom: 20px;
}

.page-blog-good88-latest-gameplay__dark-section {
  background-color: var(--page-deep-green-color);
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__dark-section .page-blog-good88-latest-gameplay__section-title {
  color: var(--page-gold-color);
}

.page-blog-good88-latest-gameplay__dark-section p,
.page-blog-good88-latest-gameplay__dark-section li {
  color: var(--page-text-secondary);
}

.page-blog-good88-latest-gameplay__light-bg {
  background-color: #0d1a13; /* A slightly lighter dark green for contrast */
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__light-bg .page-blog-good88-latest-gameplay__section-title {
  color: var(--page-gold-color);
}

.page-blog-good88-latest-gameplay__article-block {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--page-divider-color);
}

.page-blog-good88-latest-gameplay__article-block:last-of-type {
  border-bottom: none;
}

.page-blog-good88-latest-gameplay__article-title {
  font-size: 2rem;
  color: var(--page-gold-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-good88-latest-gameplay p {
  margin-bottom: 15px;
  color: var(--page-text-secondary);
}

.page-blog-good88-latest-gameplay__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-good88-latest-gameplay__tips-list li {
  background-color: var(--page-card-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--page-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-good88-latest-gameplay__tips-list li::before {
  content: '✓';
  color: var(--page-glow-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.page-blog-good88-latest-gameplay__faq-list {
  margin-top: 40px;
}

.page-blog-good88-latest-gameplay__faq-item {
  background-color: var(--page-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
}

.page-blog-good88-latest-gameplay__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--page-gold-color);
  background-color: var(--page-deep-green-color);
  border-bottom: 1px solid var(--page-divider-color);
}

.page-blog-good88-latest-gameplay__faq-item[open] .page-blog-good88-latest-gameplay__faq-question {
  border-bottom: 1px solid var(--page-divider-color);
}

.page-blog-good88-latest-gameplay__faq-qtext {
  flex-grow: 1;
}

.page-blog-good88-latest-gameplay__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-glow-color);
}

.page-blog-good88-latest-gameplay__faq-answer {
  padding: 20px 25px;
  color: var(--page-text-secondary);
}

.page-blog-good88-latest-gameplay__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-good88-latest-gameplay__hero-content {
    padding: 30px 15px;
  }
  .page-blog-good88-latest-gameplay__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-good88-latest-gameplay__subtitle {
    font-size: 1.1rem;
  }
  .page-blog-good88-latest-gameplay__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-good88-latest-gameplay {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-good88-latest-gameplay__container {
    padding: 0 15px;
  }

  .page-blog-good88-latest-gameplay__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-good88-latest-gameplay__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-good88-latest-gameplay__subtitle {
    font-size: 1rem;
  }

  .page-blog-good88-latest-gameplay__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-good88-latest-gameplay__btn-primary,
  .page-blog-good88-latest-gameplay__btn-secondary {
    width: 100% !important; /* Button responsiveness */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-good88-latest-gameplay__introduction-section,
  .page-blog-good88-latest-gameplay__analysis-section,
  .page-blog-good88-latest-gameplay__tips-section,
  .page-blog-good88-latest-gameplay__faq-section,
  .page-blog-good88-latest-gameplay__cta-section {
    padding: 40px 0;
  }

  .page-blog-good88-latest-gameplay__content-image,
  .page-blog-good88-latest-gameplay__card-image,
  .page-blog-good88-latest-gameplay img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: none; /* Absolutely no CSS filter for images */
  }
  
  .page-blog-good88-latest-gameplay__hero-image-wrapper,
  .page-blog-good88-latest-gameplay__grid-layout,
  .page-blog-good88-latest-gameplay__feature-card,
  .page-blog-good88-latest-gameplay__article-block,
  .page-blog-good88-latest-gameplay__tips-list,
  .page-blog-good88-latest-gameplay__faq-list,
  .page-blog-good88-latest-gameplay__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-blog-good88-latest-gameplay__tips-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-blog-good88-latest-gameplay__tips-list li::before {
    margin-bottom: 5px;
  }

  .page-blog-good88-latest-gameplay__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-good88-latest-gameplay__faq-answer {
    padding: 15px 20px;
  }
  
  /* Content area images CSS dimensions lower limit */
  /* All img selectors under .page-blog-good88-latest-gameplay must not result in display size < 200px */
  /* This is handled by max-width: 100% and specific img sizes in HTML for larger screens, and auto height for mobile */
  .page-blog-good88-latest-gameplay__content-area img, 
  .page-blog-good88-latest-gameplay__feature-card img, 
  .page-blog-good88-latest-gameplay__article-block img {
    min-width: 200px; /* Enforce minimum width for display, height auto will scale */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog-good88-latest-gameplay__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-blog-good88-latest-gameplay__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-blog-good88-latest-gameplay__article-title {
    font-size: 1.5rem;
  }
}