/* style/blog-latest-slot-game-reviews.css */

/* Base styles for the page */
.page-blog-latest-slot-game-reviews {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default light text for dark background */
  background-color: var(--background, #08160F); /* Dark background */
}

.page-blog-latest-slot-game-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-slot-game-reviews__section-title {
  font-size: 2.5rem;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-slot-game-reviews__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__text-block strong {
  color: var(--text-main, #F2FFF6);
}

.page-blog-latest-slot-game-reviews__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-latest-slot-game-reviews__btn-primary,
.page-blog-latest-slot-game-reviews__btn-secondary,
.page-blog-latest-slot-game-reviews__btn-small,
.page-blog-latest-slot-game-reviews a[class*="button"],
.page-blog-latest-slot-game-reviews a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-latest-slot-game-reviews__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* Button text always white */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-slot-game-reviews__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-latest-slot-game-reviews__btn-secondary {
  background: transparent;
  color: var(--main-color, #11A84E);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-latest-slot-game-reviews__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  transform: translateY(-2px);
  border-color: var(--main-color, #11A84E);
}

.page-blog-latest-slot-game-reviews__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
}

.page-blog-latest-slot-game-reviews__btn-small:hover {
  opacity: 0.9;
}

/* Hero Section */
.page-blog-latest-slot-game-reviews__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for internal spacing */
  background-color: var(--background, #08160F);
}

.page-blog-latest-slot-game-reviews__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-latest-slot-game-reviews__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast, not changing color */
}

.page-blog-latest-slot-game-reviews__hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-slot-game-reviews__hero-title {
  font-size: 3.2rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-slot-game-reviews__hero-description {
  font-size: 1.3rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-blog-latest-slot-game-reviews__introduction-section {
  padding: 80px 0;
  background-color: var(--background, #08160F);
}

/* Games Section */
.page-blog-latest-slot-game-reviews__games-section {
  padding: 80px 0;
  background-color: var(--card-bg, #11271B);
}

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

.page-blog-latest-slot-game-reviews__game-card {
  background-color: var(--background, #08160F);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-slot-game-reviews__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-slot-game-reviews__card-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-blog-latest-slot-game-reviews__card-title a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-slot-game-reviews__card-title a:hover {
  color: var(--gold-color, #F2C14E);
}

.page-blog-latest-slot-game-reviews__card-description {
  font-size: 1rem;
  margin: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-blog-latest-slot-game-reviews__game-features {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-blog-latest-slot-game-reviews__game-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__feature-icon {
  color: var(--main-color, #11A84E);
  margin-right: 10px;
  font-size: 1.2rem;
}

.page-blog-latest-slot-game-reviews__card-button {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
  width: calc(100% - 40px);
}

/* Guide Section */
.page-blog-latest-slot-game-reviews__guide-section {
  padding: 80px 0;
  background-color: var(--background, #08160F);
}

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

.page-blog-latest-slot-game-reviews__step-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__step-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  background-color: var(--deep-green, #0A4B2C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-blog-latest-slot-game-reviews__step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.page-blog-latest-slot-game-reviews__step-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-latest-slot-game-reviews__step-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-blog-latest-slot-game-reviews__promotions-section {
  padding: 80px 0;
  background-color: var(--card-bg, #11271B);
}

.page-blog-latest-slot-game-reviews__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-latest-slot-game-reviews__promo-item {
  background-color: var(--background, #08160F);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__promo-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-latest-slot-game-reviews__promo-description {
  font-size: 1rem;
}

/* Experience Section */
.page-blog-latest-slot-game-reviews__experience-section {
  padding: 80px 0;
  background-color: var(--background, #08160F);
}

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

.page-blog-latest-slot-game-reviews__feature-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-latest-slot-game-reviews__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brighten icons for visibility */
}

.page-blog-latest-slot-game-reviews__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-latest-slot-game-reviews__feature-description {
  font-size: 1rem;
}

/* FAQ Section */
.page-blog-latest-slot-game-reviews__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg, #11271B);
}

.page-blog-latest-slot-game-reviews__faq-list {
  margin-top: 40px;
}

.page-blog-latest-slot-game-reviews__faq-item {
  background-color: var(--background, #08160F);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.page-blog-latest-slot-game-reviews__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-slot-game-reviews__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-color, #F2C14E);
  transition: transform 0.3s ease;
}

.page-blog-latest-slot-game-reviews__faq-item[open] .page-blog-latest-slot-game-reviews__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-slot-game-reviews__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-latest-slot-game-reviews__faq-item[open] .page-blog-latest-slot-game-reviews__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  transition: max-height 0.5s ease-in;
}

.page-blog-latest-slot-game-reviews__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary, #A7D9B8);
}

/* Conclusion Section */
.page-blog-latest-slot-game-reviews__conclusion-section {
  padding: 80px 0;
  background-color: var(--background, #08160F);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-slot-game-reviews__hero-title {
    font-size: 2.8rem;
  }
  .page-blog-latest-slot-game-reviews__hero-description {
    font-size: 1.2rem;
  }
  .page-blog-latest-slot-game-reviews__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-slot-game-reviews__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  .page-blog-latest-slot-game-reviews__hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
  }
  .page-blog-latest-slot-game-reviews__hero-description {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
  }
  .page-blog-latest-slot-game-reviews__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }
  .page-blog-latest-slot-game-reviews__text-block {
    font-size: 0.95rem !important;
  }
  .page-blog-latest-slot-game-reviews__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px !important;
  }
  .page-blog-latest-slot-game-reviews__btn-primary,
  .page-blog-latest-slot-game-reviews__btn-secondary,
  .page-blog-latest-slot-game-reviews__btn-small,
  .page-blog-latest-slot-game-reviews a[class*="button"],
  .page-blog-latest-slot-game-reviews a[class*="btn"] {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-latest-slot-game-reviews img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-latest-slot-game-reviews__hero-image-wrapper,
  .page-blog-latest-slot-game-reviews__game-card,
  .page-blog-latest-slot-game-reviews__step-item,
  .page-blog-latest-slot-game-reviews__promo-item,
  .page-blog-latest-slot-game-reviews__feature-item,
  .page-blog-latest-slot-game-reviews__faq-item,
  .page-blog-latest-slot-game-reviews__container,
  .page-blog-latest-slot-game-reviews__content-area,
  .page-blog-latest-slot-game-reviews__introduction-section,
  .page-blog-latest-slot-game-reviews__games-section,
  .page-blog-latest-slot-game-reviews__guide-section,
  .page-blog-latest-slot-game-reviews__promotions-section,
  .page-blog-latest-slot-game-reviews__experience-section,
  .page-blog-latest-slot-game-reviews__faq-section,
  .page-blog-latest-slot-game-reviews__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-blog-latest-slot-game-reviews__hero-content-wrapper {
    padding: 0 15px !important;
  }

  .page-blog-latest-slot-game-reviews__game-cards,
  .page-blog-latest-slot-game-reviews__guide-steps,
  .page-blog-latest-slot-game-reviews__promo-list,
  .page-blog-latest-slot-game-reviews__feature-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-blog-latest-slot-game-reviews__section-title {
    margin-bottom: 25px !important;
  }

  .page-blog-latest-slot-game-reviews__game-card .page-blog-latest-slot-game-reviews__card-button {
    width: calc(100% - 40px) !important;
  }

  .page-blog-latest-slot-game-reviews__faq-question {
    padding: 15px 20px !important;
    font-size: 1.1rem !important;
  }

  .page-blog-latest-slot-game-reviews__faq-answer {
    padding: 15px 20px !important;
  }

  /* Content area images must be >= 200px */
  .page-blog-latest-slot-game-reviews__guide-section img,
  .page-blog-latest-slot-game-reviews__experience-section img {
    min-width: 200px !important;
    min-height: 200px !important;
    width: auto !important; /* Let max-width 100% handle responsive scaling */
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-slot-game-reviews__hero-title {
    font-size: 1.8rem !important;
  }
  .page-blog-latest-slot-game-reviews__hero-description {
    font-size: 0.9rem !important;
  }
  .page-blog-latest-slot-game-reviews__section-title {
    font-size: 1.5rem !important;
  }
}