.page-casino-reviews-recommended-list {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Inherit from body or shared.css */
}

.page-casino-reviews-recommended-list__hero-intro-section {
  padding: 120px 20px 60px; /* Adjusted for fixed header */
  background: linear-gradient(135deg, #007bff, #4CAF50); /* Blue to Green gradient for freshness */
  color: #ffffff;
  text-align: center;
}

.page-casino-reviews-recommended-list__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-casino-reviews-recommended-list__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-casino-reviews-recommended-list__intro-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-casino-reviews-recommended-list__intro-text a {
  color: #ffc107; /* Highlight links in intro text */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino-reviews-recommended-list__intro-text a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #ffc107; /* Auxiliary color for CTA */
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-casino-reviews-recommended-list__cta-button:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-casino-reviews-recommended-list__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-casino-reviews-recommended-list__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-reviews-recommended-list__section-description a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__section-description a:hover {
  text-decoration: underline;
}

/* Review Section */
.page-casino-reviews-recommended-list__review-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-casino-reviews-recommended-list__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-reviews-recommended-list__review-card {
  background: #2a2a2a; /* Darker background for cards */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a3a;
}

.page-casino-reviews-recommended-list__review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-casino-reviews-recommended-list__card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #444444;
  padding-bottom: 15px;
}

.page-casino-reviews-recommended-list__card-logo {
  width: 80px; /* Min size 200x200, but for logos, scale down visually */
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  min-width: 80px; /* Ensure visual size is consistent */
  min-height: 80px;
}

.page-casino-reviews-recommended-list__card-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #ffc107;
  flex-grow: 1;
}

.page-casino-reviews-recommended-list__card-link {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-reviews-recommended-list__card-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__star-rating {
  color: #ffd700;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-casino-reviews-recommended-list__card-body p {
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #cccccc;
}

.page-casino-reviews-recommended-list__card-body p strong {
  color: #ffffff;
}

.page-casino-reviews-recommended-list__card-body p a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__card-body p a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__card-footer {
  margin-top: auto; /* Push buttons to bottom */
  padding-top: 20px;
  border-top: 1px solid #444444;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino-reviews-recommended-list__btn-play,
.page-casino-reviews-recommended-list__btn-detail {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1 1 auto;
  min-width: 120px;
}

.page-casino-reviews-recommended-list__btn-play {
  background: #007bff;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.4);
}

.page-casino-reviews-recommended-list__btn-play:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.6);
}

.page-casino-reviews-recommended-list__btn-detail {
  background: #ffc107;
  color: #333333;
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
}

.page-casino-reviews-recommended-list__btn-detail:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.6);
}

/* Game Features Section */
.page-casino-reviews-recommended-list__game-features-section {
  padding: 60px 0;
  background-color: #121212; /* Dark background */
}

.page-casino-reviews-recommended-list__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-reviews-recommended-list__feature-item {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3a3a3a;
}

.page-casino-reviews-recommended-list__feature-image {
  max-width: 100%;
  height: auto;
  min-height: 200px; /* Min size for images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-reviews-recommended-list__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-casino-reviews-recommended-list__feature-item p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #cccccc;
}

.page-casino-reviews-recommended-list__feature-item p a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__feature-item p a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-casino-reviews-recommended-list__promotions-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-casino-reviews-recommended-list__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-reviews-recommended-list__promo-card {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3a3a3a;
}

.page-casino-reviews-recommended-list__promo-image {
  max-width: 100%;
  height: auto;
  min-height: 200px; /* Min size for images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-reviews-recommended-list__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.page-casino-reviews-recommended-list__promo-card p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-casino-reviews-recommended-list__promo-card p a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__promo-card p a:hover {
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__btn-learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #ffc107;
  color: #333333;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-casino-reviews-recommended-list__btn-learn-more:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

.page-casino-reviews-recommended-list__button-group {
  text-align: center;
  margin-top: 40px;
}

/* Blog Section */
.page-casino-reviews-recommended-list__blog-section {
  padding: 60px 0;
  background-color: #121212;
}

.page-casino-reviews-recommended-list__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-reviews-recommended-list__blog-card {
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  border: 1px solid #3a3a3a;
}

.page-casino-reviews-recommended-list__blog-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  min-height: 200px; /* Min size for images */
}

.page-casino-reviews-recommended-list__blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-casino-reviews-recommended-list__blog-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.page-casino-reviews-recommended-list__blog-link {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-reviews-recommended-list__blog-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__blog-card p {
  font-size: 0.9em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino-reviews-recommended-list__blog-card p a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__blog-card p a:hover {
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  background: #ffc107;
  color: #333333;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto; /* Push to bottom */
  border: none;
}

.page-casino-reviews-recommended-list__btn-read-more:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-casino-reviews-recommended-list__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-casino-reviews-recommended-list__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-reviews-recommended-list__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-reviews-recommended-list__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a; /* Darker background for question */
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-casino-reviews-recommended-list__faq-question:hover {
  background: #3a3a3a;
  border-color: #555555;
}

.page-casino-reviews-recommended-list__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-casino-reviews-recommended-list__faq-question h3 a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__faq-question h3 a:hover {
  text-decoration: underline;
}

.page-casino-reviews-recommended-list__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-casino-reviews-recommended-list__faq-item.active .page-casino-reviews-recommended-list__faq-toggle {
  color: #007bff;
  transform: rotate(45deg);
}

.page-casino-reviews-recommended-list__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1f1f1f; /* Slightly lighter dark background for answer */
  border-top: none;
  border-left: 1px solid #3a3a3a;
  border-right: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  border-radius: 0 0 8px 8px;
}

.page-casino-reviews-recommended-list__faq-item.active .page-casino-reviews-recommended-list__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-casino-reviews-recommended-list__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #cccccc;
}

.page-casino-reviews-recommended-list__faq-answer p a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-reviews-recommended-list__faq-answer p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-reviews-recommended-list__main-title {
    font-size: 2.8em;
  }

  .page-casino-reviews-recommended-list__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-reviews-recommended-list__hero-intro-section {
    padding: 100px 15px 40px !important; /* Mobile padding-top */
  }

  .page-casino-reviews-recommended-list__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-casino-reviews-recommended-list__intro-text,
  .page-casino-reviews-recommended-list__section-description {
    font-size: 1em;
  }

  .page-casino-reviews-recommended-list__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 20px;
  }

  .page-casino-reviews-recommended-list__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-casino-reviews-recommended-list__review-section,
  .page-casino-reviews-recommended-list__game-features-section,
  .page-casino-reviews-recommended-list__promotions-section,
  .page-casino-reviews-recommended-list__blog-section,
  .page-casino-reviews-recommended-list__faq-section {
    padding: 40px 0;
  }

  .page-casino-reviews-recommended-list__review-card,
  .page-casino-reviews-recommended-list__feature-item,
  .page-casino-reviews-recommended-list__promo-card,
  .page-casino-reviews-recommended-list__blog-card {
    padding: 20px;
  }

  .page-casino-reviews-recommended-list__card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .page-casino-reviews-recommended-list__card-logo {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Ensure visual size is consistent */
    min-height: 60px;
  }

  .page-casino-reviews-recommended-list__card-title {
    font-size: 1.4em;
  }

  .page-casino-reviews-recommended-list__star-rating {
    font-size: 1em;
  }

  .page-casino-reviews-recommended-list__card-body p {
    font-size: 0.9em;
  }

  .page-casino-reviews-recommended-list__card-footer {
    flex-direction: column;
    gap: 10px;
  }

  .page-casino-reviews-recommended-list__btn-play,
  .page-casino-reviews-recommended-list__btn-detail {
    width: 100%;
    max-width: 100%;
    font-size: 0.9em;
    padding: 10px 15px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .page-casino-reviews-recommended-list__blog-image {
    height: 180px; /* Adjust height for mobile */
    min-height: 180px;
  }

  .page-casino-reviews-recommended-list__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .page-casino-reviews-recommended-list__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-casino-reviews-recommended-list__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-casino-reviews-recommended-list__faq-answer {
    padding: 0 20px;
  }

  .page-casino-reviews-recommended-list__faq-item.active .page-casino-reviews-recommended-list__faq-answer {
    padding: 15px 20px !important;
  }

  /* Ensure all images are responsive */
  .page-casino-reviews-recommended-list img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-casino-reviews-recommended-list__section,
  .page-casino-reviews-recommended-list__card,
  .page-casino-reviews-recommended-list__container,
  .page-casino-reviews-recommended-list__review-card,
  .page-casino-reviews-recommended-list__feature-item,
  .page-casino-reviews-recommended-list__promo-card,
  .page-casino-reviews-recommended-list__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}