:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --background-color-dark: #0A0A0A;
  --card-background-color: #111111;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-fc178-latest-slot-reviews {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Main text color for the page, dark background */
  background-color: var(--background-color-dark); /* Ensure consistency with body background */
}

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

.page-blog-fc178-latest-slot-reviews__section-title {
  font-size: clamp(2em, 5vw, 2.8em); /* Use clamp for H2 */
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-fc178-latest-slot-reviews__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-fc178-latest-slot-reviews__text-block a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-blog-fc178-latest-slot-reviews__card {
  background-color: var(--card-background-color);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-fc178-latest-slot-reviews__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-blog-fc178-latest-slot-reviews__btn-primary,
.page-blog-fc178-latest-slot-reviews__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-fc178-latest-slot-reviews__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-fc178-latest-slot-reviews__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 10px var(--glow-color);
}

.page-blog-fc178-latest-slot-reviews__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-fc178-latest-slot-reviews__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--background-color-dark); /* Dark text on secondary hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.page-blog-fc178-latest-slot-reviews__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px 0 60px; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--background-color-dark);
}

.page-blog-fc178-latest-slot-reviews__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of the image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-fc178-latest-slot-reviews__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure image covers the area */
  display: block;
}

.page-blog-fc178-latest-slot-reviews__hero-content {
  position: relative; /* Ensure content is above image */
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-fc178-latest-slot-reviews__main-title {
  font-size: clamp(2.5em, 6vw, 4em); /* Use clamp for H1 */
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-blog-fc178-latest-slot-reviews__hero-description {
  font-size: 1.2em;
  color: var(--text-main-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-fc178-latest-slot-reviews__cta-buttons--center {
  margin-top: 40px;
}

/* Introduction Section */
.page-blog-fc178-latest-slot-reviews__introduction-section,
.page-blog-fc178-latest-slot-reviews__top-games-section,
.page-blog-fc178-latest-slot-reviews__responsible-gaming-section,
.page-blog-fc178-latest-slot-reviews__cta-final-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
}

/* Why Choose Section */
.page-blog-fc178-latest-slot-reviews__why-choose-section,
.page-blog-fc178-latest-slot-reviews__features-details-section,
.page-blog-fc178-latest-slot-reviews__get-started-section,
.page-blog-fc178-latest-slot-reviews__faq-section {
  padding: 80px 0;
  background-color: var(--card-background-color);
}

.page-blog-fc178-latest-slot-reviews__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-fc178-latest-slot-reviews__feature-item {
  text-align: center;
}

.page-blog-fc178-latest-slot-reviews__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-fc178-latest-slot-reviews__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-fc178-latest-slot-reviews__feature-description {
  font-size: 1em;
  color: var(--text-main-color);
}

/* Top Games Section */
.page-blog-fc178-latest-slot-reviews__game-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-fc178-latest-slot-reviews__game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-blog-fc178-latest-slot-reviews__game-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.page-blog-fc178-latest-slot-reviews__game-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-fc178-latest-slot-reviews__game-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-fc178-latest-slot-reviews__game-description {
  font-size: 1em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Details Section */
.page-blog-fc178-latest-slot-reviews__feature-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-fc178-latest-slot-reviews__feature-point {
  background-color: var(--background-color-dark);
  color: var(--text-main-color);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.page-blog-fc178-latest-slot-reviews__feature-point-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-fc178-latest-slot-reviews__feature-point-description {
  font-size: 0.95em;
}

/* Mobile Experience Section */
.page-blog-fc178-latest-slot-reviews__mobile-experience-section {
  padding: 80px 0;
  background-color: var(--background-color-dark);
}

.page-blog-fc178-latest-slot-reviews__mobile-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-blog-fc178-latest-slot-reviews__mobile-content {
  flex: 1;
}

.page-blog-fc178-latest-slot-reviews__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-fc178-latest-slot-reviews__mobile-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Limit image size */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Get Started Section */
.page-blog-fc178-latest-slot-reviews__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-fc178-latest-slot-reviews__steps-list li {
  background-color: var(--background-color-dark);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-blog-fc178-latest-slot-reviews__step-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-fc178-latest-slot-reviews__step-description {
  font-size: 0.95em;
}

/* CTA Final Section */
.page-blog-fc178-latest-slot-reviews__cta-final-content {
  text-align: center;
  max-width: 800px;
}

.page-blog-fc178-latest-slot-reviews__cta-final-content .page-blog-fc178-latest-slot-reviews__btn-primary {
  margin-top: 30px;
}

/* FAQ Section */
.page-blog-fc178-latest-slot-reviews__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fc178-latest-slot-reviews__faq-item {
  background-color: var(--background-color-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-fc178-latest-slot-reviews__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-fc178-latest-slot-reviews__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-fc178-latest-slot-reviews__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.page-blog-fc178-latest-slot-reviews__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-fc178-latest-slot-reviews__faq-item.active .page-blog-fc178-latest-slot-reviews__faq-toggle {
  transform: rotate(45deg); /* Change to X or minus sign */
}

.page-blog-fc178-latest-slot-reviews__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-fc178-latest-slot-reviews__faq-item.active .page-blog-fc178-latest-slot-reviews__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px;
}

/* Image responsiveness */
.page-blog-fc178-latest-slot-reviews img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .page-blog-fc178-latest-slot-reviews__mobile-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-fc178-latest-slot-reviews__mobile-content,
  .page-blog-fc178-latest-slot-reviews__mobile-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-blog-fc178-latest-slot-reviews__mobile-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .page-blog-fc178-latest-slot-reviews__hero-content {
    margin-top: 20px;
  }
  .page-blog-fc178-latest-slot-reviews__section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-fc178-latest-slot-reviews {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-fc178-latest-slot-reviews__hero-section {
    min-height: auto;
    padding-bottom: 40px;
  }
  
  .page-blog-fc178-latest-slot-reviews__hero-content {
    padding: 0 15px;
  }

  .page-blog-fc178-latest-slot-reviews__main-title {
    font-size: clamp(2em, 8vw, 3em);
  }

  .page-blog-fc178-latest-slot-reviews__hero-description {
    font-size: 1.1em;
  }

  .page-blog-fc178-latest-slot-reviews__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
}