.page-blog-fh88-casino-best-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-blog-fh88-casino-best-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-fh88-casino-best-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for decor */
  overflow: hidden;
}

.page-blog-fh88-casino-best-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-fh88-casino-best-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-fh88-casino-best-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-blog-fh88-casino-best-games__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-blog-fh88-casino-best-games__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-fh88-casino-best-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-fh88-casino-best-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-fh88-casino-best-games__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-blog-fh88-casino-best-games__introduction-section,
.page-blog-fh88-casino-best-games__why-choose-us,
.page-blog-fh88-casino-best-games__promotions-section,
.page-blog-fh88-casino-best-games__cta-section,
.page-blog-fh88-casino-best-games__video-section,
.page-blog-fh88-casino-best-games__faq-section {
  padding: 60px 0;
}

.page-blog-fh88-casino-best-games__game-categories {
  padding: 60px 0;
}

.page-blog-fh88-casino-best-games__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-fh88-casino-best-games__game-category-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-fh88-casino-best-games__game-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-fh88-casino-best-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-fh88-casino-best-games__card-title {
  font-size: 1.5em;
  font-weight: 600;
  padding: 20px 20px 10px;
  color: var(--text-main);
}

.page-blog-fh88-casino-best-games__card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--text-secondary);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-fh88-casino-best-games__card-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 20px 20px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
}

.page-blog-fh88-casino-best-games__card-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-fh88-casino-best-games__why-choose-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-fh88-casino-best-games__text-block {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-fh88-casino-best-games__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-fh88-casino-best-games__feature-item {
  background-color: var(--card-bg);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-fh88-casino-best-games__feature-item strong {
  color: var(--primary-color);
}

.page-blog-fh88-casino-best-games__why-choose-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-blog-fh88-casino-best-games__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-fh88-casino-best-games__cta-button:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.page-blog-fh88-casino-best-games__cta-section--bottom .page-blog-fh88-casino-best-games__cta-button {
  margin-top: 20px;
}

.page-blog-fh88-casino-best-games__video-section {
  padding-top: 10px; /* Small decorative top padding */
  text-align: center;
}

.page-blog-fh88-casino-best-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust based on desired video width */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.page-blog-fh88-casino-best-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.page-blog-fh88-casino-best-games__faq-section {
  padding: 60px 0;
}

.page-blog-fh88-casino-best-games__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-fh88-casino-best-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
}

.page-blog-fh88-casino-best-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-fh88-casino-best-games__faq-item[open] .page-blog-fh88-casino-best-games__faq-question {
  border-bottom: 1px solid var(--divider);
}

.page-blog-fh88-casino-best-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
  transition: transform 0.3s ease;
}

.page-blog-fh88-casino-best-games__faq-item[open] .page-blog-fh88-casino-best-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-fh88-casino-best-games__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-blog-fh88-casino-best-games__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-fh88-casino-best-games__why-choose-content {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-fh88-casino-best-games__why-choose-image {
    max-width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-fh88-casino-best-games__container {
    padding: 0 15px;
  }

  .page-blog-fh88-casino-best-games__hero-content {
    padding: 20px;
  }

  .page-blog-fh88-casino-best-games__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-fh88-casino-best-games__hero-description {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }

  .page-blog-fh88-casino-best-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-fh88-casino-best-games__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-blog-fh88-casino-best-games__game-category-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .page-blog-fh88-casino-best-games__why-choose-image {
    max-width: 95%;
  }

  .page-blog-fh88-casino-best-games__card-button,
  .page-blog-fh88-casino-best-games__cta-button {
    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-fh88-casino-best-games__hero-section,
  .page-blog-fh88-casino-best-games__introduction-section,
  .page-blog-fh88-casino-best-games__game-categories,
  .page-blog-fh88-casino-best-games__why-choose-us,
  .page-blog-fh88-casino-best-games__promotions-section,
  .page-blog-fh88-casino-best-games__cta-section,
  .page-blog-fh88-casino-best-games__video-section,
  .page-blog-fh88-casino-best-games__faq-section {
    padding: 40px 0;
  }

  .page-blog-fh88-casino-best-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

  .page-blog-fh88-casino-best-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-fh88-casino-best-games__section,
  .page-blog-fh88-casino-best-games__card,
  .page-blog-fh88-casino-best-games__container,
  .page-blog-fh88-casino-best-games__video-section,
  .page-blog-fh88-casino-best-games__video-container,
  .page-blog-fh88-casino-best-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-fh88-casino-best-games video,
  .page-blog-fh88-casino-best-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}