/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-bg: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-border: #2E7A4E;
  --page-fishing-games-glow: #57E38D;
  --page-fishing-games-gold: #F2C14E;
  --page-fishing-games-divider: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-fishing-games-card-bg);
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__lead-text {
  font-size: 1.2rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 30px;
}

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

.page-fishing-games__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-glow);
  border: 2px solid var(--page-fishing-games-glow);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--page-fishing-games-glow);
  color: var(--page-fishing-games-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-lg {
  padding: 16px 40px;
  font-size: 1.3rem;
}

/* Sections */
.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-fishing-games-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 15px;
}

.page-fishing-games__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
}

.page-fishing-games__intro-section,
.page-fishing-games__game-variety-section,
.page-fishing-games__why-choose-us-section,
.page-fishing-games__download-app-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__features-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__final-cta-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
}

/* Image & Text Block */
.page-fishing-games__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-fishing-games__content-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__text-content {
  flex: 1 1 500px;
  text-align: left;
}

.page-fishing-games__text-content .page-fishing-games__paragraph {
  text-align: left;
  color: var(--page-fishing-games-text-secondary);
}

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

.page-fishing-games__feature-card {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-fishing-games-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--page-fishing-games-gold);
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
}

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

.page-fishing-games__game-card {
  background-color: var(--page-fishing-games-card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-fishing-games-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__game-thumbnail {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

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

.page-fishing-games__promo-card {
  background-color: var(--page-fishing-games-card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-fishing-games-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block;
}

.page-fishing-games__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--page-fishing-games-gold);
  margin-bottom: 10px;
}

.page-fishing-games__promo-description {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

/* Why Choose Us */
.page-fishing-games__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__why-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__why-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--page-fishing-games-gold);
  margin-bottom: 10px;
}

.page-fishing-games__why-item p {
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  text-align: left;
}

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-fishing-games-text-main);
  background-color: var(--page-fishing-games-card-bg);
  border-bottom: 1px solid var(--page-fishing-games-divider);
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-fishing-games__faq-question:hover {
  background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-glow);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  background-color: var(--page-fishing-games-bg);
}

.page-fishing-games__faq-answer p {
  text-align: left;
  margin-bottom: 0;
}

/* Details/Summary specific styles */
.page-fishing-games__faq-item summary {
  list-style: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Download App Section */
.page-fishing-games__download-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse; /* Image on right, content on left */
}

.page-fishing-games__download-content {
  flex: 1 1 500px;
  text-align: left;
}

.page-fishing-games__download-content .page-fishing-games__section-title {
  text-align: left;
}

.page-fishing-games__download-content .page-fishing-games__paragraph {
  text-align: left;
}

.page-fishing-games__app-download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__btn-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--page-fishing-games-btn-gradient);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-games__app-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.page-fishing-games__download-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

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

/* Final CTA Section */
.page-fishing-games__final-cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__cta-content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__text-content {
    text-align: center;
  }

  .page-fishing-games__text-content .page-fishing-games__paragraph {
    text-align: center;
  }

  .page-fishing-games__download-flex {
    flex-direction: column-reverse;
  }

  .page-fishing-games__download-content {
    text-align: center;
  }

  .page-fishing-games__download-content .page-fishing-games__section-title,
  .page-fishing-games__download-content .page-fishing-games__paragraph {
    text-align: center;
  }

  .page-fishing-games__app-download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-variety-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__download-app-section,
  .page-fishing-games__final-cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .page-fishing-games__lead-text,
  .page-fishing-games__paragraph {
    font-size: 1rem;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .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__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__content-image,
  .page-fishing-games__feature-icon,
  .page-fishing-games__game-thumbnail,
  .page-fishing-games__promo-image,
  .page-fishing-games__download-image,
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure width is 100% for images */
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__download-image-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__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-fishing-games__download-flex {
    gap: 30px;
  }

  .page-fishing-games__app-download-buttons {
    flex-direction: column;
  }

  .page-fishing-games__btn-app {
    width: 100%;
  }
}

/* Ensure min image size in content areas for non-icon images */
.page-fishing-games__content-image,
.page-fishing-games__feature-icon,
.page-fishing-games__game-thumbnail,
.page-fishing-games__promo-image,
.page-fishing-games__download-image {
  min-width: 200px;
  min-height: 200px;
}

/* Image color filter restriction */
.page-fishing-games img {
  filter: none; /* Prohibit any CSS filters changing image color */
}

/* For video elements, if any */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%; /* Ensure desktop width is 100% */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .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__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}