/* style/fishing-games.css */

/* Base styles for the page content, assuming dark body background */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

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

.page-fishing-games__section--introduction {
  background-color: #08160F;
}

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

.page-fishing-games__section--download {
  background-color: #08160F;
}

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

.page-fishing-games__section--promotions {
  background-color: #08160F;
}

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

.page-fishing-games__section--faq {
  background-color: #08160F;
}

.page-fishing-games__section--conclusion {
  background-color: #11271B; /* Card BG */
  border-bottom: none;
}

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

/* 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;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 10;
  position: relative;
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 5vw, 3em); /* Use clamp for H1 */
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Titles */
.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-fishing-games__subsection-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #2AD16F;
}

/* Paragraphs */
.page-fishing-games__paragraph {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

/* Links */
.page-fishing-games__paragraph a {
  color: #2AD16F; /* Highlight color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__paragraph a:hover {
  color: #13994A;
  text-decoration: underline;
}

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

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

.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%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Highlight color */
  border: 2px solid #2AD16F; /* Border color */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  border-color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Lists */
.page-fishing-games__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__list-item {
  margin-bottom: 8px;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games__faq-item {
  border-bottom: 1px solid #1E3A2A; /* Divider */
  background-color: #11271B; /* Card BG */
}

.page-fishing-games__faq-item:last-child {
  border-bottom: none;
}

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

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(42, 209, 111, 0.05);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: rgba(42, 209, 111, 0.08);
}


/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__subsection-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-fishing-games__description {
    font-size: 0.95em;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-fishing-games__paragraph {
    font-size: 0.9em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .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;
  }

  /* Image responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__image-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__subsection-title {
    font-size: 1.2em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}