/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light text for dark background */
  background-color: #1A202C;
}

.page-fishing-games .highlight {
  color: #FFD700;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1A202C 0%, #3a404c 100%);
  text-align: center;
  overflow: hidden;
  color: #E5E5E5;
}

.page-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-fishing-games__hero-section > .page-fishing-games__container {
  position: relative;
  z-index: 2;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700;
}

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

.page-fishing-games__hero-actions .page-fishing-games__btn {
  margin: 0 15px;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  z-index: 0;
  opacity: 0.3;
}

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

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

.page-fishing-games__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

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

.page-fishing-games__btn--cta {
  background-color: #008000; /* Green for strong CTA */
  color: #FFFFFF;
  border: 2px solid #008000;
  padding: 16px 35px;
  font-size: 1.2em;
  margin-top: 30px;
}

.page-fishing-games__btn--cta:hover {
  background-color: #006400;
  border-color: #006400;
}

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

.page-fishing-games__btn--detail {
  background-color: #333;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-fishing-games__btn--detail:hover {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-fishing-games__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #C0C0C0;
  text-align: justify;
}

.page-fishing-games__paragraph--centered {
  text-align: center;
}

.page-fishing-games__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: #2a303c;
}

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

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

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

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

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

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

/* Gameplay Guide Section */
.page-fishing-games__gameplay-guide {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-fishing-games__step-item {
  background-color: #2a303c;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: invert(1) sepia(1) saturate(10) hue-rotate(25deg) brightness(1.2);
}

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

.page-fishing-games__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #C0C0C0;
}

/* Strategy Tips Section */
.page-fishing-games__strategy-tips {
  padding: 80px 0;
  background-color: #2a303c;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__strategy-list li {
  background-color: #1A202C;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E5E5E5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__list-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games__strategy-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-fishing-games__promo-item:hover {
  transform: translateY(-5px);
}

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

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

.page-fishing-games__promo-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Detail Pages Section */
.page-fishing-games__detail-pages-section {
  padding: 80px 0;
  background-color: #2a303c;
}

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

.page-fishing-games__detail-item {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__detail-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-fishing-games__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-fishing-games__detail-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__detail-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Section */
.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

.page-fishing-games__cta-actions .page-fishing-games__btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 100px 0 60px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-actions .page-fishing-games__btn {
    display: block;
    margin: 15px auto;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__detail-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__paragraph {
    font-size: 1em;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__step-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__detail-item {
    padding: 20px;
  }
  .page-fishing-games__strategy-list li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__detail-title {
    font-size: 1.2em;
  }
  .page-fishing-games__paragraph {
    font-size: 0.9em;
  }
}