.page-fishing-games {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a; /* Body background from shared.css */
}

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

.page-fishing-games__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #2a2a2a; /* Another variant of dark for sections */
  color: #ffffff;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for titles */
  padding-top: 60px;
}

.page-fishing-games__text-block {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Apply header offset here if shared doesn't set on body */
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Blend brand colors */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.page-fishing-games__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-fishing-games__hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-fishing-games__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  border: 2px solid #FFD700;
}

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

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

.page-fishing-games__btn-secondary:hover {
  background-color: #ffffff;
  color: #8B0000; /* Dark Red */
  transform: translateY(-3px);
}

.page-fishing-games__hero-image-wrapper {
  flex: 1;
  text-align: right;
}

.page-fishing-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  padding: 80px 0;
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
}

.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-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

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

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

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

.page-fishing-games__feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  padding: 80px 0;
}

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

.page-fishing-games__game-item {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444444;
}

.page-fishing-games__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__game-name {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 5px;
}

.page-fishing-games__game-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Strategies Section */
.page-fishing-games__strategies-section {
  padding: 80px 0;
}

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

.page-fishing-games__strategy-item {
  background-color: #1a1a1a;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__strategy-heading {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

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

.page-fishing-games__promotion-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444444;
}

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

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

.page-fishing-games__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 5px;
}

.page-fishing-games__promotion-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Registration Guide Section */
.page-fishing-games__registration-guide-section {
  padding: 80px 0;
}

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

.page-fishing-games__guide-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #333333;
  position: relative;
  counter-increment: guide-counter;
}

.page-fishing-games__guide-item::before {
  content: "0" counter(guide-counter);
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 48px;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.3);
  opacity: 0.3;
  line-height: 1;
}

.page-fishing-games__guide-heading {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  padding-left: 60px; /* Make space for the counter */
}

.page-fishing-games__guide-description {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
  padding-left: 60px; /* Make space for the counter */
}

/* CTA Buttons general styling */
.page-fishing-games__cta-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid #333333;
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #2a2a2a;
  color: #cccccc;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #444444;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background-color: #2a2a2a;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #FFD700;
  transform: rotate(180deg);
}

/* General image and button responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.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;
}

.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;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding-top: var(--header-offset, 100px);
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .page-fishing-games__hero-content {
    max-width: 100%;
  }

  .page-fishing-games__hero-image-wrapper {
    text-align: center;
  }

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

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

  .page-fishing-games__hero-buttons {
    justify-content: center;
  }

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

  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__registration-guide-section,
  .page-fishing-games__faq-section {
    padding: 60px 0;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promotion-cards,
  .page-fishing-games__guide-list,
  .page-fishing-games__strategy-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-name,
  .page-fishing-games__promotion-title,
  .page-fishing-games__guide-heading,
  .page-fishing-games__strategy-heading {
    font-size: 20px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-fishing-games__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 30px;
  }

  .page-fishing-games__hero-container {
    gap: 20px;
  }

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

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

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

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

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 25px;
    padding-top: 40px;
  }

  .page-fishing-games__text-block {
    font-size: 15px;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__registration-guide-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promotion-cards,
  .page-fishing-games__guide-list,
  .page-fishing-games__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-name,
  .page-fishing-games__promotion-title,
  .page-fishing-games__guide-heading,
  .page-fishing-games__strategy-heading {
    font-size: 18px;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__game-description,
  .page-fishing-games__promotion-description,
  .page-fishing-games__guide-description,
  .page-fishing-games__strategy-description {
    font-size: 14px;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__promotion-image {
    height: 180px;
  }

  .page-fishing-games__guide-item::before {
    font-size: 36px;
    top: 15px;
    left: 15px;
  }

  .page-fishing-games__guide-heading,
  .page-fishing-games__guide-description {
    padding-left: 50px;
  }

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

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

  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }

  /* General image and container responsiveness for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-item,
  .page-fishing-games__promotion-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__strategy-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure content area images are at least 200px where applicable, overriding general 100% width if needed for specific elements */
  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__promotion-image {
      min-width: 200px !important;
      min-height: 150px !important; /* Adjust min-height as needed for aspect ratio */
      width: 100% !important; /* Allow to scale up to 100% */
      height: auto !important;
  }
}