.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body or set explicitly if needed */
}

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

.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-fishing-games__hero-content {
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__hero-title {
  font-size: 4.5em;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-description {
  font-size: 1.4em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  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-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

/* Introduction Section */
.page-fishing-games__introduction-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-fishing-games__introduction-section .page-fishing-games__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games__why-choose-section .page-fishing-games__section-title {
  color: #FFD700;
}

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

.page-fishing-games__feature-card {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #FFD700;
}

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

.page-fishing-games__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
  flex-grow: 1;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  background-color: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-fishing-games__game-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 10px;
  font-weight: bold;
}

.page-fishing-games__game-link {
  color: #FFD700;
  text-decoration: none;
}

.page-fishing-games__game-link:hover {
  text-decoration: underline;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0;
}

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

.page-fishing-games__step-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-fishing-games__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-fishing-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #cccccc;
  flex-grow: 1;
}

.page-fishing-games__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games__promotions-section .page-fishing-games__section-title {
  color: #FFD700;
}

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

.page-fishing-games__promotion-item {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
}

.page-fishing-games__promotion-item:hover {
  transform: translateY(-10px);
}

.page-fishing-games__promotion-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__promotion-description {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  border: 1px solid #FFD700;
  border-radius: 10px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.3em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #3a3a3a;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #4a4a4a;
}

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

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

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-fishing-games__faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #cccccc;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-fishing-games__cta-final-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3.5em;
  }

  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }

  .page-fishing-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important; /* Fixed header offset for mobile hero */
  }

  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-fishing-games__section,
  .page-fishing-games__container {
    padding: 60px 0;
  }

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

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

  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promotion-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}