/* style/fishing-games.css */

/* Custom Colors */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Default text color for dark body background */
  background-color: var(--color-background);
}

/* Sections */
.page-fishing-games__hero-section,
.page-fishing-games__intro-section,
.page-fishing-games__download-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-final-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small decorative top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-background);
}

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

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

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

/* Hero Section */
.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over image */
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.page-fishing-games__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
}

.page-fishing-games__highlight {
  color: var(--color-gold);
  font-weight: bold;
}

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

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff;
  border: 2px solid var(--color-button-gradient-start);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.page-fishing-games__btn-large {
  min-width: 220px;
  padding: 18px 35px;
  font-size: 1.2rem;
}

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

/* General Content Styling */
.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
}

.page-fishing-games__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.page-fishing-games p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--color-text-main);
}

.page-fishing-games__light-bg p {
  color: #333333;
}

.page-fishing-games ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-fishing-games ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-main);
}

.page-fishing-games__light-bg ul li {
  color: #333333;
}

.page-fishing-games ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.page-fishing-games__inline-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__inline-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

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

.page-fishing-games__image-text-block .page-fishing-games__content-image {
  flex: 1 1 500px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-fishing-games__image-text-block .page-fishing-games__text-content {
  flex: 1 1 400px;
}

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

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

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

.page-fishing-games__feature-card .page-fishing-games__card-title {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-fishing-games__feature-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* Download Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__step-card {
  background-color: var(--color-card-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-card .page-fishing-games__card-title {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-fishing-games__step-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.page-fishing-games__download-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-fishing-games__download-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.page-fishing-games__download-note {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Tips Section */
.page-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-fishing-games__tip-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-fishing-games__tip-card .page-fishing-games__card-title {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-fishing-games__tip-card p {
  color: #333333;
  font-size: 0.95rem;
}

.page-fishing-games__strategy-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 20px auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__promo-card {
  background-color: var(--color-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: var(--color-gold);
  font-size: 1.4rem;
  margin: 20px 20px 10px 20px;
}

.page-fishing-games__promo-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  padding: 0 20px;
  flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 20px;
  align-self: flex-start;
}

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

.page-fishing-games__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-divider);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: var(--color-primary);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--color-text-main);
}

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

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-divider);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
  }
  .page-fishing-games__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__image-text-block .page-fishing-games__text-content {
    order: 2;
  }
  .page-fishing-games__image-text-block .page-fishing-games__content-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__download-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 20px;
  }

  .page-fishing-games__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-fishing-games__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .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: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: 1.3rem;
  }

  .page-fishing-games p,
  .page-fishing-games ul li,
  .page-fishing-games__faq-answer p {
    font-size: 0.95rem;
  }

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

  .page-fishing-games__image-text-block .page-fishing-games__content-image,
  .page-fishing-games__download-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-image-wrapper,
  .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;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__promo-image {
    height: 150px; /* Adjust height for mobile */
  }

  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.7rem;
  }

  .page-fishing-games__section-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__hero-content {
    margin-top: -20px;
  }
}