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

.page-game-categories-fishing-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-game-categories-fishing-games__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient for depth */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}

.page-game-categories-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFD700; /* Gold for emphasis */
}

.page-game-categories-fishing-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-categories-fishing-games__hero-actions .page-game-categories-fishing-games__btn {
  margin: 0 15px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-categories-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #007BFF; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-game-categories-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-categories-fishing-games__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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

.page-game-categories-fishing-games__hero-image {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: auto;
  opacity: 0.7;
  z-index: 0;
}

.page-game-categories-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-game-categories-fishing-games__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-categories-fishing-games__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-categories-fishing-games__about {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.page-game-categories-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-game-categories-fishing-games__feature-list li {
  background-color: #e0f2ff; /* Light blue */
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #003366;
  border-left: 5px solid #007BFF;
}

.page-game-categories-fishing-games__feature-list li strong {
  color: #0056b3;
}

.page-game-categories-fishing-games__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-categories-fishing-games__how-to-play {
  background-color: #f0f8ff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

.page-game-categories-fishing-games__steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-game-categories-fishing-games__steps-list li {
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
}

.page-game-categories-fishing-games__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007BFF;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-game-categories-fishing-games__btn--inline {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 15px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #FFD700;
  color: #007BFF;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-game-categories-fishing-games__btn--inline:hover {
  background-color: #e6c200;
}

.page-game-categories-fishing-games__strategies {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

.page-game-categories-fishing-games__offers {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

.page-game-categories-fishing-games__offers .page-game-categories-fishing-games__section-title {
  color: #FFD700;
}

.page-game-categories-fishing-games__offer-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-game-categories-fishing-games__offer-list li {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
}

.page-game-categories-fishing-games__download {
  background-color: #f0f8ff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  text-align: center;
}

.page-game-categories-fishing-games__download-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-game-categories-fishing-games__download-item {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  width: 200px;
}

.page-game-categories-fishing-games__download-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.page-game-categories-fishing-games__btn--download {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.page-game-categories-fishing-games__btn--download:hover {
  background-color: #0056b3;
}

.page-game-categories-fishing-games__small-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 20px;
}

.page-game-categories-fishing-games__faq {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

.page-game-categories-fishing-games__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-game-categories-fishing-games__accordion-header {
  background-color: #f0f0f0;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #007BFF;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-categories-fishing-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-categories-fishing-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-categories-fishing-games__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #f9f9f9;
}

.page-game-categories-fishing-games__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

.page-game-categories-fishing-games__cta {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #007BFF; /* Dark blue text on gold */
  text-align: center;
  padding: 60px 0;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.page-game-categories-fishing-games__cta .page-game-categories-fishing-games__section-title {
  color: #0056b3; /* Darker blue for contrast */
}

.page-game-categories-fishing-games__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #003366;
}

.page-game-categories-fishing-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 35px;
  background-color: #007BFF; /* Dark blue button */
  color: #fff;
  border: 2px solid #007BFF;
}

.page-game-categories-fishing-games__btn--large:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-game-categories-fishing-games__cta-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.5;
  z-index: 0;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .page-game-categories-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-categories-fishing-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-categories-fishing-games__hero-actions .page-game-categories-fishing-games__btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-categories-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-categories-fishing-games__feature-list {
    grid-template-columns: 1fr;
  }
  .page-game-categories-fishing-games__download-options {
    flex-direction: column;
    align-items: center;
  }
  .page-game-categories-fishing-games__download-item {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-game-categories-fishing-games__hero {
    padding: 60px 0;
  }
  .page-game-categories-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-game-categories-fishing-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-categories-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-categories-fishing-games__subsection-title {
    font-size: 1.5em;
  }
  .page-game-categories-fishing-games__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}