/* style/fishing-games.css */

:root {
  --primary-color: #1A73E8;
  --secondary-color: #F2994A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000;
  --bg-light: #f1f3f5;
  --card-bg: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-fishing-games {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body */
}

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

/* Hero Sub Section - Not the main HERO, but an intro section for this page */
.page-fishing-games__hero-sub-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 120px; /* Adjust for fixed header */
  background: linear-gradient(135deg, #001f4d, #000000);
  color: var(--text-light);
}

.page-fishing-games__hero-sub-section .page-fishing-games__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-fishing-games__hero-content {
  flex: 1;
  padding-right: 20px;
}

.page-fishing-games__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__intro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image-wrapper {
  flex: 0 0 450px; /* Fixed width for image */
  max-width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-fishing-games__cta-button:hover {
  background: #ff7f2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__text-link:hover {
  text-decoration: underline;
  color: #ff7f2a;
}

/* Content Sections */
.page-fishing-games__content-section {
  padding: 60px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-dark);
}

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

.page-fishing-games__feature-grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-fishing-games__feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-fishing-games__feature-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Criteria List */
.page-fishing-games__criteria-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.page-fishing-games__criteria-item {
  background: #ffffff;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;
  color: var(--text-dark);
}

.page-fishing-games__criteria-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__criteria-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Tips List */
.page-fishing-games__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__tip-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  color: var(--text-dark);
  border-top: 5px solid var(--secondary-color);
}

.page-fishing-games__tip-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__tip-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Promotion List */
.page-fishing-games__promotion-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-fishing-games__promotion-item {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.page-fishing-games__promotion-item strong {
  color: var(--primary-color);
}

.page-fishing-games__center-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-fishing-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-fishing-games__faq-question:active {
  background: #eeeeee;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-sub-section .page-fishing-games__container {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-image-wrapper {
    flex: none;
    max-width: 600px;
    width: 100%;
  }

  .page-fishing-games__main-title {
    font-size: 36px;
  }

  .page-fishing-games__section-title {
    font-size: 30px;
  }
  
  .page-fishing-games__feature-grid--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-sub-section {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-sub-section .page-fishing-games__container {
    gap: 20px;
  }

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

  .page-fishing-games__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-fishing-games__content-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__paragraph {
    font-size: 15px;
    margin-bottom: 20px;
  }

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

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

  .page-fishing-games__hero-image-wrapper {
    max-width: 100%;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__criteria-item,
  .page-fishing-games__tip-item {
    padding: 20px;
  }

  .page-fishing-games__feature-icon {
    width: 100px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__criteria-title,
  .page-fishing-games__tip-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__criteria-description,
  .page-fishing-games__tip-description,
  .page-fishing-games__promotion-item,
  .page-fishing-games__faq-answer p {
    font-size: 14px;
  }
  
  .page-fishing-games__faq-question {
    padding: 15px;
  }
  
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  
  .page-fishing-games__faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 20px;
    margin-left: 10px;
  }
  
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
}