.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--text-main, #FFF3E6); /* Default text color from custom scheme */
  background-color: var(--bg-color, #0D0E12); /* Default background from custom scheme */
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main, #FFF3E6);
  line-height: 1.2;
}

.page-fishing-games__paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__text-link {
  color: #FFA53A;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games__dark-section {
  background-color: var(--background, #0D0E12);
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, main padding handled by body */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px 60px;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

.page-fishing-games__btn-secondary:hover {
  background: #FFA53A;
  color: #FFF3E6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

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

.page-fishing-games__feature-item {
  background-color: var(--card-bg, #17191F);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main, #FFF3E6);
}

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

.page-fishing-games__game-card {
  background-color: var(--card-bg, #17191F);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-main, #FFF3E6);
  text-align: center;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 15px 10px;
  color: #FFA53A;
}

.page-fishing-games__game-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 15px 20px;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 90%;
}

.page-fishing-games__btn-play:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  background-color: var(--card-bg, #17191F);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 70px;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #FF8C1A;
  color: #FFF3E6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.page-fishing-games__step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-fishing-games__step-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__process-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  background-color: var(--card-bg, #17191F);
  border-left: 5px solid #FF8C1A;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__strategy-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-fishing-games__strategy-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

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

.page-fishing-games__promo-card {
  background-color: var(--card-bg, #17191F);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-fishing-games__promo-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__btn-view-all {
  margin-top: 40px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg, #17191F);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #FFA53A;
  list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker,
.page-fishing-games__faq-question::marker {
  display: none;
  content: "";
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main, #FFF3E6);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: "−";
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games__cta-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* All images basic responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All buttons basic responsive styles */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games a[class*="button"],
.page-fishing-games a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button containers basic responsive styles */
.page-fishing-games__hero-cta-buttons,
.page-fishing-games__cta-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    min-height: auto;
  }

  .page-fishing-games__hero-content {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-title {
    font-size: 40px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .page-fishing-games__paragraph {
    font-size: 16px;
  }

  .page-fishing-games__container {
    padding: 30px 15px;
  }

  /* Hero image and other content images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Image containers */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__process-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__cta-image,
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and button containers */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games a[class*="button"],
  .page-fishing-games 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__hero-cta-buttons,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__step-title,
  .page-fishing-games__strategy-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__game-description,
  .page-fishing-games__promo-description,
  .page-fishing-games__step-description,
  .page-fishing-games__strategy-description,
  .page-fishing-games__faq-answer {
    font-size: 15px;
  }

  .page-fishing-games__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-fishing-games__step-item {
    padding-left: 60px;
  }

  .page-fishing-games__step-item::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* Desktop specific styles for product grid */
@media (min-width: 769px) {
  .page-fishing-games__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}