.page-fishing-games-latest-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
}

.page-fishing-games-latest-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games-latest-recommendations__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
  padding-bottom: 40px;
  text-align: center;
  background-color: #f0f8ff;
}

.page-fishing-games-latest-recommendations__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-latest-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games-latest-recommendations__hero-content {
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games-latest-recommendations__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games-latest-recommendations__subtitle {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-fishing-games-latest-recommendations__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games-latest-recommendations__btn-primary,
.page-fishing-games-latest-recommendations__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-fishing-games-latest-recommendations__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-fishing-games-latest-recommendations__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-fishing-games-latest-recommendations__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-latest-recommendations__btn-secondary:hover {
  background-color: #f0f0f0;
}

.page-fishing-games-latest-recommendations__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-fishing-games-latest-recommendations__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}

.page-fishing-games-latest-recommendations__why-choose-us-section,
.page-fishing-games-latest-recommendations__tips-section,
.page-fishing-games-latest-recommendations__security-section,
.page-fishing-games-latest-recommendations__promotions-section {
  padding: 60px 0;
}

.page-fishing-games-latest-recommendations__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__section-title,
.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__text-block {
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__features-grid,
.page-fishing-games-latest-recommendations__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-latest-recommendations__feature-item,
.page-fishing-games-latest-recommendations__security-item {
  text-align: center;
  padding: 25px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__feature-item,
.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__security-item {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__feature-item h3,
.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__security-item h3 {
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__feature-icon,
.page-fishing-games-latest-recommendations__security-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games-latest-recommendations__feature-title,
.page-fishing-games-latest-recommendations__security-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-latest-recommendations__feature-description,
.page-fishing-games-latest-recommendations__security-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__feature-description,
.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__security-description {
  color: #f0f0f0;
}

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

.page-fishing-games-latest-recommendations__game-card,
.page-fishing-games-latest-recommendations__promotion-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__game-image,
.page-fishing-games-latest-recommendations__promotion-image {
  width: 100%;
  height: 200px; /* Fixed height for visual consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games-latest-recommendations__game-title,
.page-fishing-games-latest-recommendations__promotion-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin: 15px 10px 10px;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__game-title,
.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__game-title a {
  color: #FFFFFF;
}

.page-fishing-games-latest-recommendations__game-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-latest-recommendations__game-description,
.page-fishing-games-latest-recommendations__promotion-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__game-description {
  color: #f0f0f0;
}

.page-fishing-games-latest-recommendations__btn-play {
  display: block;
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-fishing-games-latest-recommendations__btn-play:hover {
  background-color: #c96706;
}

.page-fishing-games-latest-recommendations__view-all-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games-latest-recommendations__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-latest-recommendations__tip-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-fishing-games-latest-recommendations__tip-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-latest-recommendations__tip-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games-latest-recommendations__promotions-section .page-fishing-games-latest-recommendations__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-latest-recommendations__promotion-card .page-fishing-games-latest-recommendations__btn-primary {
  border-radius: 0 0 8px 8px;
  margin-top: auto;
}

.page-fishing-games-latest-recommendations__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background for FAQ */
}

.page-fishing-games-latest-recommendations__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-latest-recommendations__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-latest-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-latest-recommendations__faq-item[open] .page-fishing-games-latest-recommendations__faq-question {
  background-color: #f0f0f0;
}

.page-fishing-games-latest-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games-latest-recommendations__faq-item[open] .page-fishing-games-latest-recommendations__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fishing-games-latest-recommendations__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-fishing-games-latest-recommendations__faq-item:not([open]) .page-fishing-games-latest-recommendations__faq-answer {
  display: none;
}

.page-fishing-games-latest-recommendations__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-latest-recommendations__cta-bottom-section .page-fishing-games-latest-recommendations__cta-buttons {
  margin-top: 40px;
}

/* Ensure all images are responsive by default */
.page-fishing-games-latest-recommendations img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-latest-recommendations__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-fishing-games-latest-recommendations__section-title {
    font-size: 2em;
  }

  .page-fishing-games-latest-recommendations__features-grid,
  .page-fishing-games-latest-recommendations__security-grid,
  .page-fishing-games-latest-recommendations__games-grid,
  .page-fishing-games-latest-recommendations__tips-list,
  .page-fishing-games-latest-recommendations__promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-fishing-games-latest-recommendations__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }

  .page-fishing-games-latest-recommendations__hero-content {
    padding: 15px;
  }

  .page-fishing-games-latest-recommendations__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
    margin-bottom: 10px;
  }

  .page-fishing-games-latest-recommendations__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-fishing-games-latest-recommendations__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-fishing-games-latest-recommendations__btn-primary,
  .page-fishing-games-latest-recommendations__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px; /* Adjust padding for mobile */
  }

  .page-fishing-games-latest-recommendations__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-fishing-games-latest-recommendations__text-block {
    font-size: 1em;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* 通用图片与容器 */
  .page-fishing-games-latest-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games-latest-recommendations__container,
  .page-fishing-games-latest-recommendations__section,
  .page-fishing-games-latest-recommendations__card,
  .page-fishing-games-latest-recommendations__feature-item,
  .page-fishing-games-latest-recommendations__security-item,
  .page-fishing-games-latest-recommendations__game-card,
  .page-fishing-games-latest-recommendations__promotion-card,
  .page-fishing-games-latest-recommendations__tip-item,
  .page-fishing-games-latest-recommendations__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 产品展示图区域 */
  .page-fishing-games-latest-recommendations__games-grid,
  .page-fishing-games-latest-recommendations__features-grid,
  .page-fishing-games-latest-recommendations__security-grid,
  .page-fishing-games-latest-recommendations__tips-list,
  .page-fishing-games-latest-recommendations__promotion-cards {
    grid-template-columns: 1fr; /* Single column layout for grids */
    gap: 20px;
    margin-top: 20px;
  }

  .page-fishing-games-latest-recommendations__game-image,
  .page-fishing-games-latest-recommendations__promotion-image {
    height: 180px; /* Adjust height for smaller screens */
  }

  /* 其他内容模块 */
  .page-fishing-games-latest-recommendations__why-choose-us-section,
  .page-fishing-games-latest-recommendations__top-games-section,
  .page-fishing-games-latest-recommendations__tips-section,
  .page-fishing-games-latest-recommendations__security-section,
  .page-fishing-games-latest-recommendations__promotions-section,
  .page-fishing-games-latest-recommendations__faq-section,
  .page-fishing-games-latest-recommendations__cta-bottom-section {
    padding: 30px 0;
  }

  .page-fishing-games-latest-recommendations__feature-item,
  .page-fishing-games-latest-recommendations__security-item,
  .page-fishing-games-latest-recommendations__tip-item {
    padding: 20px;
  }

  .page-fishing-games-latest-recommendations__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-fishing-games-latest-recommendations__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }
}