.page-game-types-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

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

.page-game-types-fishing-games__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.8;
  z-index: 0;
  transform: translateX(10%);
  mix-blend-mode: luminosity;
}

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

.page-game-types-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: #fff;
}

.page-game-types-fishing-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-types-fishing-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-types-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #007BFF; /* Primary blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types-fishing-games__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.page-game-types-fishing-games__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.page-game-types-fishing-games__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-types-fishing-games__section:nth-of-type(even) {
  background-color: #f2f7ff; /* Light blue tint for alternating sections */
}

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

.page-game-types-fishing-games__section p {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-game-types-fishing-games__introduction p {
  text-align: left;
  margin-left: unset;
  margin-right: unset;
}

.page-game-types-fishing-games__image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-types-fishing-games__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__text-content {
  flex: 2;
  min-width: 300px;
}

.page-game-types-fishing-games__text-content h3 {
  color: #007BFF;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-game-types-fishing-games__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-game-types-fishing-games__text-content ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #444;
  font-size: 1.05em;
}

.page-game-types-fishing-games__text-content ul li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-game-types-fishing-games__game-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-types-fishing-games__game-card-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-game-types-fishing-games__game-card-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-game-types-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #FFD700;
  color: #007BFF;
}

.page-game-types-fishing-games__btn--small:hover {
  background-color: #e6c200;
}

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

.page-game-types-fishing-games__tip-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.page-game-types-fishing-games__tip-card-title {
  color: #007BFF;
  font-size: 1.3em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-game-types-fishing-games__tip-card-title::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 1.5em;
  top: -5px;
}

.page-game-types-fishing-games__tip-card p {
  text-align: left;
  color: #555;
  margin-bottom: 0;
}

.page-game-types-fishing-games__tips-image {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__promotions ul {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-fishing-games__promotions ul li {
  background-color: #e6f2ff; /* Lighter blue */
  border-left: 5px solid #007BFF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #333;
  font-size: 1.05em;
  text-align: left;
}

.page-game-types-fishing-games__link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-game-types-fishing-games__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-game-types-fishing-games__cta-download {
  text-align: center;
  background: linear-gradient(45deg, #007BFF, #4da3ff); /* Gradient blue */
  color: #fff;
  padding: 80px 0;
  border-radius: 15px;
  margin-top: 40px;
}

.page-game-types-fishing-games__cta-download .page-game-types-fishing-games__section-title {
  color: #fff;
}

.page-game-types-fishing-games__cta-download p {
  color: #e0e0e0;
}

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

.page-game-types-fishing-games__btn--download {
  background-color: #FFD700;
  color: #007BFF;
  padding: 12px 25px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-fishing-games__btn--download:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types-fishing-games__download-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.page-game-types-fishing-games__app-screenshot {
  max-width: 400px;
  width: 100%;
  margin-top: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid #fff;
}

.page-game-types-fishing-games__responsible-gaming ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 30px auto;
}

.page-game-types-fishing-games__responsible-gaming ul li {
  background-color: #fef3e6; /* Light orange/yellow tint */
  border-left: 5px solid #ff8400; /* Complementary to primary blue */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #333;
  font-size: 1.05em;
  text-align: left;
}

.page-game-types-fishing-games__faq .page-game-types-fishing-games__section-title {
  margin-bottom: 30px;
}

.page-game-types-fishing-games__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-game-types-fishing-games__accordion-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-types-fishing-games__accordion-header {
  width: 100%;
  background-color: #007BFF;
  color: #fff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 50px; /* Space for arrow */
}

.page-game-types-fishing-games__accordion-header:hover {
  background-color: #0056b3;
}

.page-game-types-fishing-games__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-game-types-fishing-games__accordion-content.open {
  max-height: 200px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-game-types-fishing-games__accordion-content p {
  text-align: left;
  margin-bottom: 0;
  color: #555;
}

.page-game-types-fishing-games__final-cta {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 15px;
  margin-bottom: 20px;
}

.page-game-types-fishing-games__final-cta .page-game-types-fishing-games__section-title {
  color: #fff;
}

.page-game-types-fishing-games__final-cta p {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-game-types-fishing-games__final-cta .page-game-types-fishing-games__btn {
  margin: 0 10px;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-fishing-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-fishing-games__hero-image {
    width: 60%;
    transform: translateX(5%);
  }
  .page-game-types-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing-games__image-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-game-types-fishing-games__content-image {
    max-width: 100%;
  }
  .page-game-types-fishing-games__text-content {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing-games__hero {
    padding: 80px 0;
  }
  .page-game-types-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing-games__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-types-fishing-games__hero-image {
    position: static;
    width: 80%;
    margin: 30px auto 0 auto;
    transform: translateX(0);
    opacity: 0.6;
  }
  .page-game-types-fishing-games__section {
    padding: 40px 0;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__game-grid, .page-game-types-fishing-games__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing-games__download-options {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing-games__btn--download {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-types-fishing-games__app-screenshot {
    max-width: 80%;
  }
  .page-game-types-fishing-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-types-fishing-games__accordion-header::after {
    right: 15px;
  }
  .page-game-types-fishing-games__accordion-content.open {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .page-game-types-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-types-fishing-games__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-game-types-fishing-games__text-content h3 {
    font-size: 1.5em;
  }
  .page-game-types-fishing-games__text-content ul li {
    font-size: 0.95em;
  }
  .page-game-types-fishing-games__game-card-title {
    font-size: 1.3em;
  }
  .page-game-types-fishing-games__tip-card-title {
    font-size: 1.1em;
  }
  .page-game-types-fishing-games__promotions ul li {
    font-size: 0.95em;
  }
  .page-game-types-fishing-games__btn--download {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-game-types-fishing-games__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-game-types-fishing-games__accordion-header::after {
    right: 10px;
    font-size: 1.2em;
  }
  .page-game-types-fishing-games__accordion-content.open {
    padding: 12px 15px;
  }
}