.page-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is #121212 from shared.css */
}

.page-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-fishing-games-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-fishing-games-guide__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-fishing-games-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-fishing-games-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* General Section Styling */
.page-fishing-games-guide__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-fishing-games-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0; /* Light text for dark background sections */
}

.page-fishing-games-guide__sub-title {
  font-size: 1.8em;
  color: #017439; /* Brand color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-guide__list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-fishing-games-guide p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* Background Colors */
.page-fishing-games-guide__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast */
  color: #ffffff;
}

.page-fishing-games-guide__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-fishing-games-guide__light-bg .page-fishing-games-guide__section-title,
.page-fishing-games-guide__light-bg .page-fishing-games-guide__sub-title {
  color: #017439; /* Brand color on light background */
}

.page-fishing-games-guide__light-bg p,
.page-fishing-games-guide__light-bg li {
  color: #333333; /* Dark text on light background */
}

/* Buttons */
.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-guide__btn-primary {
  background-color: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register */
  border: 2px solid #C30808;
}

.page-fishing-games-guide__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
  color: #ffffff;
}

.page-fishing-games-guide__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color */
  border: 2px solid #017439;
}

.page-fishing-games-guide__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-fishing-games-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Image & Text Blocks */
.page-fishing-games-guide__image-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.page-fishing-games-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games-guide__strategy-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff; /* Light background for strategy items */
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-guide__strategy-item .page-fishing-games-guide__sub-title {
  color: #017439;
  width: 100%;
}

.page-fishing-games-guide__strategy-item p,
.page-fishing-games-guide__strategy-item li {
  color: #333333;
}

.page-fishing-games-guide__strategy-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games-guide__image-align-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  max-width: 40%;
  min-width: 200px; /* Ensure minimum size */
}

.page-fishing-games-guide__image-align-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 40%;
  min-width: 200px; /* Ensure minimum size */
}

/* Card Grid */
.page-fishing-games-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games-guide__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

.page-fishing-games-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-guide__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games-guide__card-text {
  font-size: 1em;
  color: #333333;
  padding: 0 15px;
}

/* Benefits Section */
.page-fishing-games-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games-guide__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
}

.page-fishing-games-guide__benefit-image {
  width: 100%; /* Occupy card main visual area */
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-guide__benefit-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-fishing-games-guide__benefit-text {
  font-size: 1em;
  color: #333333;
}

/* FAQ Section */
.page-fishing-games-guide__faq-list {
  margin-top: 40px;
}

.page-fishing-games-guide__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #017439;
  transition: background-color 0.3s ease;
}

.page-fishing-games-guide__faq-question:hover {
  background-color: #e0ffe0;
}

.page-fishing-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-toggle {
  transform: rotate(45deg); /* Change to X or - */
}

.page-fishing-games-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 20px 20px;
}

/* CTA Section */
.page-fishing-games-guide__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #017439; /* Brand color as background */
  color: #ffffff;
}

.page-fishing-games-guide__cta-section .page-fishing-games-guide__section-title {
  color: #ffffff;
}

.page-fishing-games-guide__cta-section .page-fishing-games-guide__section-description {
  color: #f0f0f0;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-fishing-games-guide__strategy-item:nth-child(even) .page-fishing-games-guide__image-align-left,
  .page-fishing-games-guide__strategy-item:nth-child(odd) .page-fishing-games-guide__image-align-right {
    float: none;
    margin: 0 auto 20px;
    max-width: 100%;
  }
  .page-fishing-games-guide__strategy-item:nth-child(odd) {
    flex-direction: row;
  }
  .page-fishing-games-guide__strategy-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-fishing-games-guide__strategy-item:nth-child(odd) .page-fishing-games-guide__image-align-left,
  .page-fishing-games-guide__strategy-item:nth-child(even) .page-fishing-games-guide__image-align-right {
    max-width: 40%;
    margin-right: 30px;
    margin-left: 0;
  }
  .page-fishing-games-guide__strategy-item:nth-child(even) .page-fishing-games-guide__image-align-right {
    margin-left: 30px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games-guide__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-guide__section-title {
    font-size: 2em;
  }

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

  .page-fishing-games-guide__hero-cta-buttons,
  .page-fishing-games-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-guide__btn-primary,
  .page-fishing-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-guide__container,
  .page-fishing-games-guide__hero-content,
  .page-fishing-games-guide__intro-section,
  .page-fishing-games-guide__game-types-section,
  .page-fishing-games-guide__strategy-section,
  .page-fishing-games-guide__benefits-section,
  .page-fishing-games-guide__faq-section,
  .page-fishing-games-guide__cta-section,
  .page-fishing-games-guide__card,
  .page-fishing-games-guide__benefit-card,
  .page-fishing-games-guide__strategy-item {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-fishing-games-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important; /* Ensure minimum size */
  }

  .page-fishing-games-guide video,
  .page-fishing-games-guide__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-guide__hero-video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games-guide__image-align-left,
  .page-fishing-games-guide__image-align-right {
    float: none;
    margin: 0 auto 20px;
    max-width: 100% !important;
  }

  .page-fishing-games-guide__strategy-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-fishing-games-guide__strategy-item p,
  .page-fishing-games-guide__strategy-item li {
    text-align: left;
  }

  .page-fishing-games-guide__strategy-item .page-fishing-games-guide__sub-title {
    text-align: center;
  }
  
  .page-fishing-games-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}