/* style/fishing-games.css */

/* Base Styles & Typography */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already handles padding-top */
  overflow: hidden;
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image, but not on it */
  background: rgba(8, 22, 15, 0.8); /* Deep Green with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.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 0 15px #57E38D; /* Glow */
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Deep Green with transparency */
  color: #F2C14E; /* Gold */
  border-color: #F2C14E; /* Gold */
}

.page-fishing-games__btn-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* Section Styling */
.page-fishing-games__introduction-section,
.page-fishing-games__game-showcase,
.page-fishing-games__tips-tricks,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__why-choose-vj99,
.page-fishing-games__how-to-play,
.page-fishing-games__promotions,
.page-fishing-games__cta-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

/* Feature & Game Cards */
.page-fishing-games__features-grid,
.page-fishing-games__game-list,
.page-fishing-games__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card {
  background-color: #08160F; /* Background */
  border: 1px solid #1E3A2A; /* Divider */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
  overflow: hidden;
}

.page-fishing-games__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4); /* Glow */
}

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

.page-fishing-games__card-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games__card-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-fishing-games__card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* How-To Steps */
.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-fishing-games__step-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-fishing-games__step-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-fishing-games__step-item a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-fishing-games__step-item a:hover {
  text-decoration: underline;
}

/* Tips List */
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__tip-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #57E38D; /* Glow */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-fishing-games__tip-item strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #1E3A2A; /* Divider */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games__faq-answer a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }
  
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2.2em;
  }

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

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__why-choose-vj99,
  .page-fishing-games__game-showcase,
  .page-fishing-games__how-to-play,
  .page-fishing-games__tips-tricks,
  .page-fishing-games__promotions,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__container,
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__promo-cards,
  .page-fishing-games__game-list,
  .page-fishing-games__features-grid,
  .page-fishing-games__steps-list,
  .page-fishing-games__tips-list,
  .page-fishing-games__faq-list,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

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

  .page-fishing-games__hero-image {
    filter: brightness(0.6); /* Slightly more darken for mobile text contrast */
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__hero-content {
    margin-top: -100px; /* Adjust margin for smaller screens */
    padding: 20px 15px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }

  .page-fishing-games__section-title {
    font-size: 1.5em;
  }

  .page-fishing-games__hero-content {
    margin-top: -60px;
  }
  
  .page-fishing-games__card-title {
    font-size: 1.2em;
  }

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

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