.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default light text for dark body background */
  background-color: #1a1a2e; /* Body background from shared.css */
}

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

.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #DAA520; /* Gold color for titles */
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-fishing-games__inline-link {
  color: #DAA520;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__inline-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background-color: #DAA520;
  color: #ffffff;
  border-color: #DAA520;
}

.page-fishing-games__btn-primary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #DAA520;
  border-color: #DAA520;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #DAA520;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 0; /* Assumes shared.css handles body padding-top */
  padding-bottom: 80px;
  overflow: hidden;
  background-color: #2F4F4F; /* Dark slate gray for hero background */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a decent height */
}

.page-fishing-games__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.page-fishing-games__hero-content {
  flex: 1;
  text-align: left;
  padding-right: 40px;
  max-width: 60%;
}

.page-fishing-games__hero-title {
  font-size: 56px;
  color: #DAA520;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games__hero-cta {
  padding: 18px 40px;
  font-size: 20px;
}

.page-fishing-games__hero-image-wrapper {
  flex: 1;
  max-width: 40%;
  text-align: right;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
  object-fit: cover;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  background-color: #1a1a2e;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  background-color: #f8f9fa;
  color: #333333; /* Dark text for light background */
}

.page-fishing-games__game-types-section .page-fishing-games__section-title,
.page-fishing-games__game-types-section .page-fishing-games__text-block {
  color: #333333;
}

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

.page-fishing-games__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-fishing-games__game-card-title {
  font-size: 22px;
  font-weight: bold;
  color: #2F4F4F;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-card-description {
  font-size: 15px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #2F4F4F;
}

.page-fishing-games__guide-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__guide-steps {
  flex: 1;
}

.page-fishing-games__guide-item {
  margin-bottom: 30px;
}

.page-fishing-games__guide-step-title {
  font-size: 24px;
  color: #DAA520;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #DAA520;
  color: #1a1a2e;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-fishing-games__guide-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  padding-left: 50px; /* Align with step number */
}

.page-fishing-games__guide-image-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-fishing-games__guide-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Tips Section */
.page-fishing-games__tips-section {
  background-color: #f8f9fa;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-fishing-games__tips-list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-fishing-games__tips-list li::before {
  content: '✓';
  color: #DAA520;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #1a1a2e;
}

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

.page-fishing-games__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fishing-games__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #DAA520;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__promotion-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Security and Support Section */
.page-fishing-games__security-support-section {
  background-color: #f8f9fa;
}

.page-fishing-games__security-support-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__security-support-text {
  flex: 1;
  color: #333333;
}

.page-fishing-games__security-support-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-fishing-games__security-support-image-wrapper {
  flex: 1;
  max-width: 40%;
}

.page-fishing-games__security-support-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #1a1a2e;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2F4F4F;
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 8px;
  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: #3a5f6e;
  border-color: #DAA520;
}

.page-fishing-games__faq-question:active {
  background: #4a748a;
}

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

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #DAA520;
  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: 32px;
  height: 32px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #ffd700;
  transform: rotate(45deg);
}

.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 25px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.6;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* CTA Section */
.page-fishing-games__cta-section {
  background-color: #2F4F4F;
  padding-top: 60px;
  padding-bottom: 100px;
}

.page-fishing-games__cta-container {
  max-width: 800px;
}

.page-fishing-games__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__main-cta {
  flex: 1;
  max-width: 300px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 48px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__hero-content {
    max-width: 55%;
    padding-right: 30px;
  }
  .page-fishing-games__hero-image-wrapper {
    max-width: 45%;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__guide-content,
  .page-fishing-games__security-support-content {
    flex-direction: column;
    gap: 40px;
  }
  .page-fishing-games__guide-steps,
  .page-fishing-games__guide-image-wrapper,
  .page-fishing-games__security-support-text,
  .page-fishing-games__security-support-image-wrapper {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .page-fishing-games__guide-item p {
    padding-left: 0;
  }
  .page-fishing-games__guide-step-title {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-fishing-games__section {
    padding: 50px 0;
  }

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

  .page-fishing-games__text-block {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-fishing-games__hero-section {
    padding-top: 0 !important; /* Ensure no double padding if shared.css sets body padding */
    padding-bottom: 40px;
    min-height: auto;
  }
  .page-fishing-games__hero-container {
    flex-direction: column-reverse; /* Image above text for mobile */
    padding: 0 15px;
  }
  .page-fishing-games__hero-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-top: 30px;
  }
  .page-fishing-games__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-cta {
    padding: 14px 25px;
    font-size: 17px;
  }
  .page-fishing-games__hero-image-wrapper {
    max-width: 100%;
    width: 100%; /* Ensure full width */
  }
  .page-fishing-games__hero-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* Game Types Section */
  .page-fishing-games__game-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__game-card-image-wrapper {
    height: 180px;
  }
  .page-fishing-games__game-card-title {
    font-size: 20px;
  }
  .page-fishing-games__game-card-description {
    font-size: 14px;
  }

  /* Guide Section */
  .page-fishing-games__guide-content {
    gap: 30px;
  }
  .page-fishing-games__guide-item {
    margin-bottom: 20px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 20px;
    justify-content: center;
  }
  .page-fishing-games__step-number {
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 10px;
  }
  .page-fishing-games__guide-item p {
    font-size: 15px;
    padding-left: 0;
  }
  .page-fishing-games__guide-image-wrapper {
    max-width: 100%;
  }

  /* Tips Section */
  .page-fishing-games__tips-list {
    margin-top: 30px;
    padding-left: 0;
  }
  .page-fishing-games__tips-list li {
    font-size: 15px;
    padding-left: 25px;
    margin-bottom: 10px;
  }

  /* Promotions Section */
  .page-fishing-games__promotion-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__promotion-image {
    height: 180px;
  }
  .page-fishing-games__promotion-title {
    font-size: 20px;
  }
  .page-fishing-games__promotion-description {
    font-size: 14px;
  }

  /* Security and Support Section */
  .page-fishing-games__security-support-content {
    gap: 30px;
  }
  .page-fishing-games__security-support-text p {
    font-size: 15px;
  }
  .page-fishing-games__security-support-image-wrapper {
    max-width: 100%;
  }

  /* FAQ Section */
  .page-fishing-games__faq-list {
    margin-top: 30px;
  }
  .page-fishing-games__faq-item {
    margin-bottom: 10px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
    font-size: 15px;
  }

  /* CTA Section */
  .page-fishing-games__cta-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__main-cta {
    max-width: 100%;
  }

  /* General Image & Button Responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are handled by .page-fishing-games__container */
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}