.page-fishing-games-popular-titles {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #017439;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;

  color: var(--text-dark); /* Default text color for light backgrounds */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games-popular-titles__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #005f2f);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-fishing-games-popular-titles__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 30px;
}

.page-fishing-games-popular-titles__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-titles__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.page-fishing-games-popular-titles__btn-primary,
.page-fishing-games-popular-titles__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games-popular-titles__btn-primary {
  background: var(--button-register-bg);
  color: var(--button-text-color);
  border: 2px solid var(--button-register-bg);
}

.page-fishing-games-popular-titles__btn-primary:hover {
  background: #a30606;
  border-color: #a30606;
}

.page-fishing-games-popular-titles__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-popular-titles__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-fishing-games-popular-titles__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-fishing-games-popular-titles__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fishing-games-popular-titles__section {
  padding: 80px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-fishing-games-popular-titles__dark-section {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-popular-titles__dark-bg-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-fishing-games-popular-titles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games-popular-titles__heading {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-fishing-games-popular-titles__dark-section .page-fishing-games-popular-titles__heading,
.page-fishing-games-popular-titles__dark-bg-section .page-fishing-games-popular-titles__heading {
  color: var(--text-light);
}

.page-fishing-games-popular-titles__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-fishing-games-popular-titles__paragraph--highlight {
  font-weight: bold;
  font-style: italic;
  margin-top: 40px;
}

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

.page-fishing-games-popular-titles__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.page-fishing-games-popular-titles__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-fishing-games-popular-titles__feature-description {
  font-size: 1em;
  color: var(--text-light);
}

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

.page-fishing-games-popular-titles__card {
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.page-fishing-games-popular-titles__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-popular-titles__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-popular-titles__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games-popular-titles__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games-popular-titles__card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-popular-titles__card-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games-popular-titles__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
}

.page-fishing-games-popular-titles__numbered-list {
  list-style: none;
  counter-reset: section;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-popular-titles__numbered-list li {
  counter-increment: section;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  text-align: left;
}

.page-fishing-games-popular-titles__numbered-list li::before {
  content: counter(section);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-titles__list-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: var(--text-light);
}

.page-fishing-games-popular-titles__numbered-list li p {
  font-size: 1.1em;
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

.page-fishing-games-popular-titles__numbered-list li p a {
  color: var(--button-text-color);
  text-decoration: underline;
}

.page-fishing-games-popular-titles__numbered-list li p a:hover {
  color: #fff;
}

.page-fishing-games-popular-titles__center-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-fishing-games-popular-titles__strategy-item {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

.page-fishing-games-popular-titles__strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games-popular-titles__strategy-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games-popular-titles__strategy-description {
  font-size: 1em;
}

.page-fishing-games-popular-titles__bullet-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 50px auto;
  text-align: left;
}

.page-fishing-games-popular-titles__bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-fishing-games-popular-titles__bullet-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--button-text-color);
  font-size: 1.2em;
  line-height: 1;
}

.page-fishing-games-popular-titles__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-titles__faq-item {
  background: var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: var(--text-dark);
}

.page-fishing-games-popular-titles__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  background: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-fishing-games-popular-titles__faq-question:hover {
  background-color: #f0f0f0;
}

.page-fishing-games-popular-titles__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit;
}

.page-fishing-games-popular-titles__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games-popular-titles__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-fishing-games-popular-titles__faq-item.active .page-fishing-games-popular-titles__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-fishing-games-popular-titles__faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1em;
  color: var(--text-dark);
  text-align: left;
}

.page-fishing-games-popular-titles__faq-answer p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-games-popular-titles__faq-answer p a:hover {
  color: var(--button-register-bg);
}

.page-fishing-games-popular-titles__final-cta {
  background: linear-gradient(135deg, #005f2f, var(--primary-color));
  color: var(--text-light);
  text-align: center;
}

.page-fishing-games-popular-titles__center-text {
  text-align: center;
}

.page-fishing-games-popular-titles__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games-popular-titles__hero-title {
    font-size: 2.8em;
  }

  .page-fishing-games-popular-titles__heading {
    font-size: 2.2em;
  }
}

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

  .page-fishing-games-popular-titles__hero-section {
    padding: 40px 15px;
  }

  .page-fishing-games-popular-titles__hero-title {
    font-size: 2em;
  }

  .page-fishing-games-popular-titles__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-popular-titles__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-popular-titles__btn-primary,
  .page-fishing-games-popular-titles__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-fishing-games-popular-titles__section {
    padding: 50px 15px;
  }

  .page-fishing-games-popular-titles__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-popular-titles__paragraph {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-fishing-games-popular-titles__features-grid,
  .page-fishing-games-popular-titles__game-cards-grid,
  .page-fishing-games-popular-titles__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games-popular-titles__card {
    margin: 0 auto;
  }

  .page-fishing-games-popular-titles__card-image,
  .page-fishing-games-popular-titles__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-popular-titles__numbered-list li {
    padding-left: 50px;
  }

  .page-fishing-games-popular-titles__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-fishing-games-popular-titles__list-title {
    font-size: 1.4em;
  }

  .page-fishing-games-popular-titles__bullet-list {
    margin-top: 30px;
  }

  .page-fishing-games-popular-titles__bullet-list li {
    font-size: 1em;
    padding-left: 25px;
  }

  .page-fishing-games-popular-titles__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-fishing-games-popular-titles__faq-question h3 {
    font-size: 1.1em;
  }

  .page-fishing-games-popular-titles__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-popular-titles__faq-item.active .page-fishing-games-popular-titles__faq-answer {
    padding: 10px 20px;
  }

  /* Ensure all images are responsive in content area */
  .page-fishing-games-popular-titles img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-titles__section,
  .page-fishing-games-popular-titles__card,
  .page-fishing-games-popular-titles__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-popular-titles__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent with common fragment */
  }

  /* If there are video elements */
  .page-fishing-games-popular-titles video,
  .page-fishing-games-popular-titles__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-titles__video-section,
  .page-fishing-games-popular-titles__video-container,
  .page-fishing-games-popular-titles__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-popular-titles__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-popular-titles__cta-buttons,
  .page-fishing-games-popular-titles__button-group,
  .page-fishing-games-popular-titles__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games-popular-titles__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}