.page-game-reviews-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-game-reviews-fishing-games__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c9b 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,ocean,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-fishing-games__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-reviews-fishing-games__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-game-reviews-fishing-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-game-reviews-fishing-games__cta-group--inline {
  flex-wrap: wrap;
}

.page-game-reviews-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-game-reviews-fishing-games__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-game-reviews-fishing-games__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-fishing-games__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-game-reviews-fishing-games__article h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games__article p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.page-game-reviews-fishing-games__article a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-reviews-fishing-games__article a:hover {
  color: #FFD700;
}

.page-game-reviews-fishing-games__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-game-reviews-fishing-games__list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.page-game-reviews-fishing-games__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-game-reviews-fishing-games__list li p {
  margin-bottom: 0;
}

.page-game-reviews-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-fishing-games__cta-banner {
  background: linear-gradient(90deg, #0A2463, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-game-reviews-fishing-games__banner-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-game-reviews-fishing-games__banner-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-reviews-fishing-games__text-link {
  color: #0A2463;
  font-weight: bold;
  text-decoration: underline;
}

.page-game-reviews-fishing-games__text-link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-fishing-games__main-title {
    font-size: 2.8em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-reviews-fishing-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-games__hero-section {
    padding: 80px 0;
  }
  .page-game-reviews-fishing-games__main-title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-fishing-games__article {
    padding: 20px;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__cta-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-reviews-fishing-games__cta-group--inline {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-fishing-games__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-game-reviews-fishing-games__banner-title {
    font-size: 2em;
  }
  .page-game-reviews-fishing-games__banner-text {
    font-size: 1.1em;
  }
}