/* style/fishing-games.css */
/* Base styles for the fishing games page */
.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.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; /* Image on top, content below */
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  background-color: #0D0E12; /* Match body background */
  overflow: hidden; /* Ensure no overflow */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-fishing-games__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #FFB04D; /* Glow color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,176,77,0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words wrap */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A;
  border: 2px solid #FFA53A;
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__btn-tertiary {
  background: #A84F0C; /* Border color for subtle buttons */
  color: #FFF3E6;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games__btn-tertiary:hover {
  background: #FF8C1A;
  transform: translateY(-1px);
}

/* General Section Styles */
.page-fishing-games__section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
  border-bottom: 1px solid #17191F; /* Card BG for subtle separator */
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__content-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.page-fishing-games__content-block p {
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-fishing-games__content-block strong {
  color: #FFA53A;
}

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

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

.page-fishing-games__card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #A84F0C; /* Border */
}

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

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #FF8C1A; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__card-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Lists */
.page-fishing-games__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-fishing-games__list li {
  margin-bottom: 10px;
}

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

/* Inline CTA Buttons */
.page-fishing-games__cta-buttons--inline {
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding-bottom: 80px;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #FFF3E6;
  cursor: pointer;
  background-color: #2a2d38; /* Slightly darker for contrast */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question:hover {
  background-color: #3e424f;
}

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

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #FFA53A; /* Auxiliary color for question text */
}

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

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #FFF3E6;
  line-height: 1.5;
}

.page-fishing-games__faq-item details[open] .page-fishing-games__faq-question {
  background-color: #3e424f; /* Keep open state highlighted */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px !important; /* Mobile padding */
  }

  /* Images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__section,
  .page-fishing-games__game-cards,
  .page-fishing-games__card,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__content-block,
  .page-fishing-games__faq-section,
  .page-fishing-games__faq-item,
  .page-fishing-games__video-container,
  .page-fishing-games__video-section,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific padding for hero section on mobile */
  .page-fishing-games__hero-section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* Buttons */
  .page-fishing-games__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }
  
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    width: 100% !important; /* Full width buttons */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95em !important;
  }
  
  .page-fishing-games__cta-buttons--inline {
    flex-direction: column;
    align-items: flex-start; /* Align stacked buttons to start */
  }

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

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-fishing-games__game-cards {
    grid-template-columns: 1fr; /* Single column for cards */
  }
  
  .page-fishing-games__card {
    padding: 20px;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }
  
  /* Ensure content area images are at least 200px */
  .page-fishing-games__content-block img {
    min-width: 200px;
    min-height: 200px;
  }
}