/* style/games-fishing.css */
.page-games-fishing {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-games-fishing__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-games-fishing__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-games-fishing__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-games-fishing__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
}

.page-games-fishing__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Buttons */
.page-games-fishing__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;
  margin: 10px;
  cursor: pointer;
}

.page-games-fishing__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue text */
  border: 2px solid #FFCC00;
}

.page-games-fishing__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-games-fishing__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

.page-games-fishing__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-games-fishing__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 5px;
}

.page-games-fishing__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* General Section Styling */
.page-games-fishing__section {
  padding: 60px 0;
  text-align: center;
}

.page-games-fishing__section:nth-of-type(odd) {
  background-color: #f0f5f8; /* Lighter blue-grey */
}

.page-games-fishing__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  margin-bottom: 20px;
}

.page-games-fishing__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Why New88 Section */
.page-games-fishing__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-games-fishing__feature-item:hover {
  transform: translateY(-5px);
}

.page-games-fishing__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-games-fishing__feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-games-fishing__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-games-fishing__cta-bottom {
  margin-top: 50px;
}

/* Popular Games Section */
.page-games-fishing__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-fishing__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-games-fishing__game-card:hover {
  transform: translateY(-5px);
}

.page-games-fishing__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-games-fishing__game-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 0 10px;
}

.page-games-fishing__game-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
}

/* Guide Section */
.page-games-fishing__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-fishing__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-games-fishing__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-games-fishing__step-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-games-fishing__step-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

/* Tips Section */
.page-games-fishing__tips-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-games-fishing__tips-text {
  flex: 2;
  min-width: 300px;
}

.page-games-fishing__tip-heading {
  font-size: 1.5em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-games-fishing__tips-text ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #666666;
}

.page-games-fishing__tips-text li {
  margin-bottom: 10px;
}

.page-games-fishing__tips-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-games-fishing__tips-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-games-fishing__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-games-fishing__promo-item:hover {
  transform: translateY(-5px);
}

.page-games-fishing__promo-image {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-games-fishing__promo-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-games-fishing__promo-text {
  font-size: 0.95em;
  color: #666666;
}

/* Download App Section */
.page-games-fishing__download-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-games-fishing__download-text-content {
  flex: 1;
  min-width: 300px;
}

.page-games-fishing__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-games-fishing__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-games-fishing__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(24%) sepia(87%) saturate(3025%) hue-rotate(48deg) brightness(101%) contrast(101%); /* Gold filter */
}

.page-games-fishing__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-games-fishing__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-games-fishing__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-games-fishing__faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-games-fishing__faq-question {
  font-size: 1.25em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-games-fishing__faq-answer {
  font-size: 1em;
  color: #555555;
  display: block; /* Ensure it's visible by default, JS can toggle */
}

/* Final CTA Section */
.page-games-fishing__section--final-cta {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 80px 0;
}

.page-games-fishing__final-cta-content {
  max-width: 900px;
}

.page-games-fishing__section--final-cta .page-games-fishing__section-title {
  color: #FFCC00; /* Gold title */
}

.page-games-fishing__section--final-cta .page-games-fishing__section-description {
  color: #ffffff;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing__hero-title {
    font-size: 2.8em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 1.3em;
  }
  .page-games-fishing__section-title {
    font-size: 2em;
  }
  .page-games-fishing__tips-content, .page-games-fishing__download-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-games-fishing__tips-text, .page-games-fishing__download-text-content {
    width: 100%;
  }
  .page-games-fishing__app-benefits {
    text-align: left;
    margin: 30px auto;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-games-fishing__hero {
    padding: 60px 0;
  }
  .page-games-fishing__hero-title {
    font-size: 2.2em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 1.1em;
  }
  .page-games-fishing__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-fishing__section {
    padding: 40px 0;
  }
  .page-games-fishing__section-title {
    font-size: 1.8em;
  }
  .page-games-fishing__section-description {
    font-size: 1em;
  }
  .page-games-fishing__hero-image-wrapper {
    width: 70%;
  }
}

@media (max-width: 576px) {
  .page-games-fishing__hero-title {
    font-size: 1.8em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 0.95em;
  }
  .page-games-fishing__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-games-fishing__features-grid, .page-games-fishing__game-grid, .page-games-fishing__steps-grid, .page-games-fishing__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-games-fishing__hero-image-wrapper {
    width: 90%;
  }
}