/* style/blog-new-slot-games-2024.css */

/* Body background from shared.css is dark, so use light text */
.page-blog-new-slot-games-2024 {
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-new-slot-games-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-new-slot-games-2024__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-new-slot-games-2024__section-description {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-new-slot-games-2024__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles --header-offset, use small padding-top here */
  background: var(--bg-color, #08160F);
}

.page-blog-new-slot-games-2024__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-new-slot-games-2024__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-new-slot-games-2024__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 15px;
  max-width: 900px;
  margin-top: 20px;
}

.page-blog-new-slot-games-2024__main-title {
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(2em, 4vw, 3.5em); /* Use clamp for H1 font size */
}

.page-blog-new-slot-games-2024__hero-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-blog-new-slot-games-2024__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-new-slot-games-2024__btn-primary,
.page-blog-new-slot-games-2024__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-new-slot-games-2024__btn-primary {
  background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
  color: var(--text-main, #F2FFF6);
  border: none;
}

.page-blog-new-slot-games-2024__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-new-slot-games-2024__btn-secondary {
  background: transparent;
  color: var(--main-color, #11A84E);
  border: 2px solid var(--main-color, #11A84E);
}

.page-blog-new-slot-games-2024__btn-secondary:hover {
  background: var(--main-color, #11A84E);
  color: var(--text-main, #F2FFF6);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-new-slot-games-2024__introduction-section,
.page-blog-new-slot-games-2024__promotions-section,
.page-blog-new-slot-games-2024__cta-section {
  background: var(--deep-green, #0A4B2C);
  padding: 80px 0;
}

.page-blog-new-slot-games-2024__featured-games-section,
.page-blog-new-slot-games-2024__how-to-play-section,
.page-blog-new-slot-games-2024__tips-section,
.page-blog-new-slot-games-2024__faq-section {
  background: var(--bg-color, #08160F);
  padding: 80px 0;
}

.page-blog-new-slot-games-2024__text-block {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Grid */
.page-blog-new-slot-games-2024__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-new-slot-games-2024__game-card,
.page-blog-new-slot-games-2024__promo-card {
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-new-slot-games-2024__game-card:hover,
.page-blog-new-slot-games-2024__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-new-slot-games-2024__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-new-slot-games-2024__game-title,
.page-blog-new-slot-games-2024__promo-title {
  font-size: 1.4em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-new-slot-games-2024__game-title a,
.page-blog-new-slot-games-2024__link-text {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
}

.page-blog-new-slot-games-2024__game-title a:hover,
.page-blog-new-slot-games-2024__link-text:hover {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

.page-blog-new-slot-games-2024__game-provider {
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
  margin-bottom: 10px;
}

.page-blog-new-slot-games-2024__game-desc,
.page-blog-new-slot-games-2024__promo-desc {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
  margin-bottom: 20px;
}

.page-blog-new-slot-games-2024__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-blog-new-slot-games-2024__cta-center {
  text-align: center;
  margin-top: 30px;
}

/* Why Choose FH88 */
.page-blog-new-slot-games-2024__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-slot-games-2024__feature-item {
  text-align: center;
  padding: 20px;
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-new-slot-games-2024__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-new-slot-games-2024__feature-title {
  font-size: 1.3em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-new-slot-games-2024__feature-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

/* How to Play */
.page-blog-new-slot-games-2024__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-new-slot-games-2024__step-item {
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-new-slot-games-2024__step-title {
  font-size: 1.5em;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-new-slot-games-2024__step-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
  margin-bottom: 20px;
}

/* Promotions */
.page-blog-new-slot-games-2024__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Tips Section */
.page-blog-new-slot-games-2024__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-new-slot-games-2024__tip-item {
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-new-slot-games-2024__tip-title {
  font-size: 1.3em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-new-slot-games-2024__tip-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

/* Mobile Experience */
.page-blog-new-slot-games-2024__mobile-experience-section {
  padding: 80px 0;
}

.page-blog-new-slot-games-2024__mobile-experience-section .page-blog-new-slot-games-2024__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-blog-new-slot-games-2024__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-blog-new-slot-games-2024__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.page-blog-new-slot-games-2024__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-new-slot-games-2024__mobile-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-new-slot-games-2024__mobile-features li {
  color: var(--text-main, #F2FFF6);
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-blog-new-slot-games-2024__mobile-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
}

/* FAQ Section */
.page-blog-new-slot-games-2024__faq-list {
  margin-top: 40px;
}

.page-blog-new-slot-games-2024__faq-item {
  background: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-new-slot-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  font-weight: bold;
  background: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  list-style: none; /* For details/summary */
}

.page-blog-new-slot-games-2024__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-new-slot-games-2024__faq-question:hover {
  background: var(--main-color, #11A84E);
}

.page-blog-new-slot-games-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-new-slot-games-2024__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-new-slot-games-2024__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

.page-blog-new-slot-games-2024__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-new-slot-games-2024__faq-answer a {
  color: var(--glow, #57E38D);
  text-decoration: none;
}

.page-blog-new-slot-games-2024__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-blog-new-slot-games-2024__cta-section {
  text-align: center;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-new-slot-games-2024__section-title {
    font-size: 2em;
  }
  .page-blog-new-slot-games-2024__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-new-slot-games-2024 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-new-slot-games-2024__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-blog-new-slot-games-2024__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-new-slot-games-2024__hero-description {
    font-size: 1em;
  }

  .page-blog-new-slot-games-2024__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-new-slot-games-2024__btn-primary,
  .page-blog-new-slot-games-2024__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-new-slot-games-2024__section-title {
    font-size: 1.8em;
  }

  .page-blog-new-slot-games-2024__section-description {
    font-size: 0.95em;
  }

  .page-blog-new-slot-games-2024__game-grid,
  .page-blog-new-slot-games-2024__features-grid,
  .page-blog-new-slot-games-2024__step-list,
  .page-blog-new-slot-games-2024__promo-grid,
  .page-blog-new-slot-games-2024__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-new-slot-games-2024__mobile-experience-section .page-blog-new-slot-games-2024__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-new-slot-games-2024__mobile-image-wrapper {
    order: -1; /* Image first on mobile */
  }

  /* Images responsive */
  .page-blog-new-slot-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/content */
  .page-blog-new-slot-games-2024__hero-section,
  .page-blog-new-slot-games-2024__introduction-section,
  .page-blog-new-slot-games-2024__featured-games-section,
  .page-blog-new-slot-games-2024__why-choose-fh88,
  .page-blog-new-slot-games-2024__how-to-play-section,
  .page-blog-new-slot-games-2024__promotions-section,
  .page-blog-new-slot-games-2024__tips-section,
  .page-blog-new-slot-games-2024__mobile-experience-section,
  .page-blog-new-slot-games-2024__faq-section,
  .page-blog-new-slot-games-2024__cta-section,
  .page-blog-new-slot-games-2024__container,
  .page-blog-new-slot-games-2024__game-card,
  .page-blog-new-slot-games-2024__promo-card,
  .page-blog-new-slot-games-2024__feature-item,
  .page-blog-new-slot-games-2024__step-item,
  .page-blog-new-slot-games-2024__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-new-slot-games-2024__cta-buttons,
  .page-blog-new-slot-games-2024__button-group,
  .page-blog-new-slot-games-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking on mobile */
  }

  .page-blog-new-slot-games-2024__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-new-slot-games-2024__faq-answer {
    padding: 15px;
  }

  .page-blog-new-slot-games-2024__faq-answer a {
    display: block;
    margin-top: 10px;
  }
}

/* Global image size enforcement (min 200x200px) */
.page-blog-new-slot-games-2024 img:not(.page-blog-new-slot-games-2024__feature-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for feature icons to allow smaller visual size, while actual image is still large */
.page-blog-new-slot-games-2024__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 120px; /* Adjusted minimum for icons as per instruction, but still large enough for content */
  min-height: 120px;
}

/* Contrast Fixes */
.page-blog-new-slot-games-2024__dark-section {
  background: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

.page-blog-new-slot-games-2024__card {
  background: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-blog-new-slot-games-2024__card p,
.page-blog-new-slot-games-2024__card a {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-new-slot-games-2024__card .page-blog-new-slot-games-2024__game-title a {
  color: var(--text-main, #F2FFF6);
}

.page-blog-new-slot-games-2024__btn-primary {
  background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
  color: var(--text-main, #F2FFF6);
}

.page-blog-new-slot-games-2024__btn-secondary {
  background: transparent;
  color: var(--main-color, #11A84E);
  border: 2px solid var(--main-color, #11A84E);
}

.page-blog-new-slot-games-2024__btn-secondary:hover {
  background: var(--main-color, #11A84E);
  color: var(--text-main, #F2FFF6);
}

/* CSS for FAQ Details element */
.page-blog-new-slot-games-2024__faq-item[open] .page-blog-new-slot-games-2024__faq-question {
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-new-slot-games-2024__faq-item[open] .page-blog-new-slot-games-2024__faq-toggle {
  content: '−';
}