.page-fishing-games {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);

  font-family: Arial, sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* Adjusted for typical hero image aspect ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no color filters */
}

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 0 15px;
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2;
}

.page-fishing-games__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted H1 font size */
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

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

.page-fishing-games__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color);
}

.page-fishing-games__button--primary {
  background: var(--button-gradient);
  border: none;
}

.page-fishing-games__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__button--secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-fishing-games__button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__button--center {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem); /* H2 font size */
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__game-types-section,
.page-fishing-games__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-fishing-games__feature-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__feature-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}

.page-fishing-games__step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-fishing-games__step-content {
  flex-grow: 1;
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: bold;
}

.page-fishing-games__step-text {
  font-size: 1rem;
  color: var(--text-main-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-button {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--secondary-color);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.page-fishing-games__step-button:hover {
  background-color: var(--primary-color);
}

.page-fishing-games__game-types-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

.page-fishing-games__game-types-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__game-types-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 600px;
  margin: 0;
}

.page-fishing-games__game-type-item {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-main-color);
  line-height: 1.8;
}

.page-fishing-games__content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-fishing-games__faq-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  color: var(--text-main-color);
  margin-bottom: 15px;
}

.page-fishing-games__faq-button {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-button:hover {
  background-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-fishing-games__game-types-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-fishing-games__game-types-list {
    flex: 1;
    padding-right: 30px;
  }
  .page-fishing-games__content-image {
    flex-shrink: 0;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button {
    width: 100%;
    max-width: 280px;
  }
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-fishing-games__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-fishing-games__step-button {
    width: 100%;
    max-width: 200px;
  }
  .page-fishing-games__content-image {
    max-width: 100%;
    height: auto; /* Ensure responsiveness */
    min-width: 200px;
    min-height: 200px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.95rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  .page-fishing-games__button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .page-fishing-games__feature-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__feature-text {
    font-size: 0.9rem;
  }
  .page-fishing-games__game-type-item,
  .page-fishing-games__faq-answer {
    font-size: 0.95rem;
  }
  .page-fishing-games__game-types-list {
    padding-left: 20px;
  }
}