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

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

.page-fishing-games__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-fishing-games__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn--primary {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

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

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

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

/* Hero Section */
.page-fishing-games__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games__hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9));
  z-index: 2;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

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

.page-fishing-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

/* About Us / Content Wrapper */
.page-fishing-games__about-us, .page-fishing-games__app-download {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-fishing-games__about-us:nth-of-type(odd) {
  background-color: #fff;
}

.page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-fishing-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__text-content {
  flex: 1;
  font-size: 1.1em;
  color: #444;
}

.page-fishing-games__text-content h3 {
  color: #003366;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-fishing-games__text-content p {
  margin-bottom: 1em;
}

.page-fishing-games__image-content {
  flex: 1;
  text-align: center;
}

.page-fishing-games__image-content .page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

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

.page-fishing-games__feature-item p {
  color: #555;
}

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

/* Popular Games Section */
.page-fishing-games__popular-games {
  padding: 80px 0;
  background-color: #fefefe;
}

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

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

.page-fishing-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-fishing-games__game-card .page-fishing-games__btn {
  margin-bottom: 20px;
}

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

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

.page-fishing-games__strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games__strategy-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.3));
}

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

.page-fishing-games__strategy-item p {
  color: #555;
  font-size: 0.95em;
}

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

.page-fishing-games__promotions .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__promotions .page-fishing-games__section-title::after {
  background-color: #fff;
}

.page-fishing-games__promotions .page-fishing-games__section-subtitle {
  color: #e0e0e0;
}

.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: #002244;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

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

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

/* App Download Section */
.page-fishing-games__app-download .page-fishing-games__text-content .page-fishing-games__btn {
  margin-top: 20px;
}

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

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

.page-fishing-games__detail-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__detail-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.page-fishing-games__detail-title a:hover {
  color: #FFD700;
}

.page-fishing-games__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-fishing-games__detail-card .page-fishing-games__btn {
  display: inline-block;
}

/* Call to Action Section */
.page-fishing-games__call-to-action {
  padding: 100px 0;
  background: linear-gradient(45deg, #003366, #004488);
  text-align: center;
  color: #fff;
}

.page-fishing-games__cta-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-description {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-fishing-games__image-content {
    margin-top: 30px;
  }
  .page-fishing-games__cta-title {
    font-size: 2.5em;
  }
  .page-fishing-games__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero {
    height: 500px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__hero-actions .page-fishing-games__btn {
    display: block;
    margin: 15px auto;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__feature-grid, .page-fishing-games__game-grid, .page-fishing-games__strategy-grid, .page-fishing-games__promo-grid, .page-fishing-games__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__about-us, .page-fishing-games__features, .page-fishing-games__popular-games, .page-fishing-games__strategy, .page-fishing-games__promotions, .page-fishing-games__app-download, .page-fishing-games__detail-pages, .page-fishing-games__call-to-action {
    padding: 60px 0;
  }
  .page-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
}