/* style/game-reviews-fishing-games.css */
.page-game-reviews-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  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, #0A2342 0%, #1A3A6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-game-reviews-fishing-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,ocean_pattern,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-fishing-fishing-games__hero > * {
  position: relative;
  z-index: 1;
}

.page-game-reviews-fishing-games__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);
}

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

.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--alt {
  background-color: #1a3a6d; /* Slightly lighter dark blue for alternating sections */
}

.page-game-reviews-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  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__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub section titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-fishing-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-reviews-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-game-reviews-fishing-games__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-fishing-games__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-game-reviews-fishing-games__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-game-reviews-fishing-games__section p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-game-reviews-fishing-games__section h3 {
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-game-reviews-fishing-games__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-reviews-fishing-games__list--numbered {
  list-style: decimal inside;
  margin-left: 0;
}

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

.page-game-reviews-fishing-games__list li p {
  display: inline;
}

.page-game-reviews-fishing-games__list li h3 {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2em;
}

.page-game-reviews-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold for primary buttons */
  color: #0A2342; /* Dark blue for button text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-game-reviews-fishing-games__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

.page-game-reviews-fishing-games__btn--primary:hover {
  background-color: #e6c200;
}

.page-game-reviews-fishing-games__btn--secondary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games__btn--secondary:hover {
  background-color: #1A3A6D;
  border-color: #e6c200;
}

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

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

.page-game-reviews-fishing-games__grid-item {
  background-color: #0A2342;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-fishing-games__grid-item h3 {
  color: #FFD700;
  margin-top: 15px;
  font-size: 1.3em;
}

.page-game-reviews-fishing-games__grid-item p {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-game-reviews-fishing-games__grid-item img {
  max-width: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 3px solid #FFD700;
}

.page-game-reviews-fishing-games__section--cta {
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A2342; /* Dark blue text for CTA */
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews-fishing-games__section--cta .page-game-reviews-fishing-games__section-title {
  color: #0A2342; /* Dark blue for CTA title */
}

.page-game-reviews-fishing-games__section--cta .page-game-reviews-fishing-games__section-title::after {
  background-color: #0A2342;
}

.page-game-reviews-fishing-games__section--cta p {
  color: #0A2342;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-game-reviews-fishing-games__cta-note {
  font-style: italic;
  margin-top: 20px;
  font-size: 1em !important;
  color: #0A2342 !important;
}

.page-game-reviews-fishing-games__section--cta .page-game-reviews-fishing-games__btn {
  background-color: #0A2342; /* Dark blue button on gold background */
  color: #FFD700;
}

.page-game-reviews-fishing-games__section--cta .page-game-reviews-fishing-games__btn:hover {
  background-color: #1A3A6D;
}

.page-game-reviews-fishing-games__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-game-reviews-fishing-games__section--conclusion p {
  font-size: 1.15em;
}

/* Clearfix for floated images */
.page-game-reviews-fishing-games__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-fishing-games__title {
    font-size: 2.8em;
  }
  .page-game-reviews-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-reviews-fishing-games__image--left,
  .page-game-reviews-fishing-games__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-fishing-games__hero {
    padding: 80px 0;
  }
  .page-game-reviews-fishing-games__title {
    font-size: 2.2em;
  }
  .page-game-reviews-fishing-games__subtitle {
    font-size: 1.2em;
  }
  .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__grid {
    grid-template-columns: 1fr;
  }
  .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: 480px) {
  .page-game-reviews-fishing-games__hero {
    padding: 60px 0;
  }
  .page-game-reviews-fishing-games__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__list {
    margin-left: 0;
    padding-left: 20px;
  }
  .page-game-reviews-fishing-games__image--left,
  .page-game-reviews-fishing-games__image--right {
    max-width: 100%;
  }
}