.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default text color for dark body background */
  background-color: var(--bg-color, #08160F); /* Ensure body background is set in shared.css */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: var(--card-bg-color, #11271B);
  color: var(--glow-color, #57E38D);
  border: 2px solid var(--border-color, #2E7A4E);
  box-shadow: 0 4px 15px rgba(30, 58, 42, 0.4);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--deep-green-color, #0A4B2C);
  color: #ffffff;
  border-color: var(--glow-color, #57E38D);
  box-shadow: 0 6px 20px rgba(30, 58, 42, 0.6);
  transform: translateY(-2px);
}

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

.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-description {
  font-size: 1.05rem;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__about-text {
  flex: 1;
}

.page-fishing-games__about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-secondary-color, #A7D9B8);
}

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

.page-fishing-games__features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-main-color, #F2FFF6);
  font-size: 1.05rem;
}

.page-fishing-games__features-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow-color, #57E38D);
  font-weight: bold;
}

.page-fishing-games__about-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__about-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-types-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--card-bg-color, #11271B);
}

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

.page-fishing-games__game-card {
  background-color: var(--deep-green-color, #0A4B2C);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--glow-color, #57E38D);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin: 0 auto;
  width: calc(100% - 30px);
}

.page-fishing-games__how-to-play-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.page-fishing-games__step-title {
  font-size: 1.4rem;
  color: var(--glow-color, #57E38D);
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__step-description a {
  color: var(--glow-color, #57E38D);
  text-decoration: underline;
}

.page-fishing-games__step-description a:hover {
  color: #ffffff;
}

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

.page-fishing-games__strategy-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--card-bg-color, #11271B);
}

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

.page-fishing-games__strategy-item {
  background-color: var(--deep-green-color, #0A4B2C);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__strategy-title {
  font-size: 1.3rem;
  color: var(--glow-color, #57E38D);
  margin-bottom: 15px;
}

.page-fishing-games__strategy-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__promotions-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-fishing-games__promo-card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-title {
  font-size: 1.4rem;
  color: var(--glow-color, #57E38D);
  margin-bottom: 15px;
}

.page-fishing-games__promo-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn-primary {
  margin: 0 auto;
  width: calc(100% - 0px);
}

.page-fishing-games__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  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;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  cursor: pointer;
  background-color: var(--deep-green-color, #0A4B2C);
  border-bottom: 1px solid var(--border-color, #2E7A4E);
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--glow-color, #57E38D);
  margin-left: 15px;
  line-height: 1;
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
  background-color: var(--card-bg-color, #11271B);
}

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

.page-fishing-games__cta-final-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--deep-green-color, #0A4B2C);
  text-align: center;
}

.page-fishing-games__text-center {
  text-align: center;
}

/* --- Responsive Design --- */

/* All images basic responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All video basic responsive styles */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Video containers basic responsive styles */
.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* All button basic responsive styles */
.page-fishing-games__cta-button,
.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%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button containers basic responsive styles */
.page-fishing-games__cta-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-fishing-games__about-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .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;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__content-area {
    padding: 30px 15px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-fishing-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__game-cards-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games__game-card .page-fishing-games__btn-primary,
  .page-fishing-games__promo-card .page-fishing-games__btn-primary {
    width: calc(100% - 0px) !important;
  }

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

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

  /* Mobile specific image adaptation */
  .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__hero-section,
  .page-fishing-games__about-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile specific video adaptation */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile button container flex adjustment */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

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

/* Ensure contrast for text elements on dark backgrounds */
.page-fishing-games__dark-bg {
  background-color: var(--bg-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__light-bg {
  background-color: var(--text-main-color, #F2FFF6);
  color: var(--bg-color, #08160F);
}

.page-fishing-games p,
.page-fishing-games li {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__section-title,
.page-fishing-games__main-title {
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__game-card,
.page-fishing-games__step-card,
.page-fishing-games__strategy-item,
.page-fishing-games__promo-card,
.page-fishing-games__faq-item {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__game-card .page-fishing-games__card-title,
.page-fishing-games__step-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promo-title {
  color: var(--glow-color, #57E38D);
}

.page-fishing-games__game-card .page-fishing-games__card-description,
.page-fishing-games__step-description,
.page-fishing-games__strategy-text,
.page-fishing-games__promo-text {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__faq-question {
  background-color: var(--deep-green-color, #0A4B2C);
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__faq-answer {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-secondary-color, #A7D9B8);
}