.page-fishing-games {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  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 {
  display: flex;
  flex-direction: column; /* Default to column for mobile first */
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure image wrapper does not overflow */
  margin-bottom: 20px; /* Space between image and content */
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1; /* Ensure content is above any background elements if needed */
  max-width: 800px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

/* Video Section */
.page-fishing-games__video-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

.page-fishing-games__video-title {
  font-size: 2.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
}

.page-fishing-games__video-container {
  width: 100%; /* Desktop width */
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%; /* Ensure wrapper is 100% width on desktop */
  max-width: 100%;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-fishing-games__video-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* General Content Sections */
.page-fishing-games__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-fishing-games__section-title {
  font-size: 2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
}

.page-fishing-games__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-block strong {
  color: #F2FFF6; /* Text Main */
}

/* Feature Grid */
.page-fishing-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-image {
  width: 100%; /* Ensure large images for cards */
  height: auto;
  max-width: 300px; /* Example max-width for card images */
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

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

.page-fishing-games__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Game List / Steps List / Promo List */
.page-fishing-games__game-items,
.page-fishing-games__steps-list,
.page-fishing-games__promo-list,
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  gap: 25px;
}

.page-fishing-games__game-item,
.page-fishing-games__step-item,
.page-fishing-games__promo-item,
.page-fishing-games__tip-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__game-item-title,
.page-fishing-games__step-title,
.page-fishing-games__promo-title,
.page-fishing-games__tip-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-fishing-games__game-item-description,
.page-fishing-games__step-description,
.page-fishing-games__promo-description,
.page-fishing-games__tip-description {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Call to Action Buttons */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping initially */
  word-wrap: break-word; /* Allow wrapping if needed */
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  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%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button color for text */
  border: 2px solid #2AD16F;
  margin-left: 20px;
}

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

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #08160F; /* Background */
}

.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 #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none; /* Remove default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
  background-color: #13994A; /* Slightly darker green on hover */
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #2AD16F; /* Green */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

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

/* Links within content */
.page-fishing-games a {
  color: #2AD16F; /* Green */
  text-decoration: underline;
}

.page-fishing-games a:hover {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-fishing-games__hero-section {
    flex-direction: row; /* Desktop: row layout */
    text-align: left;
    padding: 80px 20px;
  }

  .page-fishing-games__hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
    margin-left: 40px; /* Space between content and image */
  }

  .page-fishing-games__hero-content {
    flex: 1;
  }

  .page-fishing-games__feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-fishing-games__game-items,
  .page-fishing-games__steps-list,
  .page-fishing-games__promo-list,
  .page-fishing-games__tips-list {
    grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px; /* Smaller padding for mobile */
  }

  .page-fishing-games__hero-section {
    padding: 30px 15px 40px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

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

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

  .page-fishing-games__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-fishing-games__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-fishing-games__video-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-fishing-games__content-section {
    padding: 30px 0;
  }

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

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

  .page-fishing-games__game-items,
  .page-fishing-games__steps-list,
  .page-fishing-games__promo-list,
  .page-fishing-games__tips-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .page-fishing-games__feature-image {
    max-width: 100% !important;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__game-item,
  .page-fishing-games__step-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__tip-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}