/* style/game-reviews-fishing-games-overview.css */
.page-game-reviews-fishing-games-overview {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D2F; /* A slightly lighter dark blue for content background */
}

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

.page-game-reviews-fishing-games-overview__hero-section {
  background: linear-gradient(135deg, #1A2E44, #0A1622);
  color: #FFD700; /* Gold for hero text */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-fishing-games-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:fishing_game,ocean_background,abstract_waves]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-game-reviews-fishing-games-overview__hero-section .page-game-reviews-fishing-games-overview__container {
  position: relative;
  z-index: 1;
}

.page-game-reviews-fishing-games-overview__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-reviews-fishing-games-overview__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-game-reviews-fishing-games-overview__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold */
}

.page-game-reviews-fishing-games-overview__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-game-reviews-fishing-games-overview__btn--secondary {
  background-color: #1A2E44; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games-overview__btn--secondary:hover {
  background-color: #0A1622;
  border-color: #E0B500;
  transform: translateY(-2px);
}

.page-game-reviews-fishing-games-overview__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-reviews-fishing-games-overview__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-reviews-fishing-games-overview__content-section {
  padding: 80px 0;
  background-color: #1A2E44; /* Main dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-game-reviews-fishing-games-overview__content-section:nth-of-type(even) {
  background-color: #0F1D2F; /* Alternating background for visual separation */
}

.page-game-reviews-fishing-games-overview__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-game-reviews-fishing-games-overview__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-reviews-fishing-games-overview__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #B0B0B0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-fishing-games-overview__grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-game-reviews-fishing-games-overview__grid--reverse {
  flex-direction: row-reverse;
}

.page-game-reviews-fishing-games-overview__text-content {
  flex: 1;
  line-height: 1.8;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-game-reviews-fishing-games-overview__text-content h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games-overview__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-reviews-fishing-games-overview__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-game-reviews-fishing-games-overview__image:hover {
  transform: scale(1.02);
}

.page-game-reviews-fishing-games-overview__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-reviews-fishing-games-overview__card {
  background-color: #0A1622;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-fishing-games-overview__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-fishing-games-overview__card-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games-overview__card-text {
  color: #C0C0C0;
  line-height: 1.7;
}

.page-game-reviews-fishing-games-overview__cta-block {
  text-align: center;
  padding: 40px;
  background-color: #0A1622;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games-overview__cta-block p {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-game-reviews-fishing-games-overview__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-reviews-fishing-games-overview__strategy-card {
  background-color: #0F1D2F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-fishing-games-overview__strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-fishing-games-overview__strategy-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games-overview__strategy-card p {
  color: #C0C0C0;
  line-height: 1.7;
}

.page-game-reviews-fishing-games-overview__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-reviews-fishing-games-overview__feature-list li {
  margin-bottom: 25px;
}

.page-game-reviews-fishing-games-overview__feature-list h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-reviews-fishing-games-overview__feature-list p {
  color: #C0C0C0;
  line-height: 1.7;
}

.page-game-reviews-fishing-games-overview__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-reviews-fishing-games-overview__promo-card {
  background-color: #0A1622;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-fishing-games-overview__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-fishing-games-overview__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-fishing-games-overview__promo-card h3 {
  color: #FFD700;
  font-size: 1.7em;
  margin-bottom: 10px;
}

.page-game-reviews-fishing-games-overview__promo-card p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-game-reviews-fishing-games-overview__app-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-game-reviews-fishing-games-overview__feature-item {
  text-align: center;
  max-width: 200px;
}

.page-game-reviews-fishing-games-overview__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-game-reviews-fishing-games-overview__feature-item p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-reviews-fishing-games-overview__download-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-game-reviews-fishing-games-overview__disclaimer {
  text-align: center;
  font-size: 0.95em;
  color: #A0A0A0;
  margin-top: 20px;
}

.page-game-reviews-fishing-games-overview__conclusion {
  text-align: center;
  padding-bottom: 100px;
}

.page-game-reviews-fishing-games-overview__conclusion p {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-fishing-games-overview__main-title {
    font-size: 2.8em;
  }

  .page-game-reviews-fishing-games-overview__subtitle {
    font-size: 1.3em;
  }

  .page-game-reviews-fishing-games-overview__section-title {
    font-size: 2em;
  }

  .page-game-reviews-fishing-games-overview__grid {
    flex-direction: column;
  }

  .page-game-reviews-fishing-games-overview__grid--reverse {
    flex-direction: column;
  }

  .page-game-reviews-fishing-games-overview__text-content, .page-game-reviews-fishing-games-overview__image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-games-overview__hero-section {
    padding: 80px 0;
  }

  .page-game-reviews-fishing-games-overview__main-title {
    font-size: 2.2em;
  }

  .page-game-reviews-fishing-games-overview__subtitle {
    font-size: 1.1em;
  }

  .page-game-reviews-fishing-games-overview__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-fishing-games-overview__content-section {
    padding: 60px 0;
  }

  .page-game-reviews-fishing-games-overview__card-grid, .page-game-reviews-fishing-games-overview__strategy-grid, .page-game-reviews-fishing-games-overview__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-fishing-games-overview__app-features {
    gap: 30px;
  }

  .page-game-reviews-fishing-games-overview__download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-game-reviews-fishing-games-overview__btn {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-games-overview__main-title {
    font-size: 1.8em;
  }

  .page-game-reviews-fishing-games-overview__subtitle {
    font-size: 1em;
  }

  .page-game-reviews-fishing-games-overview__section-title {
    font-size: 1.5em;
  }

  .page-game-reviews-fishing-games-overview__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }

  .page-game-reviews-fishing-games-overview__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-game-reviews-fishing-games-overview__content-section {
    padding: 40px 0;
  }
}