.page-fishing-games {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-color: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background-color); /* Body background is handled by shared.css, this is for main content area */
  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;
}

/* --- 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 0 80px 0;
  overflow: hidden;
  color: var(--text-main);
  background-color: var(--deep-green);
}

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

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

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

.page-fishing-games__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.page-fishing-games__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-button--center {
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3rem;
}

.page-fishing-games__icon-arrow {
  margin-left: 10px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-fishing-games__cta-button:hover .page-fishing-games__icon-arrow {
  transform: translateX(5px);
}

/* --- General Section Styles --- */
.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-fishing-games strong {
  color: var(--text-main);
}

.page-fishing-games__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

/* --- Intro Section --- */
.page-fishing-games__intro-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

/* --- Why Choose Section --- */
.page-fishing-games__why-choose {
  padding: 80px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-fishing-games__why-choose .page-fishing-games__section-title {
  color: var(--gold-color);
}

.page-fishing-games__why-choose .page-fishing-games__text-block {
  color: var(--text-secondary);
}

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

.page-fishing-games__feature-item {
  background-color: var(--deep-green);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  text-align: center;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: justify;
}

/* --- Game Types Section --- */
.page-fishing-games__game-types {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.page-fishing-games__game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin: 20px 20px 10px 20px;
  text-align: center;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0 20px 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-fishing-games__card-button {
  display: block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border-radius: 0 0 8px 8px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* --- How To Play Section --- */
.page-fishing-games__how-to-play {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-fishing-games__how-to-play .page-fishing-games__section-title {
  color: var(--gold-color);
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__list-item strong {
  color: var(--gold-color);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

/* --- Strategies Section --- */
.page-fishing-games__strategies {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-fishing-games__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__tip-list .page-fishing-games__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

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

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

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

.page-fishing-games__promo-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-card .page-fishing-games__card-image {
  height: 200px;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  margin-top: 15px;
  margin-bottom: 5px;
}

.page-fishing-games__promo-card .page-fishing-games__card-description {
  padding-top: 0;
  padding-bottom: 15px;
}

/* --- Platform Features Section --- */
.page-fishing-games__platform-features {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__feature-list .page-fishing-games__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}

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

.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: var(--gold-color);
}

.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: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold-color);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--border-color);
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: justify;
}

/* --- Conclusion Section --- */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  text-align: center;
  color: var(--text-main);
}

.page-fishing-games__conclusion-content {
  max-width: 900px;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: var(--gold-color);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 0 60px 0;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-fishing-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 1rem;
  }
  .page-fishing-games__intro-section,
  .page-fishing-games__why-choose,
  .page-fishing-games__game-types,
  .page-fishing-games__how-to-play,
  .page-fishing-games__strategies,
  .page-fishing-games__promotions,
  .page-fishing-games__platform-features,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 50px 0;
  }

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

  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* Containers for images, videos, buttons */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__image,
  .page-fishing-games__card-image,
  .page-fishing-games__promo-card .page-fishing-games__card-image,
  .page-fishing-games__feature-item,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-item,
  .page-fishing-games__cta-button,
  .page-fishing-games__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Button responsiveness */
  .page-fishing-games__cta-button,
  .page-fishing-games__card-button {
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
  }
}