.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

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

/* Color Contrast & Backgrounds */
.page-fishing-games__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-fishing-games__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

/* 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 as body handles header offset */
  overflow: hidden;
}

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

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--text-main); /* Ensure text is visible on potentially dark image */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  padding: 20px 30px;
  border-radius: 10px;
}

.page-fishing-games__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main);
}

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

.page-fishing-games__description-center {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 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__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Section Titles */
.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main);
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-fishing-games__sub-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-fishing-games__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__text-block {
  padding: 20px;
}

.page-fishing-games__image-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__image-block img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-fishing-games__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="%2311A84E" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

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

.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 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--divider);
}

.page-fishing-games__card-title {
  font-size: 1.4rem;
  margin: 20px 15px 10px 15px;
  color: var(--primary-color);
}

.page-fishing-games__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__card-button:hover {
  background: var(--auxiliary-color);
}

.page-fishing-games__more-games-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--text-main);
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: var(--card-bg);
}

.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 {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-fishing-games__promo-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__promo-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__promo-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--auxiliary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__promo-button:hover {
  background: var(--primary-color);
}

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

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

.page-fishing-games__step-card {
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-fishing-games__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__step-button {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold-color);
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__step-button:hover {
  background: #f0b03e;
}

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

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

.page-fishing-games__tip-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__tip-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__tip-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg);
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main);
  background-color: var(--card-bg);
  list-style: none; /* For details/summary native behavior */
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--auxiliary-color);
}

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

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__image-block {
    order: -1; /* Image block appears first on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    padding: 15px 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-fishing-games__description {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-fishing-games__sub-title {
    font-size: 1.4rem;
  }
  .page-fishing-games__intro-section, 
  .page-fishing-games__game-showcase-section, 
  .page-fishing-games__promotions-section, 
  .page-fishing-games__guide-section, 
  .page-fishing-games__tips-section, 
  .page-fishing-games__faq-section, 
  .page-fishing-games__conclusion-section {
    padding: 50px 0;
  }
  
  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__image-block,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card,
  .page-fishing-games__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile button responsiveness */
  .page-fishing-games__cta-button,
  .page-fishing-games__card-button,
  .page-fishing-games__promo-button,
  .page-fishing-games__step-button {
    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;
  }
  .page-fishing-games__button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-fishing-games__button-group > * {
    width: 100%;
  }

  /* FAQ specific adjustments for mobile */
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
  .page-fishing-games__list li {
    font-size: 0.95rem;
  }
}

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

/* Ensure text contrast for all elements */
.page-fishing-games p,
.page-fishing-games li,
.page-fishing-games__text-block,
.page-fishing-games__description,
.page-fishing-games__card-text,
.page-fishing-games__promo-text,
.page-fishing-games__step-text,
.page-fishing-games__tip-text,
.page-fishing-games__faq-answer {
  color: var(--text-secondary);
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3,
.page-fishing-games h4,
.page-fishing-games h5,
.page-fishing-games h6,
.page-fishing-games__main-title,
.page-fishing-games__section-title,
.page-fishing-games__sub-title,
.page-fishing-games__card-title,
.page-fishing-games__promo-title,
.page-fishing-games__step-title,
.page-fishing-games__tip-title,
.page-fishing-games__faq-qtext {
  color: var(--text-main);
}

.page-fishing-games__cta-button,
.page-fishing-games__card-button,
.page-fishing-games__promo-button,
.page-fishing-games__step-button {
  color: #ffffff;
}

.page-fishing-games__step-button {
  color: #333333;
}

.page-fishing-games__promo-card.page-fishing-games__light-bg {
  background-color: var(--card-bg);
  border-color: var(--border-color);
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border-color: var(--divider-color);
}

.page-fishing-games__faq-question {
  background-color: var(--card-bg);
}

.page-fishing-games__faq-qtext {
  color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
  color: var(--auxiliary-color);
}