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

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

.page-games-fishing__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-games-fishing__section:nth-child(even) {
  background-color: #f8f8f8;
}

.page-games-fishing__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #0A2342 60%, #F0A500 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-games-fishing__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-games-fishing__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #F0A500; /* Contrast with dark blue background */
}

.page-games-fishing__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-games-fishing__cta-button {
  display: inline-block;
  background-color: #F0A500;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-games-fishing__cta-button:hover {
  background-color: #e69500;
  transform: translateY(-3px);
}

.page-games-fishing__cta-button--secondary {
  background-color: #0A2342;
  color: #F0A500;
  border: 2px solid #F0A500;
  margin-left: 15px;
}

.page-games-fishing__cta-button--secondary:hover {
  background-color: #1a3a60;
  border-color: #e69500;
}

.page-games-fishing__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-games-fishing__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-games-fishing__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-games-fishing__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}

.page-games-fishing__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-games-fishing__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F0A500;
  border-radius: 2px;
}

.page-games-fishing__sub-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-games-fishing__text-link {
  color: #F0A500;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-games-fishing__text-link:hover {
  color: #0A2342;
}

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

.page-games-fishing__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-games-fishing__list--icon li::before {
  content: '\27A4'; /* Right arrow */
  color: #F0A500;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-games-fishing__list--check li::before {
  content: '\2713'; /* Checkmark */
  color: #0A2342;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-games-fishing__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-games-fishing__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-games-fishing__text-content {
  flex: 2;
}

.page-games-fishing__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-games-fishing__image--center {
  display: block;
  margin: 30px auto;
  max-width: 80%;
}

.page-games-fishing__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-games-fishing__grid-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-games-fishing__grid-item:hover {
  transform: translateY(-5px);
}

.page-games-fishing__grid-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 4px;
}

.page-games-fishing__item-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-games-fishing__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-games-fishing__strategy-card {
  background-color: #fefefe;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.page-games-fishing__strategy-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-games-fishing__card-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-games-fishing__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-games-fishing__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-games-fishing__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-games-fishing__faq-question:hover {
  background-color: #e0e0e0;
}

.page-games-fishing__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #F0A500;
  transition: transform 0.3s ease;
}

.page-games-fishing__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-games-fishing__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-games-fishing__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-games-fishing__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing__main-title {
    font-size: 2.8em;
  }

  .page-games-fishing__subtitle {
    font-size: 1.1em;
  }

  .page-games-fishing__section-title {
    font-size: 2em;
  }

  .page-games-fishing__image-text-layout {
    flex-direction: column;
    text-align: center;
  }

  .page-games-fishing__image-wrapper,
  .page-games-fishing__text-content {
    width: 100%;
    min-width: unset;
  }
  .page-games-fishing__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-games-fishing__hero-section {
    padding: 60px 0;
  }

  .page-games-fishing__main-title {
    font-size: 2.2em;
  }

  .page-games-fishing__subtitle {
    font-size: 1em;
  }

  .page-games-fishing__section {
    padding: 40px 0;
  }

  .page-games-fishing__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-games-fishing__sub-title {
    font-size: 1.5em;
  }

  .page-games-fishing__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-fishing__cta-button + .page-games-fishing__cta-button {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .page-games-fishing__main-title {
    font-size: 1.8em;
  }

  .page-games-fishing__subtitle {
    font-size: 0.9em;
  }

  .page-games-fishing__hero-content {
    padding: 0 15px;
  }

  .page-games-fishing__section-title {
    font-size: 1.6em;
  }

  .page-games-fishing__grid-layout,
  .page-games-fishing__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-games-fishing__image--center {
    max-width: 95%;
  }
}