.page-game-reviews-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

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

.page-game-reviews-fishing-games__hero {
  background: linear-gradient(135deg, #0A192F 0%, #203a5c 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.page-game-reviews-fishing-games__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-reviews-fishing-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  opacity: 0.2;
  z-index: 5;
}

.page-game-reviews-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-game-reviews-fishing-games__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-fishing-games__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__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-reviews-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

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

.page-game-reviews-fishing-games__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(300deg) brightness(120%) contrast(100%); /* Gold effect */
}

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

.page-game-reviews-fishing-games__feature-description {
  font-size: 1em;
  color: #D0D0D0;
}

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

.page-game-reviews-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-game-reviews-fishing-games__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-game-reviews-fishing-games__game-description {
  font-size: 0.95em;
  color: #C0C0C0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-game-reviews-fishing-games__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-game-reviews-fishing-games__game-button:hover {
  background-color: #E6C200;
}

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

.page-game-reviews-fishing-games__ordered-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-game-reviews-fishing-games__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-fishing-games__list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-game-reviews-fishing-games__list li strong {
  color: #FFD700;
}

.page-game-reviews-fishing-games__list li::before {
  content: '•';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -2px;
}

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

.page-game-reviews-fishing-games__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__tip-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-game-reviews-fishing-games__tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(300deg) brightness(120%) contrast(100%); /* Gold effect */
}

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

.page-game-reviews-fishing-games__tip-description {
  font-size: 0.95em;
  color: #D0D0D0;
}

.page-game-reviews-fishing-games__security-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games__cta-final {
  background: linear-gradient(45deg, #0A192F, #1A2E4B);
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-fishing-games__flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-reviews-fishing-games__cta-buttons-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.page-game-reviews-fishing-games__cta-button--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
}

.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: #0A192F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-fishing-games__title {
    font-size: 2.8em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-reviews-fishing-games__hero-image-wrapper {
    width: 300px;
    height: 300px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-games__title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-fishing-games__section {
    padding: 40px 0;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__hero-image-wrapper {
    display: none; /* Hide on smaller screens to save space */
  }
  .page-game-reviews-fishing-games__feature-grid, 
  .page-game-reviews-fishing-games__game-card-grid, 
  .page-game-reviews-fishing-games__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-fishing-games__ordered-list li, 
  .page-game-reviews-fishing-games__list li {
    padding-left: 15px;
  }
  .page-game-reviews-fishing-games__list li::before {
    left: 5px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-games__title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-fishing-games__cta-buttons-group {
    flex-direction: column;
    gap: 15px;
  }
}