:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --body-bg-custom: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color-custom: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-fishing-games {
  color: var(--text-main);
  background-color: var(--body-bg-custom);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 40px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--deep-green-color);
}

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games__main-title {
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  /* No fixed font-size, rely on clamp for responsiveness if needed, but not fixed large */
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  filter: brightness(1.1);
}

/* Introduction Section */
.page-fishing-games__introduction-section p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Game Types Section */
.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding-bottom: 20px;
  border: 1px solid var(--border-color-custom);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games__card-title {
  font-size: 24px;
  color: var(--gold-color);
  margin: 20px 20px 10px;
}

.page-fishing-games__card-description {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 0 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

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

.page-fishing-games__guide-text {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__guide-text p {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-fishing-games__guide-list li {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--text-secondary);
}

.page-fishing-games__guide-list li::before {
  content: '✓';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games__guide-list li strong {
  color: var(--text-main);
}

.page-fishing-games__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

/* Strategy Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-fishing-games__strategy-list li {
  background: var(--card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 17px;
  color: var(--text-secondary);
  border-left: 5px solid var(--gold-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-list li strong {
  color: var(--text-main);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

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

.page-fishing-games__promo-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding-bottom: 20px;
  border: 1px solid var(--border-color-custom);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__promo-card .page-fishing-games__card-image {
  height: 220px; /* Adjust height for promo images */
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: none;
  margin-top: 20px;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  filter: brightness(1.1);
}

/* Features Section */
.page-fishing-games__features-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-fishing-games__features-list li {
  background: var(--card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 17px;
  color: var(--text-secondary);
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__features-list li strong {
  color: var(--text-main);
}

.page-fishing-games__cta-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color-custom);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-green-color);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 16px;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  text-align: left;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  background: linear-gradient(135deg, var(--deep-green-color), var(--primary-color));
  padding: 80px 20px;
}

.page-fishing-games__final-description {
  font-size: 20px;
  color: var(--text-main);
  max-width: 800px;
  margin: 20px auto 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(26px, 5vw, 45px);
  }
  .page-fishing-games__hero-description {
    font-size: 17px;
  }
  .page-fishing-games__game-grid, .page-fishing-games__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.3;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__guide-content {
    flex-direction: column;
  }
  .page-fishing-games__guide-text, .page-fishing-games__guide-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-fishing-games__card-image {
    height: 200px;
  }
  .page-fishing-games__game-card, .page-fishing-games__promo-card, .page-fishing-games__features-list li, .page-fishing-games__strategy-list li, details.page-fishing-games__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-fishing-games__game-grid, .page-fishing-games__promotions-grid {
    gap: 20px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-fishing-games__final-description {
    font-size: 18px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(22px, 7vw, 36px);
  }
  .page-fishing-games__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__card-description, .page-fishing-games__guide-text p, .page-fishing-games__guide-list li, .page-fishing-games__strategy-list li {
    font-size: 15px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 15px;
  }
  .page-fishing-games__faq-answer p {
    font-size: 14px;
  }
  .page-fishing-games__final-description {
    font-size: 16px;
  }
}