/* style/fishing-games-features-tips.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
}

.page-fishing-games-features-tips {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Default light background */
}

.page-fishing-games-features-tips__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-features-tips__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

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

.page-fishing-games-features-tips__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  flex-direction: column;
}

.page-fishing-games-features-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-fishing-games-features-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-features-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games-features-tips__btn-primary,
.page-fishing-games-features-tips__btn-secondary {
  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, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-features-tips__btn-primary {
  background-color: var(--login-button-color); /* Using login color for primary action */
  color: var(--text-light);
  border: 2px solid var(--login-button-color);
}

.page-fishing-games-features-tips__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-fishing-games-features-tips__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-fishing-games-features-tips__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-fishing-games-features-tips__btn-center {
  display: block;
  margin: 30px auto;
  width: fit-content;
}

.page-fishing-games-features-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games-features-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games-features-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-fishing-games-features-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-fishing-games-features-tips__text-center {
  text-align: center;
}

.page-fishing-games-features-tips__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-fishing-games-features-tips__feature-list,
.page-fishing-games-features-tips__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-features-tips__feature-item,
.page-fishing-games-features-tips__promo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-light);
}

.page-fishing-games-features-tips__feature-item .page-fishing-games-features-tips__feature-title,
.page-fishing-games-features-tips__promo-item .page-fishing-games-features-tips__promo-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-fishing-games-features-tips__feature-item .page-fishing-games-features-tips__feature-description,
.page-fishing-games-features-tips__promo-item .page-fishing-games-features-tips__promo-description {
  font-size: 1em;
  color: var(--text-light);
}

.page-fishing-games-features-tips__tips-grid,
.page-fishing-games-features-tips__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.page-fishing-games-features-tips__tip-card,
.page-fishing-games-features-tips__benefit-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-fishing-games-features-tips__tip-card .page-fishing-games-features-tips__tip-title,
.page-fishing-games-features-tips__benefit-card .page-fishing-games-features-tips__benefit-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games-features-tips__tip-card .page-fishing-games-features-tips__tip-description,
.page-fishing-games-features-tips__benefit-card .page-fishing-games-features-tips__benefit-description {
  font-size: 1em;
  color: var(--text-dark);
}

.page-fishing-games-features-tips__video-section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games-features-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-fishing-games-features-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-fishing-games-features-tips__faq-section {
  padding: 60px 20px;
}

.page-fishing-games-features-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-features-tips__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-fishing-games-features-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.page-fishing-games-features-tips__faq-question:hover {
  background-color: #eef;
}

.page-fishing-games-features-tips__faq-question h3 {
  margin: 0;
  color: inherit;
}

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

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

.page-fishing-games-features-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games-features-tips__faq-item.active .page-fishing-games-features-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-fishing-games-features-tips__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
  color: var(--text-dark);
}

.page-fishing-games-features-tips__conclusion-section {
  padding: 60px 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-features-tips__hero-title {
    font-size: 2.8em;
  }

  .page-fishing-games-features-tips__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-features-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-features-tips__hero-section {
    min-height: 500px;
  }

  .page-fishing-games-features-tips__hero-title {
    font-size: 2.2em;
  }

  .page-fishing-games-features-tips__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-features-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-features-tips__btn-primary,
  .page-fishing-games-features-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games-features-tips__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-features-tips__paragraph {
    font-size: 0.95em;
  }

  .page-fishing-games-features-tips__image-full-width,
  .page-fishing-games-features-tips__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-features-tips__container,
  .page-fishing-games-features-tips__feature-item,
  .page-fishing-games-features-tips__promo-item,
  .page-fishing-games-features-tips__tip-card,
  .page-fishing-games-features-tips__benefit-card,
  .page-fishing-games-features-tips__video-section,
  .page-fishing-games-features-tips__video-wrapper,
  .page-fishing-games-features-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-features-tips__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-features-tips__feature-list,
  .page-fishing-games-features-tips__promo-list,
  .page-fishing-games-features-tips__tips-grid,
  .page-fishing-games-features-tips__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-features-tips__feature-item,
  .page-fishing-games-features-tips__promo-item,
  .page-fishing-games-features-tips__tip-card,
  .page-fishing-games-features-tips__benefit-card {
    padding: 20px;
  }

  .page-fishing-games-features-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-games-features-tips__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-features-tips__faq-item.active .page-fishing-games-features-tips__faq-answer {
    padding: 15px 20px;
  }
}