.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color, #F2FFF6); /* Default text color for dark body background */
  background-color: var(--background-color, #08160F); /* Default background color */
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px; /* Adjust as needed */
  background-color: var(--deep-green-color, #0A4B2C);
}

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

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  transform: translateY(-20px); /* Slightly overlap image for visual flow */
  background-color: var(--card-bg-color, #11271B);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-main-color, #F2FFF6);
  letter-spacing: 0.05em;
}

.page-fishing-games__intro-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color, #A7D9B8);
}

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

.page-fishing-games__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color, #F2FFF6);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--main-color, #11A84E);
  border: 2px solid var(--main-color, #11A84E);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--main-color, #11A84E);
  color: var(--text-main-color, #F2FFF6);
  transform: translateY(-3px);
}

.page-fishing-games__section {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__dark-section {
  background-color: var(--deep-green-color, #0A4B2C);
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color, #F2C14E);
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--main-color, #11A84E);
  border-radius: 2px;
}

.page-fishing-games__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2E7A4E);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__feature-card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-fishing-games__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__game-list--single-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__game-description {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2E7A4E);
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  text-align: justify;
}

.page-fishing-games__game-description .page-fishing-games__card-title {
  margin-top: 20px;
  text-align: left;
}

.page-fishing-games__game-description .page-fishing-games__card-text {
  margin-bottom: 20px;
  text-align: left;
}

.page-fishing-games__guide-list,
.page-fishing-games__promo-list,
.page-fishing-games__tips-list,
.page-fishing-games__registration-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__guide-item,
.page-fishing-games__promo-item,
.page-fishing-games__tips-item,
.page-fishing-games__registration-step-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color, #2E7A4E);
  transition: transform 0.2s ease;
}

.page-fishing-games__guide-item:hover,
.page-fishing-games__promo-item:hover,
.page-fishing-games__tips-item:hover,
.page-fishing-games__registration-step-item:hover {
  transform: translateY(-3px);
}

.page-fishing-games__guide-step-title,
.page-fishing-games__promo-title,
.page-fishing-games__tips-title,
.page-fishing-games__registration-step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-color, #11A84E);
}

.page-fishing-games__guide-step-text,
.page-fishing-games__promo-text,
.page-fishing-games__tips-text,
.page-fishing-games__registration-step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__guide-step-text a,
.page-fishing-games__registration-step-text a {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__guide-step-text a:hover,
.page-fishing-games__registration-step-text a:hover {
  text-decoration: underline;
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color, #2E7A4E);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-fishing-games__faq-question:hover {
  background-color: var(--deep-green-color, #0A4B2C);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--main-color, #11A84E);
  margin-left: 15px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: var(--deep-green-color, #0A4B2C);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games__faq-answer a {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile hero */
    padding-bottom: 20px;
  }

  .page-fishing-games__hero-content {
    padding: 15px;
    transform: translateY(-10px);
    margin: 0 15px;
  }

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

  .page-fishing-games__intro-text {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }

  .page-fishing-games__image-content {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 150px;
  }

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

  .page-fishing-games__feature-card {
    padding: 25px;
  }

  .page-fishing-games__card-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__card-text {
    font-size: 0.95rem;
  }

  .page-fishing-games__game-list--single-image {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games__game-description {
    padding: 25px;
  }

  .page-fishing-games__guide-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__tips-item,
  .page-fishing-games__registration-step-item {
    padding: 20px;
  }

  .page-fishing-games__guide-step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__tips-title,
  .page-fishing-games__registration-step-title {
    font-size: 1.2rem;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
}