.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--secondary-color, #1A1A1A);
}

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

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__dark-bg {
  background-color: var(--secondary-color, #1A1A1A);
  color: #f0f0f0;
}

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--primary-color, #FFD700);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: var(--secondary-color, #1A1A1A);
}

.page-fishing-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__light-bg .page-fishing-games__paragraph {
  color: #555555;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: var(--primary-color, #FFD700);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.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: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: var(--primary-color, #FFD700);
  color: #1A1A1A; /* Text color for primary button */
}

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

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--primary-color, #FFD700);
  border-color: var(--primary-color, #FFD700);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--primary-color, #FFD700);
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-fishing-games__card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
  height: 100%;
  box-sizing: border-box;
}

.page-fishing-games__light-bg .page-fishing-games__card {
  background-color: #f8f8f8;
  color: #333333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--primary-color, #FFD700);
  font-weight: bold;
}

.page-fishing-games__light-bg .page-fishing-games__card-title {
  color: var(--secondary-color, #1A1A1A);
}

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

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.page-fishing-games__video-cta {
  margin-top: 30px;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__guide-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--primary-color, #FFD700);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #f0f0f0;
}

.page-fishing-games__light-bg .page-fishing-games__guide-list li {
  background-color: #f0f0f0;
  color: #333333;
}

.page-fishing-games__list-title {
  font-size: 1.4em;
  color: var(--primary-color, #FFD700);
  margin-bottom: 10px;
}

.page-fishing-games__light-bg .page-fishing-games__list-title {
  color: var(--secondary-color, #1A1A1A);
}

.page-fishing-games__list-description {
  font-size: 1em;
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__list-description {
  color: #666666;
}

.page-fishing-games__text-link {
  color: var(--primary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-fishing-games__strategy-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
  height: 100%;
  box-sizing: border-box;
}

.page-fishing-games__dark-bg .page-fishing-games__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--secondary-color, #1A1A1A);
  font-weight: bold;
}

.page-fishing-games__dark-bg .page-fishing-games__item-title {
  color: var(--primary-color, #FFD700);
}

.page-fishing-games__item-description {
  font-size: 1em;
  margin-bottom: 15px;
  flex-grow: 1;
}

.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: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
  height: 100%;
  box-sizing: border-box;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__advantage-list li {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #333333;
  height: 100%;
  box-sizing: border-box;
}

.page-fishing-games__advantage-list .page-fishing-games__list-title {
  color: var(--secondary-color, #1A1A1A);
}

.page-fishing-games__advantage-list .page-fishing-games__list-description {
  color: #666666;
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-fishing-games__light-bg .page-fishing-games__faq-item {
  background-color: #f0f0f0;
  color: #333333;
}