/* style/fishing-games-strategy.css */
:root {
  --page-primary-color: #017439;
  --page-secondary-color: #FFFFFF;
  --page-text-color-dark-bg: #FFFFFF;
  --page-text-color-light-bg: #333333;
  --page-card-bg-dark-bg: rgba(255, 255, 255, 0.1);
  --page-card-bg-light-bg: #FFFFFF;
  --page-button-register-bg: #C30808;
  --page-button-register-text: #FFFF00;
  --page-button-login-bg: #C30808;
  --page-button-login-text: #FFFF00;
}

.page-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-light-bg); /* Default for light backgrounds */
  background-color: #0a0a0a; /* Body background from shared.css */
}

.page-fishing-games-strategy__dark-bg {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__light-bg {
  background-color: var(--page-secondary-color);
  color: var(--page-text-color-light-bg);
}

/* Hero Section */
.page-fishing-games-strategy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a; /* Dark background */
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-text-color-dark-bg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7); /* Darken image for better text contrast */
}

/* General Section Styling */
.page-fishing-games-strategy__section {
  padding: 60px 20px;
}

.page-fishing-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Matches body background */
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__section-title {
  color: var(--page-text-color-light-bg);
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Grid Container for Cards */
.page-fishing-games-strategy__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-strategy__card {
  background-color: var(--page-card-bg-dark-bg); /* Semi-transparent white for dark background */
  color: var(--page-text-color-dark-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__card {
  background-color: var(--page-card-bg-light-bg);
  color: var(--page-text-color-light-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__card-title {
  color: var(--page-text-color-light-bg);
}

.page-fishing-games-strategy__card-text {
  font-size: 1em;
}

/* Strategy List */
.page-fishing-games-strategy__strategy-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-fishing-games-strategy__strategy-item {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly lighter for readability */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__strategy-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__strategy-text {
  font-size: 1.1em;
}

/* List Styles */
.page-fishing-games-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__list-item strong {
  color: var(--page-text-color-dark-bg);
}

/* Call to Action (CTA) */
.page-fishing-games-strategy__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--page-primary-color); /* Brand green */
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games-strategy__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-fishing-games-strategy__btn-primary {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-dark-bg);
  border-color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__btn-primary:hover {
  background-color: var(--page-text-color-dark-bg);
  color: var(--page-primary-color);
  transform: translateY(-3px);
}

.page-fishing-games-strategy__btn-secondary {
  background-color: transparent;
  color: var(--page-text-color-dark-bg);
  border-color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: var(--page-text-color-dark-bg);
  color: var(--page-primary-color);
  transform: translateY(-3px);
}

/* Specific button colors for Register/Login */
.page-fishing-games-strategy__btn-register,
.page-fishing-games-strategy__btn-login {
  background-color: var(--page-button-register-bg);
  color: var(--page-button-register-text);
  border-color: var(--page-button-register-bg);
}

.page-fishing-games-strategy__btn-register:hover,
.page-fishing-games-strategy__btn-login:hover {
  background-color: #e00b0b; /* Slightly darker red on hover */
  color: var(--page-button-register-text);
  transform: translateY(-3px);
}

/* FAQ Section */
.page-fishing-games-strategy__faq-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: #0a0a0a; /* Dark background */
  color: var(--page-text-color-dark-bg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__faq-container {
  background-color: var(--page-card-bg-light-bg);
  color: var(--page-text-color-light-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

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

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-text-color-dark-bg);
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__faq-question {
  color: var(--page-text-color-light-bg);
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__faq-question:hover {
  background-color: #f5f5f5;
}

.page-fishing-games-strategy__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit;
}

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

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.page-fishing-games-strategy__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--page-text-color-dark-bg);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__faq-answer p {
  color: var(--page-text-color-light-bg);
}

.page-fishing-games-strategy__faq-answer a {
  color: var(--page-primary-color);
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-strategy__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

  .page-fishing-games-strategy__hero-title {
    font-size: 2.2em;
  }

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

  .page-fishing-games-strategy__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary,
  .page-fishing-games-strategy a[class*="button"],
  .page-fishing-games-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  
  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__section {
    padding: 40px 15px;
  }

  .page-fishing-games-strategy__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

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

  .page-fishing-games-strategy__card {
    padding: 20px;
  }

  .page-fishing-games-strategy__card-title {
    font-size: 1.3em;
  }

  .page-fishing-games-strategy__strategy-item {
    padding: 20px;
  }

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

  .page-fishing-games-strategy__list-item {
    padding: 15px;
    font-size: 1em;
  }

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

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

  .page-fishing-games-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-fishing-games-strategy__faq-question h3 {
    font-size: 1.1em;
  }

  .page-fishing-games-strategy__faq-answer {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    padding: 15px 15px 15px;
  }

  /* Image responsiveness for mobile */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-image-wrapper,
  .page-fishing-games-strategy__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Content area images should not be smaller than 200px */
  .page-fishing-games-strategy__content-area img,
  .page-fishing-games-strategy__strategy-list img {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure it fills container */
    height: auto;
  }
}

/* Color Contrast Fixes (if needed) */
.page-fishing-games-strategy__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-fishing-games-strategy__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}