.page-fishing-games-types {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

/* Color definitions from custom palette */
.page-fishing-games-types__text-main {
  color: #F2FFF6;
}
.page-fishing-games-types__text-secondary {
  color: #A7D9B8;
}
.page-fishing-games-types__dark-bg {
  background-color: #08160F;
}
.page-fishing-games-types__card-bg {
  background-color: #11271B;
}
.page-fishing-games-types__background {
  background-color: #08160F;
}

.page-fishing-games-types__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-types__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-types__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games-types__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 700px; /* Limit image height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-fishing-games-types__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-types__hero-content {
  position: relative; /* Ensure content is above other elements if needed */
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
}

.page-fishing-games-types__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-fishing-games-types__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-types__section {
  padding: 80px 20px;
  text-align: center;
}

.page-fishing-games-types__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-types__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-fishing-games-types__section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-fishing-games-types__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-fishing-games-types__game-type-card {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px; /* Ensure cards have a consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-types__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-types__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-types__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-fishing-games-types__card-text {
  font-size: 1rem;
  line-height: 1.7;
}

.page-fishing-games-types__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-fishing-games-types__feature-item {
  background-color: var(--card-b-g);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-types__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games-types__feature-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-fishing-games-types__feature-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-types__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-types__strategy-item {
  background-color: var(--card-b-g);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-types__strategy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games-types__promo-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-types__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-types__faq-item {
  background-color: var(--card-b-g);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-fishing-games-types__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid var(--border);
}

.page-fishing-games-types__faq-item[open] > .page-fishing-games-types__faq-question {
  border-bottom: 1px solid transparent; /* Hide border when open */
}

.page-fishing-games-types__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games-types__faq-item[open] .page-fishing-games-types__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-types__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Details element specific styling */
.page-fishing-games-types__faq-item summary {
  list-style: none;
}
.page-fishing-games-types__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Conclusion section */
.page-fishing-games-types__conclusion {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-types__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-fishing-games-types__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-fishing-games-types {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-types__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-fishing-games-types__hero-content {
    margin-top: 20px;
  }

  .page-fishing-games-types__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-fishing-games-types__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-fishing-games-types__section {
    padding: 50px 15px;
  }

  .page-fishing-games-types__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-fishing-games-types__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-fishing-games-types__subsection-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-fishing-games-types__game-type-grid,
  .page-fishing-games-types__feature-list,
  .page-fishing-games-types__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-types__game-type-card,
  .page-fishing-games-types__feature-item,
  .page-fishing-games-types__strategy-item {
    padding: 20px;
    min-height: auto;
  }

  /* Mobile image responsiveness */
  .page-fishing-games-types img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-fishing-games-types__section,
  .page-fishing-games-types__card,
  .page-fishing-games-types__container,
  .page-fishing-games-types__hero-section,
  .page-fishing-games-types__game-type-grid,
  .page-fishing-games-types__feature-list,
  .page-fishing-games-types__strategy-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-fishing-games-types__cta-button,
  .page-fishing-games-types__btn-primary,
  .page-fishing-games-types__btn-secondary,
  .page-fishing-games-types a[class*="button"],
  .page-fishing-games-types a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games-types__cta-buttons,
  .page-fishing-games-types__button-group,
  .page-fishing-games-types__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .page-fishing-games-types__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-fishing-games-types__faq-answer {
    padding: 0 20px 15px 20px;
  }
}