/* style/game-reviews-fishing-games.css */

:root {
  --page-primary-color: #2D3E50;
  --page-accent-color: #F39C12;
  --page-text-light: #ffffff;
  --page-text-dark: #333333;
  --page-background-light: #f8f8f8;
  --page-background-dark: #1a252f;
}

.page-game-reviews-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark);
  background-color: var(--page-background-light);
}

.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, var(--page-primary-color), #4a647d);
  color: var(--page-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-game-reviews-fishing-games__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--page-accent-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.page-game-reviews-fishing-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.page-game-reviews-fishing-games__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-game-reviews-fishing-games__section {
  padding: 60px 0;
}

.page-game-reviews-fishing-games__section--intro {
  background-color: var(--page-background-light);
}

.page-game-reviews-fishing-games__section--features {
  background-color: var(--page-background-dark);
  color: var(--page-text-light);
}

.page-game-reviews-fishing-games__section--gameplay {
  background-color: var(--page-background-light);
}

.page-game-reviews-fishing-games__section--weapons {
  background-color: var(--page-background-dark);
  color: var(--page-text-light);
}

.page-game-reviews-fishing-games__section--tips {
  background-color: var(--page-background-light);
}

.page-game-reviews-fishing-games__section--promo {
  background-color: var(--page-background-dark);
  color: var(--page-text-light);
}

.page-game-reviews-fishing-games__section--why-nohu666 {
  background-color: var(--page-background-light);
}

.page-game-reviews-fishing-games__section--cta {
  background: linear-gradient(135deg, var(--page-accent-color), #e08b0c);
  color: var(--page-text-light);
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews-fishing-games__section-title {
  font-size: 2.2em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-fishing-games__section--features .page-game-reviews-fishing-games__section-title,
.page-game-reviews-fishing-games__section--weapons .page-game-reviews-fishing-games__section-title,
.page-game-reviews-fishing-games__section--promo .page-game-reviews-fishing-games__section-title {
  color: var(--page-accent-color);
}

.page-game-reviews-fishing-games__section--cta .page-game-reviews-fishing-games__section-title {
  color: var(--page-primary-color);
}

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

.page-game-reviews-fishing-games__section--features .page-game-reviews-fishing-games__section-title::after,
.page-game-reviews-fishing-games__section--weapons .page-game-reviews-fishing-games__section-title::after,
.page-game-reviews-fishing-games__section--promo .page-game-reviews-fishing-games__section-title::after {
  background-color: var(--page-primary-color);
}

.page-game-reviews-fishing-games__sub-title {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games__section--features .page-game-reviews-fishing-games__sub-title,
.page-game-reviews-fishing-games__section--weapons .page-game-reviews-fishing-games__sub-title,
.page-game-reviews-fishing-games__section--promo .page-game-reviews-fishing-games__sub-title {
  color: var(--page-text-light);
}

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

.page-game-reviews-fishing-games__feature-item, .page-game-reviews-fishing-games__promo-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-fishing-games__feature-item:hover, .page-game-reviews-fishing-games__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-game-reviews-fishing-games__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.page-game-reviews-fishing-games__feature-heading, .page-game-reviews-fishing-games__promo-heading {
  font-size: 1.4em;
  color: var(--page-accent-color);
  margin-bottom: 15px;
}

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

.page-game-reviews-fishing-games__list li {
  background-color: var(--page-background-light);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-game-reviews-fishing-games__section--weapons .page-game-reviews-fishing-games__list li,
.page-game-reviews-fishing-games__section--promo .page-game-reviews-fishing-games__list li {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--page-text-light);
}

.page-game-reviews-fishing-games__list-heading {
  font-size: 1.3em;
  color: var(--page-primary-color);
  margin-bottom: 5px;
}

.page-game-reviews-fishing-games__section--weapons .page-game-reviews-fishing-games__list-heading,
.page-game-reviews-fishing-games__section--promo .page-game-reviews-fishing-games__list-heading {
  color: var(--page-accent-color);
}

.page-game-reviews-fishing-games__image-center {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.page-game-reviews-fishing-games__image-center--small {
  max-width: 400px;
}

.page-game-reviews-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  white-space: nowrap;
}

.page-game-reviews-fishing-games__btn--primary {
  background-color: var(--page-accent-color);
  color: var(--page-primary-color);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-game-reviews-fishing-games__btn--primary:hover {
  background-color: #e08b0c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.page-game-reviews-fishing-games__btn--secondary {
  background-color: var(--page-primary-color);
  color: var(--page-accent-color);
  border: 2px solid var(--page-accent-color);
  box-shadow: 0 4px 15px rgba(45, 62, 80, 0.4);
}

.page-game-reviews-fishing-games__btn--secondary:hover {
  background-color: #4a647d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 62, 80, 0.6);
}

.page-game-reviews-fishing-games__btn--download {
  background-color: #4CAF50; /* Green for download */
  color: var(--page-text-light);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  margin-top: 30px;
}

.page-game-reviews-fishing-games__btn--download:hover {
  background-color: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

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

.page-game-reviews-fishing-games__link-inline {
  color: var(--page-accent-color);
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-fishing-games__link-inline:hover {
  text-decoration: underline;
  color: #e08b0c;
}

.page-game-reviews-fishing-games__responsible-gaming {
  margin-top: 40px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__sub-title {
    font-size: 1.4em;
  }
  .page-game-reviews-fishing-games__feature-item, .page-game-reviews-fishing-games__promo-item {
    padding: 20px;
  }
  .page-game-reviews-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-fishing-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-games__hero {
    padding: 60px 0;
  }
  .page-game-reviews-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-fishing-games__section {
    padding: 40px 0;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-game-reviews-fishing-games__sub-title {
    font-size: 1.2em;
  }
  .page-game-reviews-fishing-games__feature-grid, .page-game-reviews-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-fishing-games__image-center {
    max-width: 95%;
  }
  .page-game-reviews-fishing-games__image-center--small {
    max-width: 300px;
  }
  .page-game-reviews-fishing-games__btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-games__hero-title {
    font-size: 1.5em;
  }
  .page-game-reviews-fishing-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 1.4em;
  }
  .page-game-reviews-fishing-games__list li {
    padding: 15px;
  }
  .page-game-reviews-fishing-games__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}