/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Background */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  margin-bottom: 30px;
  border-radius: 10px;
}

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

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  color: #A7D9B8; /* Text Secondary */
  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;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  border-color: #57E38D;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* General Content Sections */
.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  background-color: #08160F; /* Background */
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  background-color: #11271B; /* Card BG */
  padding-bottom: 60px;
}

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

.page-fishing-games__card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__list-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games__list-item p {
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

/* Strategies Section */
.page-fishing-games__strategies-section {
  background-color: #11271B; /* Card BG */
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__promo-cards .page-fishing-games__card {
  background-color: #0A4B2C; /* Deep Green */
}

/* App Download Section */
.page-fishing-games__app-download-section {
  background-color: #11271B; /* Card BG */
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-fishing-games__app-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-fishing-games__app-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-fishing-games__app-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__app-features li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1.05rem;
}

.page-fishing-games__app-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 10px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
  background-color: #11271B; /* Card BG */
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

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

  .page-fishing-games__app-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__app-image {
    width: 80%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

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

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

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__container,
  .page-fishing-games__game-types-section .page-fishing-games__container,
  .page-fishing-games__guide-section .page-fishing-games__container,
  .page-fishing-games__strategies-section .page-fishing-games__container,
  .page-fishing-games__promotions-section .page-fishing-games__container,
  .page-fishing-games__app-download-section .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container,
  .page-fishing-games__final-cta-section .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__content-image,
  .page-fishing-games__card-image,
  .page-fishing-games__app-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__list-item {
    padding: 20px;
  }

  .page-fishing-games__list-title {
    font-size: 1.2rem;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }

  .page-fishing-games__app-content {
    order: 2;
  }

  .page-fishing-games__app-image {
    order: 1;
    width: 90%;
    max-width: 300px;
  }
}

/* Color Contrast Fixes - Ensure readability */
.page-fishing-games__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

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

.page-fishing-games p,
.page-fishing-games li {
  color: #A7D9B8;
}

.page-fishing-games__card-description {
  color: #A7D9B8;
}

.page-fishing-games__app-features li p {
  color: #A7D9B8;
}

.page-fishing-games__faq-answer p {
  color: #A7D9B8;
}

.page-fishing-games__btn-primary {
  color: #ffffff;
}

.page-fishing-games__btn-secondary {
  color: #57E38D;
}

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