/* style/game-reviews-fishing-game-review.css */
.page-game-reviews-fishing-game-review {
  font-family: 'Arial', sans-serif;
  color: #f5f0e7; /* Light text on dark background */
  background-color: #0A0F18;
}

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

.page-game-reviews-fishing-game-review__content-block {
  padding: 60px 20px;
}

.page-game-reviews-fishing-game-review__hero-section {
  background: linear-gradient(135deg, #0A0F18 0%, #2a2f3a 100%);
  padding: 100px 0;
  text-align: center;
  color: #f5f0e7;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-fishing-game-review__hero-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-game-review__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-game-reviews-fishing-game-review__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-reviews-fishing-game-review__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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-game-review__btn--primary {
  background-color: #FFD700;
  color: #0A0F18;
}

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

.page-game-reviews-fishing-game-review__btn--secondary {
  background-color: #E53935;
  color: #f5f0e7;
  border: 2px solid #E53935;
}

.page-game-reviews-fishing-game-review__btn--secondary:hover {
  background-color: #c02f2b;
  border-color: #c02f2b;
  transform: translateY(-2px);
}

.page-game-reviews-fishing-game-review__btn--dark {
  background-color: #0A0F18;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-game-review__btn--dark:hover {
  background-color: #1a1f28;
  color: #e6c200;
  transform: translateY(-2px);
}

.page-game-reviews-fishing-game-review__btn--highlight {
  background-color: #FFD700;
  color: #0A0F18;
  font-size: 1.2em;
  padding: 18px 35px;
  animation: pulse 2s infinite;
}

.page-game-reviews-fishing-game-review__btn--highlight:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

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

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

.page-game-reviews-fishing-game-review__section-title--light {
  color: #f5f0e7;
}

.page-game-reviews-fishing-game-review__section-title--light::after {
  background-color: #f5f0e7;
}

.page-game-reviews-fishing-game-review__subsection-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-game-reviews-fishing-game-review__bg-dark {
  background-color: #0A0F18;
  color: #f5f0e7;
}

.page-game-reviews-fishing-game-review__bg-accent {
  background-color: #FFD700;
  color: #0A0F18;
}

.page-game-reviews-fishing-game-review__bg-accent .page-game-reviews-fishing-game-review__section-title {
  color: #0A0F18;
}

.page-game-reviews-fishing-game-review__bg-accent .page-game-reviews-fishing-game-review__section-title::after {
  background-color: #0A0F18;
}

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

.page-game-reviews-fishing-game-review ul {
  list-style: disc inside;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-reviews-fishing-game-review ul li {
  margin-bottom: 10px;
}

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

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

.page-game-reviews-fishing-game-review__image--full-width {
  width: 100%;
}

.page-game-reviews-fishing-game-review__image--inline {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

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

.page-game-reviews-fishing-game-review__feature-item {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-game-reviews-fishing-game-review__app-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #0A0F18;
}

.page-game-reviews-fishing-game-review__app-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-game-reviews-fishing-game-review__image--mobile-mockup {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-game-review__center-actions {
  text-align: center;
  margin-top: 50px;
}

.page-game-reviews-fishing-game-review__conclusion-text--light {
  color: #f5f0e7;
  font-size: 1.15em;
  line-height: 1.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-fishing-game-review__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-fishing-game-review__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-fishing-game-review__section-title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-game-review__subsection-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-game-review__hero-actions, .page-game-reviews-fishing-game-review__app-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews-fishing-game-review__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-game-review__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-game-review__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-fishing-game-review__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-game-review__subsection-title {
    font-size: 1.5em;
  }
  .page-game-reviews-fishing-game-review__content-block {
    padding: 40px 15px;
  }
  .page-game-reviews-fishing-game-review__btn {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-game-review__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-game-review__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-fishing-game-review__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-fishing-game-review__subsection-title {
    font-size: 1.3em;
  }
  .page-game-reviews-fishing-game-review__btn {
    font-size: 0.9em;
    padding: 12px 25px;
  }
  .page-game-reviews-fishing-game-review p, .page-game-reviews-fishing-game-review ul {
    font-size: 1em;
  }
  .page-game-reviews-fishing-game-review__image--mobile-mockup {
    max-width: 280px;
  }
}