/* style/fishing-games.css */
.page-fishing-games {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-fishing-games__hero-section {
  background: linear-gradient(135deg, #1A1A1A, #0D0D0D); /* Dark background with subtle gradient */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-bottom: 40px; /* Add some padding for content below image */
}

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

.page-fishing-games__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-fishing-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A1A1A;
}

.page-fishing-games__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-fishing-games__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 1;
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-fishing-games__features-section,
.page-fishing-games__games-showcase,
.page-fishing-games__strategy-guide,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  background-color: #1A1A1A; /* Darker background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__features-section {
    background-color: #0D0D0D;
    border-radius: 0;
    box-shadow: none;
}

.page-fishing-games__feature-grid,
.page-fishing-games__game-grid,
.page-fishing-games__promo-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__promo-card {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__game-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-icon,
.page-fishing-games__game-image,
.page-fishing-games__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__feature-icon {
    width: 200px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-fishing-games__game-image,
.page-fishing-games__promo-image {
    width: 100%;
    min-height: 200px;
}

.page-fishing-games__card-title,
.page-fishing-games__game-title,
.page-fishing-games__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__card-description,
.page-fishing-games__game-description,
.page-fishing-games__promo-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__strategy-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__strategy-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-fishing-games__strategy-cta,
.page-fishing-games__promo-cta,
.page-fishing-games__cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2a2a2a;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #3a3a3a;
}

.page-fishing-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-fishing-games__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #e0e0e0;
  text-align: left;
}

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

.page-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__main-title {
    font-size: 2.5em;
  }
  .page-fishing-games__intro-text {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__content-area {
    padding: 40px 15px;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button {
    width: 80%;
    max-width: 300px;
  }
  .page-fishing-games__feature-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }
  .page-fishing-games__faq-answer {
    font-size: 0.9em;
  }
  .page-fishing-games__strategy-list {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 2em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-section {
    min-height: 500px;
  }
  .page-fishing-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}