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

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

.page-fishing-games .highlight {
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A246A 0%, #1A3B8A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

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

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

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

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

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn {
  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, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A246A; /* Dark blue text on gold */
}

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

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

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

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD700; /* Gold title */
  padding-top: 60px;
}

.page-fishing-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #E0E0E0;
}

/* About Section */
.page-fishing-games__about-section {
  background-color: #1A3B8A; /* Slightly lighter dark blue */
  padding: 80px 0;
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__feature-item {
  background-color: #0A246A; /* Main dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
}

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

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

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #CCCCCC;
}

/* Gameplay Section */
.page-fishing-games__gameplay-section {
  padding: 80px 0;
  background-color: #0A246A;
}

.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__game-card {
  background-color: #1A3B8A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 20px 20px;
}

.page-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-fishing-games__btn--inline {
  padding: 8px 15px;
  font-size: 0.85em;
  margin-top: 10px;
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
  background-color: #1A3B8A;
  padding: 80px 0;
}

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

.page-fishing-games__step-item {
  background-color: #0A246A;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-fishing-games__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A246A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 20px auto;
  border: 4px solid #1A3B8A;
}

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

.page-fishing-games__step-description {
  font-size: 1em;
  color: #CCCCCC;
}

/* Tips Section */
.page-fishing-games__tips-section {
  padding: 80px 0;
  background-color: #0A246A;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__tips-list li {
  background-color: #1A3B8A;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-fishing-games__tips-list li strong {
  color: #FFD700;
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #1A3B8A;
  padding: 80px 0;
}

.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__promo-card {
  background-color: #0A246A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__promo-thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-fishing-games__promo-description {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 20px 20px;
}

.page-fishing-games__promo-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #E0E0E0;
}

/* App Download Section */
.page-fishing-games__app-download-section {
  padding: 80px 0;
  background-color: #0A246A;
}

.page-fishing-games__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-fishing-games__app-text {
  max-width: 700px;
}

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

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

.page-fishing-games__app-image-wrapper {
  max-width: 400px;
  width: 100%;
}

.page-fishing-games__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #1A3B8A;
  padding: 80px 0;
}

.page-fishing-games__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: #0A246A;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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 {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 25px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-question.active + .page-fishing-games__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 0 25px 20px;
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A3B8A 0%, #0A246A 100%);
  text-align: center;
}

.page-fishing-games__btn--hero {
  font-size: 1.5em;
  padding: 20px 40px;
  margin-top: 40px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-fishing-games__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__features-grid, .page-fishing-games__game-grid, .page-fishing-games__steps-grid, .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__app-content {
    flex-direction: column;
  }
  .page-fishing-games__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn--hero {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 0.95em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__step-title, .page-fishing-games__promo-title {
    font-size: 1.4em;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}