/* style/fishing-games.css */

/* Body background is assumed to be dark (var(--black-color)), so default text should be light */
.page-fishing-games {
  color: #ffffff; /* Default text color for the page */
  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;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__dark-section {
  background-color: #26A9E0; /* Using brand color for dark section */
  color: #ffffff;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: inherit; /* Inherit color from section */
  font-weight: bold;
}

.page-fishing-games__description, .page-fishing-games p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

/* 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;
  background-color: #000000; /* Dark background for hero area */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

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

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-fishing-games__btn-primary:hover {
  background-color: #c96700;
  border-color: #c96700;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-fishing-games__btn-tertiary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #1f8ec4;
  border-color: #1f8ec4;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  background-color: #000000; /* Dark background */
  color: #ffffff;
}

.page-fishing-games__introduction-section .page-fishing-games__section-title {
  color: #26A9E0;
}

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #f0f0f0;
}

.page-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white card background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__guide-step {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  color: #ffffff;
}

.page-fishing-games__guide-step h3 {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-fishing-games__guide-step p {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  background-color: #000000;
  color: #f0f0f0;
}

.page-fishing-games__strategy-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-fishing-games__tip-item h3 {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__promo-card h3 {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* Features Section */
.page-fishing-games__features-section {
  background-color: #000000;
  color: #f0f0f0;
}

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

.page-fishing-games__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__feature-item h3 {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  list-style: none; /* For details summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #e0e0e0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 80px;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: #26A9E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image {
    max-height: 500px;
  }
  .page-fishing-games__section-title {
    font-size: 2.5em;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2.2em, 5vw, 3em);
  }
  .page-fishing-games__subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }
  .page-fishing-games__hero-image {
    max-height: 400px;
  }
  .page-fishing-games__hero-content {
    margin-top: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-fishing-games__subtitle {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-fishing-games__cta-button,
  .page-fishing-games a[class*="button"],
  .page-fishing-games 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-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__game-list,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-tips,
  .page-fishing-games__promo-list,
  .page-fishing-games__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-fishing-games__container,
  .page-fishing-games__game-card,
  .page-fishing-games__guide-step,
  .page-fishing-games__tip-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .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;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
  .page-fishing-games__faq-list {
    padding: 0 15px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-fishing-games__subtitle {
    font-size: 0.95em;
  }
  .page-fishing-games__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games__game-card, .page-fishing-games__guide-step, .page-fishing-games__tip-item, .page-fishing-games__promo-card, .page-fishing-games__feature-item {
    padding: 20px;
  }
  .page-fishing-games__card-title, .page-fishing-games__tip-item h3, .page-fishing-games__promo-card h3 {
    font-size: 1.5em;
  }
  .page-fishing-games__feature-item h3 {
    font-size: 1.4em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 12px 18px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 18px 12px 18px;
  }
}