/* style/fishing-games.css */
.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__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  box-sizing: border-box;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual appeal */
  padding: 40px;
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__hero-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

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

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

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

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
}

.page-fishing-games__section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games__section:last-of-type {
  border-bottom: none;
}

.page-fishing-games__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-fishing-games__section-description {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: -20px auto 50px auto;
  font-size: 1.1rem;
}

.page-fishing-games__content-block {
  background: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__content-block p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__content-block p:last-child {
  margin-bottom: 0;
}

.page-fishing-games__content-block-text {
  margin-top: 40px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
}

.page-fishing-games__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

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

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

.page-fishing-games__game-card {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-fishing-games__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-fishing-games__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-fishing-games__guide-list,
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__guide-item,
.page-fishing-games__strategy-item {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__guide-item:last-child,
.page-fishing-games__strategy-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games__guide-item-title,
.page-fishing-games__strategy-item-title {
  color: #F2C14E; /* Gold */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-fishing-games__guide-item p,
.page-fishing-games__strategy-item p {
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
}

.page-fishing-games__guide-item a,
.page-fishing-games__strategy-item a,
.page-fishing-games__content-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__guide-item a:hover,
.page-fishing-games__strategy-item a:hover,
.page-fishing-games__content-block a:hover {
  text-decoration: underline;
}

.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 {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__cta-section {
  background: linear-gradient(135deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  padding: 100px 0;
  text-align: center;
}

.page-fishing-games__cta-container {
  max-width: 900px;
}

.page-fishing-games__cta-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 25px;
}

.page-fishing-games__cta-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__faq-item {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  color: #57E38D; /* Glow */
}

.page-fishing-games__faq-item summary {
  list-style: none;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  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: 0 30px 20px 30px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 30px;
  }

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 25px;
    max-width: calc(100% - 30px); /* Account for padding */
  }

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

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons-bottom {
    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: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__section-description {
    font-size: 1rem;
    margin: -15px auto 30px auto;
  }

  .page-fishing-games__content-block,
  .page-fishing-games__game-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-item {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    width: auto !important; /* Allow auto width within container padding */
    max-width: calc(100% - 30px) !important; /* Account for 15px padding on each side */
    box-sizing: border-box !important;
  }

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid {
    gap: 20px;
  }

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

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

  .page-fishing-games__cta-section {
    padding: 60px 0;
  }

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

  .page-fishing-games__cta-description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__introduction-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__cta-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}