/* style/fishing-games.css */
.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
  max-width: 900px;
  padding: 0 15px;
}

.page-fishing-games__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Titles */
.page-fishing-games__section-title {
  font-size: clamp(24px, 3vw, 40px);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__sub-title {
  font-size: clamp(20px, 2.5vw, 30px);
  color: #F2C14E;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Paragraphs */
.page-fishing-games__paragraph {
  font-size: 17px;
  color: #A7D9B8;
  margin-bottom: 15px;
}

/* Links */
.page-fishing-games__inline-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__inline-link:hover {
  color: #F2C14E; /* Gold color on hover */
  text-decoration: underline;
}

/* Buttons */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
}

/* Lists */
.page-fishing-games__list {
  list-style: disc inside;
  color: #A7D9B8;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games__ordered-list {
  list-style: decimal inside;
  color: #A7D9B8;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games__list-item {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-fishing-games__list-strong {
  color: #F2FFF6;
}

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

.page-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card-title {
  font-size: 22px;
  color: #F2FFF6;
  padding: 15px 20px 5px;
  font-weight: bold;
}

.page-fishing-games__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
  color: #57E38D;
}

.page-fishing-games__game-card-description {
  font-size: 15px;
  color: #A7D9B8;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-fishing-games__game-card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  text-align: center;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.page-fishing-games__game-card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 30px;
}

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

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

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

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 30px 10px;
  }

  .page-fishing-games__container {
    padding: 0 10px;
  }

  .page-fishing-games__main-title {
    font-size: 32px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
  }

  .page-fishing-games__sub-title {
    font-size: 24px;
  }

  .page-fishing-games__paragraph,
  .page-fishing-games__list-item {
    font-size: 15px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
  }

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

  .page-fishing-games__game-card-image {
    height: 200px;
  }

  .page-fishing-games__game-card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
  
  /* Ensure all images are responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__game-card,
  .page-fishing-games__image-inline,
  .page-fishing-games__section,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__game-card-button {
    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;
  }
}