/* style/fishing-games-guide.css */
.page-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-fishing-games-guide .page-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-guide .page-fishing-games-guide__container--center {
  text-align: center;
}

.page-fishing-games-guide__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-guide__hero-title .highlight {
  color: #ffc107;
}

.page-fishing-games-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-fishing-games-guide__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-fishing-games-guide__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-fishing-games-guide__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-fishing-games-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-fishing-games-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-fishing-games-guide__section:last-of-type {
  border-bottom: none;
}

.page-fishing-games-guide__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-fishing-games-guide__section-title .highlight {
  color: #ffc107;
}

.page-fishing-games-guide__section--intro p, 
.page-fishing-games-guide__section--basics p, 
.page-fishing-games-guide__section--strategy p, 
.page-fishing-games-guide__section--advanced p, 
.page-fishing-games-guide__section--cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-fishing-games-guide__section--intro h3, 
.page-fishing-games-guide__section--basics h3, 
.page-fishing-games-guide__section--strategy h3, 
.page-fishing-games-guide__section--advanced h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
}

.page-fishing-games-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games-guide__list li {
  background-color: #e9f5ff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  font-size: 1.05em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-fishing-games-guide__list li::before {
  content: '✔';
  color: #007bff;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-fishing-games-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-guide__cta-note {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games-guide__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-fishing-games-guide__section-title {
    font-size: 2em;
  }
  .page-fishing-games-guide__section--intro h3, 
  .page-fishing-games-guide__section--basics h3, 
  .page-fishing-games-guide__section--strategy h3, 
  .page-fishing-games-guide__section--advanced h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__hero {
    padding: 80px 0;
  }
  .page-fishing-games-guide__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-fishing-games-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-fishing-games-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games-guide__section {
    padding: 40px 0;
  }
  .page-fishing-games-guide__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-guide__section--intro p, 
  .page-fishing-games-guide__section--basics p, 
  .page-fishing-games-guide__section--strategy p, 
  .page-fishing-games-guide__section--advanced p, 
  .page-fishing-games-guide__section--cta p {
    font-size: 0.95em;
  }
  .page-fishing-games-guide__list li {
    padding: 12px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-guide__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-fishing-games-guide__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-fishing-games-guide__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-guide__section--intro h3, 
  .page-fishing-games-guide__section--basics h3, 
  .page-fishing-games-guide__section--strategy h3, 
  .page-fishing-games-guide__section--advanced h3 {
    font-size: 1.3em;
  }
}