.page-fishing-games-types {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg); /* Inherited from shared.css */
}

.page-fishing-games-types__dark-bg {
  background-color: #300060;
  color: #ffffff;
}

.page-fishing-games-types__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  overflow: hidden;
}

.page-fishing-games-types__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-fishing-games-types__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games-types__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games-types__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-fishing-games-types__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-fishing-games-types__section {
  padding: 60px 20px;
  background-color: #1a0033; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

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

.page-fishing-games-types__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-fishing-games-types__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-fishing-games-types__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-fishing-games-types__game-grid,
.page-fishing-games-types__feature-grid,
.page-fishing-games-types__benefits-grid,
.page-fishing-games-types__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games-types__game-card,
.page-fishing-games-types__feature-item,
.page-fishing-games-types__benefit-item,
.page-fishing-games-types__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-types__game-card:hover,
.page-fishing-games-types__feature-item:hover,
.page-fishing-games-types__benefit-item:hover,
.page-fishing-games-types__strategy-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-types__game-image,
.page-fishing-games-types__feature-icon,
.page-fishing-games-types__strategy-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-fishing-games-types__game-title,
.page-fishing-games-types__feature-title,
.page-fishing-games-types__benefit-title,
.page-fishing-games-types__strategy-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-fishing-games-types__game-title a,
.page-fishing-games-types__game-title a:visited {
  color: #FFD700;
  text-decoration: none;
}

.page-fishing-games-types__game-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-types__game-description,
.page-fishing-games-types__feature-description,
.page-fishing-games-types__benefit-description,
.page-fishing-games-types__strategy-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games-types__btn-primary,
.page-fishing-games-types__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push buttons to bottom of card */
}

.page-fishing-games-types__btn-primary {
  background-color: #FFD700;
  color: #300060;
  border: 2px solid #FFD700;
}

.page-fishing-games-types__btn-primary:hover {
  background-color: #e6c200;
  color: #1a0033;
  transform: translateY(-3px);
}

.page-fishing-games-types__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-types__btn-secondary:hover {
  background-color: #FFD700;
  color: #300060;
  transform: translateY(-3px);
}

.page-fishing-games-types__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border: none; /* No border for icons */
  border-radius: 0;
  min-width: 200px; /* Still ensure min size for content images */
  min-height: 200px; /* Still ensure min size for content images */
}

.page-fishing-games-types__faq-list {
  margin-top: 50px;
}

.page-fishing-games-types__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-types__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #300060;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-types__faq-question:hover {
  background-color: #3a007a;
}

.page-fishing-games-types__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-fishing-games-types__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

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

.page-fishing-games-types__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

.page-fishing-games-types__faq-item.active .page-fishing-games-types__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-fishing-games-types__faq-answer p {
  margin: 0;
  line-height: 1.7;
}

.page-fishing-games-types__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #300060;
}

.page-fishing-games-types__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games-types__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-fishing-games-types__cta-description {
  font-size: 1.15em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-fishing-games-types__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-types__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-types__section-title {
    font-size: 2em;
  }
  .page-fishing-games-types__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-types__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games-types__hero-content {
    margin-bottom: 30px;
  }
  .page-fishing-games-types__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-types__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-types__section {
    padding: 40px 15px;
  }
  .page-fishing-games-types__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-types__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-fishing-games-types__game-grid,
  .page-fishing-games-types__feature-grid,
  .page-fishing-games-types__benefits-grid,
  .page-fishing-games-types__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games-types__game-image,
  .page-fishing-games-types__feature-icon,
  .page-fishing-games-types__strategy-image {
    height: auto;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }
  .page-fishing-games-types__game-card,
  .page-fishing-games-types__feature-item,
  .page-fishing-games-types__benefit-item,
  .page-fishing-games-types__strategy-item {
    padding: 20px;
  }
  .page-fishing-games-types__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-fishing-games-types__faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games-types__cta-section {
    padding: 60px 15px;
  }
  .page-fishing-games-types__cta-title {
    font-size: 2em;
  }
  .page-fishing-games-types__cta-description {
    font-size: 1em;
  }
  .page-fishing-games-types__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-types__btn-primary,
  .page-fishing-games-types__btn-secondary {
    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;
  }

  /* Ensure content containers are responsive */
  .page-fishing-games-types__section,
  .page-fishing-games-types__game-grid,
  .page-fishing-games-types__feature-grid,
  .page-fishing-games-types__benefits-grid,
  .page-fishing-games-types__strategy-grid,
  .page-fishing-games-types__faq-list,
  .page-fishing-games-types__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-fishing-games-types img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-types__section,
  .page-fishing-games-types__card,
  .page-fishing-games-types__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-types__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-types__section-title {
    font-size: 1.6em;
  }
  .page-fishing-games-types__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games-types__btn-primary,
  .page-fishing-games-types__btn-secondary {
    padding: 10px 20px;
  }
}