/* style/game-types-fishing-games.css */
.page-game-types-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E5E7EB; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main background color */
}

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

.page-game-types-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-fishing-games__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-game-types-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-types-fishing-games__hero {
  background: linear-gradient(135deg, #1A202C, #3A475C);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing-games__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.page-game-types-fishing-games__hero-description {
  font-size: 1.3em;
  color: #CBD5E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-game-types-fishing-games__hero-image {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 600px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  transform: rotate(15deg);
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .page-game-types-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-game-types-fishing-games__hero-image {
    display: none;
  }
}

.page-game-types-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-game-types-fishing-games__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for text */
}

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

.page-game-types-fishing-games__btn--secondary {
  background-color: #2D3748; /* Slightly lighter dark background */
  color: #FFD700; /* Auxiliary color for text */
  border: 1px solid #FFD700;
}

.page-game-types-fishing-games__btn--secondary:hover {
  background-color: #4A5568;
  transform: translateY(-3px);
}

.page-game-types-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-game-types-fishing-games__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-game-types-fishing-games__intro p,
.page-game-types-fishing-games__app-details p {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #CBD5E0;
}

.page-game-types-fishing-games__features-grid,
.page-game-types-fishing-games__game-cards-grid,
.page-game-types-fishing-games__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-types-fishing-games__feature-item,
.page-game-types-fishing-games__game-card,
.page-game-types-fishing-games__offer-card {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-fishing-games__feature-item:hover,
.page-game-types-fishing-games__game-card:hover,
.page-game-types-fishing-games__offer-card:hover {
  transform: translateY(-5px);
}

.page-game-types-fishing-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(48%) saturate(3025%) hue-rotate(320deg) brightness(101%) contrast(101%); /* Gold tint */
}

.page-game-types-fishing-games__feature-item h3,
.page-game-types-fishing-games__game-card h3,
.page-game-types-fishing-games__offer-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-game-types-fishing-games__feature-item p,
.page-game-types-fishing-games__game-card p,
.page-game-types-fishing-games__offer-card p {
  color: #A0AEC0;
  font-size: 0.95em;
  line-height: 1.6;
  flex-grow: 1;
}

.page-game-types-fishing-games__game-card-image,
.page-game-types-fishing-games__offer-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-fishing-games__ordered-list,
.page-game-types-fishing-games__unordered-list {
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
  color: #CBD5E0;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-game-types-fishing-games__ordered-list li,
.page-game-types-fishing-games__unordered-list li {
  margin-bottom: 15px;
}

.page-game-types-fishing-games__ordered-list li strong {
  color: #FFD700;
}

.page-game-types-fishing-games__ordered-list a,
.page-game-types-fishing-games__unordered-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-types-fishing-games__ordered-list a:hover,
.page-game-types-fishing-games__unordered-list a:hover {
  text-decoration: underline;
}

.page-game-types-fishing-games__app-info {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-fishing-games__app-screenshot {
  width: 40%;
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-games__app-details h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-game-types-fishing-games__app-details .page-game-types-fishing-games__unordered-list {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 20px;
  list-style: disc;
}

@media (max-width: 992px) {
  .page-game-types-fishing-games__app-info {
    flex-direction: column;
    text-align: center;
  }
  .page-game-types-fishing-games__app-screenshot {
    width: 60%;
    max-width: 300px;
  }
  .page-game-types-fishing-games__app-details .page-game-types-fishing-games__unordered-list {
    text-align: left;
    margin: 0 auto 30px auto;
  }
}

.page-game-types-fishing-games__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-fishing-games__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-game-types-fishing-games__faq-question {
  color: #FFD700;
  font-size: 1.2em;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-game-types-fishing-games__faq-question:hover {
  background-color: #3A475C;
}

.page-game-types-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-types-fishing-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-types-fishing-games__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-types-fishing-games__faq-answer p {
  color: #A0AEC0;
  font-size: 1em;
  line-height: 1.6;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.page-game-types-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-game-types-fishing-games__cta-final {
  background: linear-gradient(45deg, #1A202C, #4A5568);
  padding: 80px 0;
}

.page-game-types-fishing-games__cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #CBD5E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-types-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-fishing-games__features-grid,
  .page-game-types-fishing-games__game-cards-grid,
  .page-game-types-fishing-games__offers-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing-games__ordered-list,
  .page-game-types-fishing-games__unordered-list {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-game-types-fishing-games__hero {
    padding: 80px 0 50px;
  }
  .page-game-types-fishing-games__section {
    padding: 40px 0;
  }
}