.page-fishing-games {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__dark-bg {
  background-color: #0d121f; /* Body background color */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards/elements on dark background */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__medium-bg {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2B4C; /* Dark text for light background */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-fishing-games__section-intro {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.page-fishing-games__btn-primary img,
.page-fishing-games__btn-secondary img {
  vertical-align: middle;
  margin-right: 8px;
  
  
  display: inline-block; /* Ensure icons are not block level */
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 100px 0; /* Adjusted padding for non-homepage hero */
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply offset here as this is the first content section */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games__hero-title {
  font-size: 52px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 80px 0;
}

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

.page-fishing-games__feature-card {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-fishing-games__feature-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__feature-card p {
  color: #f0f0f0;
  font-size: 16px;
}

/* Game Halls Section */
.page-fishing-games__game-halls-section {
  padding: 80px 0;
}

.page-fishing-games__halls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__hall-card {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-fishing-games__hall-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-fishing-games__hall-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__hall-card p {
  color: #f0f0f0;
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__step-card {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-fishing-games__step-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__step-card p {
  color: #f0f0f0;
  font-size: 16px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__subsection-title {
  font-size: 28px;
  color: #FFD700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.5;
}

.page-fishing-games__tips-list li strong {
  color: #FFD700;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__promo-card {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-fishing-games__promo-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-fishing-games__promo-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__promo-card p {
  color: #f0f0f0;
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__cta-banner {
  padding: 40px;
  text-align: center;
}

.page-fishing-games__cta-banner p {
  font-size: 22px;
  color: #1A2B4C;
  margin-bottom: 30px;
  font-weight: bold;
}

/* App Download Section */
.page-fishing-games__app-download-section {
  padding: 80px 0;
}

.page-fishing-games__app-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-fishing-games__app-content {
  flex: 1;
  text-align: left;
}

.page-fishing-games__app-content .page-fishing-games__section-title,
.page-fishing-games__app-content .page-fishing-games__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-fishing-games__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__app-benefits li {
  color: #f0f0f0;
  font-size: 17px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-fishing-games__app-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__app-image {
  flex: 0 0 auto;
  width: 400px;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__app-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Safety & Support Section */
.page-fishing-games__safety-support-section {
  padding: 80px 0;
}

.page-fishing-games__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__safety-item {
  padding: 30px;
  text-align: center;
  height: 100%;
}

.page-fishing-games__safety-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__safety-item p {
  color: #f0f0f0;
  font-size: 16px;
}

.page-fishing-games__contact-cta {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__contact-cta p {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games__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 15px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A2B4C; /* Dark blue background for questions */
  border: 1px solid #FFD700; /* Gold border */
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background: #2b3d60;
  border-color: #e6c200;
}

.page-fishing-games__faq-question:active {
  background: #0d121f;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Plus to X */
}

/* Blog Section */
.page-fishing-games__blog-section {
  padding: 80px 0;
}

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

.page-fishing-games__blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.page-fishing-games__blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-fishing-games__blog-content {
  padding: 0 15px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__blog-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__blog-title a:hover {
  color: #ffffff;
}

.page-fishing-games__blog-excerpt {
  color: #f0f0f0;
  font-size: 15px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-fishing-games__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-fishing-games__read-more:hover {
  color: #ffffff;
}

/* General image responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 44px;
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
  }

  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__section-intro {
    font-size: 16px;
  }

  .page-fishing-games__app-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__app-content {
    text-align: center;
  }

  .page-fishing-games__app-content .page-fishing-games__section-title,
  .page-fishing-games__app-content .page-fishing-games__section-intro {
    text-align: center;
  }

  .page-fishing-games__app-benefits {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .page-fishing-games__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset is applied */
  }

  .page-fishing-games__hero-title {
    font-size: 36px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
  }

  .page-fishing-games__section-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-fishing-games__why-choose-section,
  .page-fishing-games__game-halls-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__app-download-section,
  .page-fishing-games__safety-support-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__blog-section {
    padding: 50px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__halls-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__safety-grid,
  .page-fishing-games__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__hall-card,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__safety-item,
  .page-fishing-games__blog-card {
    padding: 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__hall-title,
  .page-fishing-games__step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__safety-title,
  .page-fishing-games__blog-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-card p,
  .page-fishing-games__hall-card p,
  .page-fishing-games__step-card p,
  .page-fishing-games__promo-card p,
  .page-fishing-games__safety-item p,
  .page-fishing-games__blog-excerpt {
    font-size: 14px;
  }

  .page-fishing-games__cta-banner p {
    font-size: 18px;
  }

  .page-fishing-games__download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-fishing-games__app-benefits li {
    font-size: 15px;
  }

  .page-fishing-games__faq-question {
    padding: 15px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }

  .page-fishing-games__subsection-title {
    font-size: 24px;
  }

  .page-fishing-games__tips-list li {
    font-size: 15px;
  }

  /* General image responsiveness for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-image-wrapper img {
    height: 100% !important; /* Maintain height for hero background effect */
  }

  /* Containers for images and buttons */
  .page-fishing-games__hero-buttons,
  .page-fishing-games__download-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}