/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0A244A; /* Main brand color for background */
  line-height: 1.6;
}

.page-fishing-games__hero {
  background: linear-gradient(135deg, #0A244A 0%, #1A3A6A 100%);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-fishing-games__title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-fishing-games__subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A244A; /* Main color for text on accent */
  border: 2px solid #FFD700;
}

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

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

.page-fishing-games__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

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

.page-fishing-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-fishing-games__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

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

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

.page-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__features, .page-fishing-games__popular-games, .page-fishing-games__tips-strategies, .page-fishing-games__promotions, .page-fishing-games__getting-started, .page-fishing-games__faq {
  background-color: #0A244A;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-fishing-games__feature-item, .page-fishing-games__game-card, .page-fishing-games__strategy-item, .page-fishing-games__promo-item, .page-fishing-games__step-item {
  background-color: #1A3A6A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover, .page-fishing-games__game-card:hover, .page-fishing-games__strategy-item:hover, .page-fishing-games__promo-item:hover, .page-fishing-games__step-item:hover {
  transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-fishing-games__feature-description, .page-fishing-games__game-description, .page-fishing-games__strategy-description, .page-fishing-games__promo-description, .page-fishing-games__step-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-fishing-games__game-image, .page-fishing-games__strategy-image, .page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #1A3A6A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-text {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A244A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__cta-final {
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(90deg, #FFD700 0%, #E0B300 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-final .page-fishing-games__cta-text {
  color: #0A244A;
  font-size: 1.8em;
  margin-bottom: 30px;
}

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

.page-fishing-games__faq-item {
  background-color: #1A3A6A;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

.page-fishing-games__contact-promo {
  background: linear-gradient(90deg, #0A244A 0%, #1A3A6A 100%);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-fishing-games__contact-content {
  max-width: 700px;
}

.page-fishing-games__contact-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-fishing-games__contact-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-fishing-games__contact-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #888888;
  background-color: #051A33;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-fishing-games__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-fishing-games__hero-content {
    max-width: 55%;
  }

  .page-fishing-games__hero-image-container {
    position: relative;
    width: 40%;
    height: 100%;
    opacity: 1;
  }

  .page-fishing-games__hero-image {
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }

  .page-fishing-games__title {
    font-size: 4.5em;
  }

  .page-fishing-games__subtitle {
    font-size: 1.4em;
    margin-left: 0;
    margin-right: 0;
  }

  .page-fishing-games__cta-buttons {
    justify-content: flex-start;
  }

  .page-fishing-games__section {
    padding: 80px 40px;
  }

  .page-fishing-games__section-title {
    font-size: 3.2em;
  }

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

  .page-fishing-games__strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-fishing-games__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-fishing-games__contact-promo {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 80px 60px;
  }

  .page-fishing-games__contact-content {
    max-width: 55%;
  }

  .page-fishing-games__contact-image {
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .page-fishing-games__title {
    font-size: 2.5em;
  }

  .page-fishing-games__subtitle {
    font-size: 1.1em;
  }

  .page-fishing-games__section-title {
    font-size: 2em;
  }

  .page-fishing-games__feature-grid, .page-fishing-games__game-list, .page-fishing-games__strategy-grid, .page-fishing-games__promo-grid, .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__hero-image-container {
    display: none; /* Hide hero image on small screens to save space and focus on content */
  }

  .page-fishing-games__contact-promo {
    flex-direction: column;
  }

  .page-fishing-games__contact-image {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn {
    width: 100%;
  }
}