.page-blog-latest-slot-games-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

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

.page-blog-latest-slot-games-review__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-latest-slot-games-review__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-latest-slot-games-review__hero-section {
  position: relative;
  padding-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-blog-latest-slot-games-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 20px; /* Space between image and text */
}

.page-blog-latest-slot-games-review__hero-content {
  max-width: 900px;
  padding: 20px;
  text-align: center;
  z-index: 1; /* Ensure content is above any potential background */
}

.page-blog-latest-slot-games-review__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-latest-slot-games-review__hero-description {
  font-size: clamp(1em, 1.5vw, 1.25em);
  margin-bottom: 30px;
  color: #ffffff;
}

.page-blog-latest-slot-games-review__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  color: inherit;
}

.page-blog-latest-slot-games-review__sub-title {
  font-size: clamp(1.5em, 2vw, 2.2em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-latest-slot-games-review__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-latest-slot-games-review__highlight {
  font-weight: bold;
  color: #EA7C07; /* Using login color for highlights for better visibility */
}

.page-blog-latest-slot-games-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-latest-slot-games-review__btn-primary,
.page-blog-latest-slot-games-review__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-slot-games-review__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-latest-slot-games-review__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-blog-latest-slot-games-review__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-latest-slot-games-review__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-latest-slot-games-review__btn-small {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  background-color: #26A9E0;
  color: #ffffff;
  border: 1px solid #26A9E0;
  transition: background-color 0.3s ease;
}

.page-blog-latest-slot-games-review__btn-small:hover {
  background-color: #1e87b7;
}

.page-blog-latest-slot-games-review__introduction,
.page-blog-latest-slot-games-review__top-games-section,
.page-blog-latest-slot-games-review__review-methodology,
.page-blog-latest-slot-games-review__tips-section,
.page-blog-latest-slot-games-review__promotions-section,
.page-blog-latest-slot-games-review__faq-section,
.page-blog-latest-slot-games-review__conclusion {
  padding: 60px 0;
}

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

.page-blog-latest-slot-games-review__game-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-slot-games-review__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-slot-games-review__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-slot-games-review__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-latest-slot-games-review__game-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-latest-slot-games-review__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-latest-slot-games-review__game-card-title a:hover {
  text-decoration: underline;
}

.page-blog-latest-slot-games-review__game-card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

.page-blog-latest-slot-games-review__checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-latest-slot-games-review__checklist-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-blog-latest-slot-games-review__checklist-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #EA7C07;
  font-weight: bold;
}

.page-blog-latest-slot-games-review__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.page-blog-latest-slot-games-review__faq-list {
  margin-top: 30px;
}

.page-blog-latest-slot-games-review__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-slot-games-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: #26A9E0;
  background-color: #eaf6fc; /* Lighter shade of main color */
}

.page-blog-latest-slot-games-review__faq-question:hover {
  background-color: #d8edf7;
}

.page-blog-latest-slot-games-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-latest-slot-games-review__faq-item[open] .page-blog-latest-slot-games-review__faq-toggle {
  content: '−';
}

.page-blog-latest-slot-games-review__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
  color: #555555;
  font-size: 1em;
}

.page-blog-latest-slot-games-review__faq-answer p {
  margin-bottom: 0;
}

.page-blog-latest-slot-games-review__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-latest-slot-games-review__floating-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-blog-latest-slot-games-review__floating-btn:hover {
  transform: translateY(-3px);
}

.page-blog-latest-slot-games-review__floating-btn--register {
  background-color: #EA7C07;
}

.page-blog-latest-slot-games-review__floating-btn--register:hover {
  background-color: #d16e06;
}

.page-blog-latest-slot-games-review__floating-btn--login {
  background-color: #26A9E0;
}

.page-blog-latest-slot-games-review__floating-btn--login:hover {
  background-color: #1e87b7;
}

/* Ensure all images maintain original color */
.page-blog-latest-slot-games-review img {
  filter: none !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-slot-games-review__hero-image {
    max-height: 450px;
  }

  .page-blog-latest-slot-games-review__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-blog-latest-slot-games-review__hero-description {
    font-size: clamp(1em, 1.8vw, 1.15em);
  }

  .page-blog-latest-slot-games-review__section-title {
    font-size: clamp(1.6em, 3vw, 2.5em);
  }

  .page-blog-latest-slot-games-review__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-blog-latest-slot-games-review__introduction,
  .page-blog-latest-slot-games-review__top-games-section,
  .page-blog-latest-slot-games-review__review-methodology,
  .page-blog-latest-slot-games-review__tips-section,
  .page-blog-latest-slot-games-review__promotions-section,
  .page-blog-latest-slot-games-review__faq-section,
  .page-blog-latest-slot-games-review__conclusion {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-slot-games-review__hero-section {
    min-height: 400px;
    padding-top: 0 !important; /* Ensure no double padding from body */
  }

  .page-blog-latest-slot-games-review__hero-image {
    max-height: 300px;
    margin-bottom: 15px;
  }

  .page-blog-latest-slot-games-review__hero-content {
    padding: 15px;
  }

  .page-blog-latest-slot-games-review__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog-latest-slot-games-review__hero-description {
    font-size: clamp(0.9em, 3.5vw, 1em);
    margin-bottom: 20px;
  }

  .page-blog-latest-slot-games-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-slot-games-review__btn-primary,
  .page-blog-latest-slot-games-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-blog-latest-slot-games-review__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-blog-latest-slot-games-review__sub-title {
    font-size: clamp(1.3em, 4vw, 1.8em);
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-blog-latest-slot-games-review__text-block {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-blog-latest-slot-games-review__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-blog-latest-slot-games-review__game-card-image {
    height: 200px;
  }

  .page-blog-latest-slot-games-review__game-card-title {
    font-size: 1.2em;
  }

  .page-blog-latest-slot-games-review__game-card-description {
    font-size: 0.9em;
  }

  .page-blog-latest-slot-games-review__checklist-item {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .page-blog-latest-slot-games-review__content-image {
    margin: 20px auto;
    max-width: 100%;
    height: auto !important; /* Ensure images scale correctly */
  }

  .page-blog-latest-slot-games-review__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-latest-slot-games-review__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-blog-latest-slot-games-review__introduction,
  .page-blog-latest-slot-games-review__top-games-section,
  .page-blog-latest-slot-games-review__review-methodology,
  .page-blog-latest-slot-games-review__tips-section,
  .page-blog-latest-slot-games-review__promotions-section,
  .page-blog-latest-slot-games-review__faq-section,
  .page-blog-latest-slot-games-review__conclusion {
    padding: 40px 0;
  }

  .page-blog-latest-slot-games-review__container {
    padding: 0 15px;
  }

  /* General image and container rules for mobile */
  .page-blog-latest-slot-games-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }
  .page-blog-latest-slot-games-review__section,
  .page-blog-latest-slot-games-review__card,
  .page-blog-latest-slot-games-review__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Floating buttons for mobile */
  .page-blog-latest-slot-games-review__floating-buttons {
    flex-direction: row;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    justify-content: space-around;
  }
  .page-blog-latest-slot-games-review__floating-btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px 15px;
  }
}

/* LOGO carousel specific rules (not present in this page, but as per general requirement) */
/* If a logo carousel were present, its items would have these rules: */
/*
.page-blog-latest-slot-games-review__logo-carousel-section {
  padding: 10px 20px 30px;
}
.page-blog-latest-slot-games-review__logo-item {
  width: 80px;
  height: 80px;
  max-width: 80px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-blog-latest-slot-games-review__logo-carousel-section {
    padding: 10px 15px 20px;
  }
  .page-blog-latest-slot-games-review__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
}
*/