/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: var(--bg-dark-1); /* Assuming shared.css defines --bg-dark-1 as a dark color */
  line-height: 1.6;
}

.page-fishing-games__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games__content-wrapper--center {
  text-align: center;
}

.page-fishing-games__section-title {
  color: #FF4500; /* Main brand color for titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-fishing-games__text-block a {
  color: #FF4500;
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust as needed */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FF4500;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-fishing-games__cta-button--primary {
  background-color: #FF4500;
  color: #ffffff;
  border: 2px solid #FF4500;
}

.page-fishing-games__cta-button--primary:hover {
  background-color: #e63e00;
  border-color: #e63e00;
}

.page-fishing-games__cta-button--secondary {
  background-color: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
}

.page-fishing-games__cta-button--secondary:hover {
  background-color: #FF4500;
  color: #ffffff;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  padding: 60px 0;
}

.page-fishing-games__dark-section {
  background-color: #1A1A2E; /* Auxiliary dark color */
  color: #ffffff;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1); /* Inherit from body or shared */
}

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

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #e0e0e0;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card-title {
  font-size: 1.5em;
  color: #FF4500;
  padding: 15px;
  margin-bottom: 0;
}

.page-fishing-games__game-card-description {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: #cccccc;
}

.page-fishing-games__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 60px 0;
}

.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-fishing-games__strategy-text {
  flex: 2;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__strategy-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FF4500;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-fishing-games__strategy-list li strong {
  color: #FF4500;
}

.page-fishing-games__strategy-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-fishing-games__feature-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #1A1A2E; /* Auxiliary color for accent */
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-list li strong {
  color: #FF4500;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
}

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

.page-fishing-games__promotion-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #e0e0e0;
}

.page-fishing-games__promotion-item:hover {
  transform: translateY(-10px);
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__promotion-title {
  font-size: 1.5em;
  color: #FF4500;
  padding: 15px;
  margin-bottom: 0;
}

.page-fishing-games__promotion-description {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: #cccccc;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

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

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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: #FF4500;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

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

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

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

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

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

.page-fishing-games__faq-answer a {
  color: #FF4500;
  text-decoration: underline;
}

.page-fishing-games__faq-image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FF4500; /* Main brand color for strong CTA */
  color: #ffffff;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block a {
  color: #1A1A2E; /* Contrast for links on orange background */
  font-weight: bold;
}

.page-fishing-games__cta-final-section .page-fishing-games__hero-buttons {
  margin-top: 40px;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button--primary {
  background-color: #1A1A2E; /* Dark auxiliary color for primary CTA on orange background */
  border-color: #1A1A2E;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button--primary:hover {
  background-color: #0d0d1a;
  border-color: #0d0d1a;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button--secondary {
  background-color: transparent;
  color: #1A1A2E;
  border-color: #1A1A2E;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button--secondary:hover {
  background-color: #1A1A2E;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__strategy-content {
    flex-direction: column;
  }
  .page-fishing-games__strategy-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }
  .page-fishing-games__hero-content {
    padding: 15px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-fishing-games__text-block {
    font-size: 0.95em;
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__game-card-image,
  .page-fishing-games__promotion-image {
    height: 180px;
  }
  .page-fishing-games__feature-list {
    grid-template-columns: 1fr;
  }

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