/* style/fishing-games.css */

/* Root variables for colors */
:root {
  --page-fishing-games-background: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-button-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-background);
  color: var(--page-fishing-games-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

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

.page-fishing-games__gold-bg {
  background-color: var(--page-fishing-games-gold);
  color: #000000; /* Ensure high contrast on gold background */
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--page-fishing-games-text-main);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--page-fishing-games-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

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

.page-fishing-games__hero-description {
  font-size: 1.2em;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 40px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games__btn-secondary:hover {
  background: var(--page-fishing-games-glow);
  color: var(--page-fishing-games-background);
  transform: translateY(-3px);
}

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__strategy-guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  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: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__card-title,
.page-fishing-games__feature-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promotion-title {
  font-size: 1.5em;
  color: var(--page-fishing-games-glow);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__card-description,
.page-fishing-games__feature-description,
.page-fishing-games__strategy-description,
.page-fishing-games__promotion-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1em;
  margin-bottom: 15px;
}

.page-fishing-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

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

.page-fishing-games__promotion-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__promotion-item {
  text-align: left;
}

.page-fishing-games__download-app-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__download-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

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

.page-fishing-games__download-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  text-align: right;
}

.page-fishing-games__download-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--page-fishing-games-border);
}

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

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  background-color: var(--page-fishing-games-deep-green);
}

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

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

.page-fishing-games__faq-answer {
  background-color: rgba(17, 39, 27, 0.7); /* slightly lighter dark background */
  padding: 20px 25px;
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  border-top: 1px solid var(--page-fishing-games-divider);
}

.page-fishing-games__faq-item summary {
  list-style: none;
}

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

.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
  color: #000000; /* Ensure text is dark on gold background */
}

.page-fishing-games__cta-title {
  color: #000000;
  margin-bottom: 20px;
}

.page-fishing-games__cta-description {
  color: #333333; /* Darker text for readability on gold */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__btn-gold {
  background: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-gold);
  border: 2px solid var(--page-fishing-games-deep-green);
}

.page-fishing-games__btn-gold:hover {
  background: var(--page-fishing-games-background);
  color: var(--page-fishing-games-gold);
  border-color: var(--page-fishing-games-background);
}

.page-fishing-games__btn-gold-outline {
  background: transparent;
  color: var(--page-fishing-games-deep-green);
  border: 2px solid var(--page-fishing-games-deep-green);
}

.page-fishing-games__btn-gold-outline:hover {
  background: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-gold);
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games__main-title {
    font-size: clamp(28px, 8vw, 48px);
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promotion-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__download-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__download-content,
  .page-fishing-games__download-image-wrapper {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .page-fishing-games__download-buttons {
    flex-direction: column;
    width: 100%;
  }
  .page-fishing-games__download-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General image and container responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__download-app-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    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,
  .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;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    padding: 0 10px;
  }
  .page-fishing-games__content-area {
    padding: 20px 10px;
  }
  .page-fishing-games__cta-buttons {
    gap: 10px;
  }
}