.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  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 {
  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 */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  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;
  border-radius: 10px;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #F2FFF6;
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  min-width: 180px;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-width: 120px;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  min-width: 220px;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__introduction-section {
  background-color: #08160F;
}

.page-fishing-games__why-choose-section {
  background-color: #0A4B2C;
}

.page-fishing-games__featured-games-section {
  background-color: #08160F;
}

.page-fishing-games__how-to-play-section {
  background-color: #0A4B2C;
}

.page-fishing-games__tips-section {
  background-color: #08160F;
}

.page-fishing-games__promotions-section {
  background-color: #0A4B2C;
}

.page-fishing-games__faq-section {
  background-color: #08160F;
}

.page-fishing-games__conclusion-section {
  background-color: #0A4B2C;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-fishing-games__section-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__content-area {
  text-align: left;
  color: #F2FFF6;
  margin-top: 30px;
}

.page-fishing-games__content-area p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-fishing-games__content-area img {
  margin-top: 30px;
  border-radius: 8px;
}

.page-fishing-games__image-full-width,
.page-fishing-games__image-center {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-fishing-games__card-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

.page-fishing-games__game-card,
.page-fishing-games__promotion-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-fishing-games__game-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-fishing-games__game-card-title,
.page-fishing-games__promotion-card h3 {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__game-card-text,
.page-fishing-games__promotion-card p {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-fishing-games__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-fishing-games__tip-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__tip-item strong {
  color: #2AD16F;
}

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

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #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;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2C14E;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question:hover {
  background-color: #1E3A2A;
}

.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.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

/* Ensure details element does not have max-height on answer */
details.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
  padding-top: 10px;
}

.page-fishing-games__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-fishing-games__text-main {
  color: #F2FFF6;
}

.page-fishing-games__text-secondary {
  color: #A7D9B8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  }
  .page-fishing-games__grid-layout,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotion-cards-grid,
  .page-fishing-games__steps-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    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__section {
    padding: 30px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  }
  .page-fishing-games__section-description {
    font-size: clamp(0.9rem, 2.8vw, 1.05rem);
    margin-bottom: 30px;
  }
  .page-fishing-games__content-area p,
  .page-fishing-games__tip-item,
  .page-fishing-games__faq-answer p {
    font-size: 0.95rem;
  }
  .page-fishing-games__grid-layout,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotion-cards-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-fishing-games__image-full-width,
  .page-fishing-games__image-center {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__content-area,
  .page-fishing-games__card,
  .page-fishing-games__game-card,
  .page-fishing-games__promotion-card,
  .page-fishing-games__step-card,
  .page-fishing-games__tip-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-fishing-games__video-section { /* If a video were present */
    padding-top: 10px !important;
  }
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}