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

  background-color: var(--background-dark);
  color: var(--text-main);
  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__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
  background-color: var(--background-dark);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to bring content slightly over image bottom */
  background: rgba(8, 22, 15, 0.8); /* Slightly transparent background for readability */
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 30px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__main-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-fishing-games__description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-fishing-games__intro-section,
.page-fishing-games__download-guide,
.page-fishing-games__game-types,
.page-fishing-games__strategies,
.page-fishing-games__promotions,
.page-fishing-games__faq-section,
.page-fishing-games__contact-cta {
  padding: 80px 0;
  background-color: var(--background-dark);
  border-top: 1px solid var(--divider-color);
}

.page-fishing-games__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__text-block {
  color: var(--text-secondary);
  font-size: 1.05em;
  text-align: justify;
  margin-bottom: 25px;
}

.page-fishing-games__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

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

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  transition: transform 0.3s ease;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-title,
.page-fishing-games__step-title,
.page-fishing-games__game-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promo-title {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__feature-description,
.page-fishing-games__step-description,
.page-fishing-games__game-description,
.page-fishing-games__strategy-description,
.page-fishing-games__promo-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
}

.page-fishing-games__content-image,
.page-fishing-games__game-image,
.page-fishing-games__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-fishing-games__strategy-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__strategy-item {
  padding: 25px;
  text-align: left;
}

.page-fishing-games__text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-fishing-games__faq-item[open] {
  background-color: var(--deep-green-color);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main);
  font-size: 1.1em;
  user-select: none;
  list-style: none;
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--secondary-color);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  font-size: 1em;
}

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

.page-fishing-games__contact-cta {
  text-align: center;
  padding: 100px 0;
  background-color: var(--deep-green-color);
}

.page-fishing-games__contact-cta .page-fishing-games__section-title {
  color: var(--gold-color);
}

.page-fishing-games__contact-cta .page-fishing-games__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__intro-section,
  .page-fishing-games__download-guide,
  .page-fishing-games__game-types,
  .page-fishing-games__strategies,
  .page-fishing-games__promotions,
  .page-fishing-games__faq-section,
  .page-fishing-games__contact-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games__description {
    font-size: 1em;
  }
  .page-fishing-games__cta-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;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__intro-section .page-fishing-games__container,
  .page-fishing-games__download-guide .page-fishing-games__container,
  .page-fishing-games__game-types .page-fishing-games__container,
  .page-fishing-games__strategies .page-fishing-games__container,
  .page-fishing-games__promotions .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container,
  .page-fishing-games__contact-cta .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__feature-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__download-steps,
  .page-fishing-games__strategy-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.5em;
  }
  .page-fishing-games__description {
    font-size: 0.9em;
  }
  .page-fishing-games__hero-content {
    padding: 20px 10px;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}