.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so text is white */
  background-color: #000000; /* Ensure main content area respects body background */
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-fishing-games__text-center {
  text-align: center;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-bottom: 60px; /* Adjust as needed */
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* Buttons */
.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: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1a7aab;
  border-color: #1a7aab;
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

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

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

/* Sections */
.page-fishing-games__overview-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  color: #333333; /* Light background, dark text */
}

.page-fishing-games__features-section,
.page-fishing-games__benefits-section,
.page-fishing-games__video-section,
.page-fishing-games__strategy-section,
.page-fishing-games__cta-section {
  padding: 80px 0;
  color: #ffffff; /* Dark background, light text */
}

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

.page-fishing-games__dark-bg {
  background-color: #0d0d0d;
}

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

.page-fishing-games__feature-item,
.page-fishing-games__benefit-card,
.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__light-bg .page-fishing-games__feature-item,
.page-fishing-games__light-bg .page-fishing-games__benefit-card,
.page-fishing-games__light-bg .page-fishing-games__game-card {
  background-color: #f5f5f5;
  color: #333333;
}

.page-fishing-games__feature-item:hover,
.page-fishing-games__benefit-card:hover,
.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-title,
.page-fishing-games__benefit-title,
.page-fishing-games__game-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__feature-description,
.page-fishing-games__benefit-description,
.page-fishing-games__game-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games__light-bg .page-fishing-games__feature-description,
.page-fishing-games__light-bg .page-fishing-games__benefit-description,
.page-fishing-games__light-bg .page-fishing-games__game-description {
  color: #555555;
}

/* How to Play List */
.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-fishing-games__step-list li {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.5;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
}

.page-fishing-games__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-fishing-games__step-title {
  color: #26A9E0;
  font-size: 1.2em;
  margin-bottom: 10px;
  display: block;
}

/* Why Choose List */
.page-fishing-games__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-fishing-games__why-list li {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.5;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-fishing-games__why-item-title {
  color: #26A9E0;
  font-size: 1.2em;
  margin-bottom: 10px;
  display: block;
}

/* Video Section */
.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-fishing-games__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 4em;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games__video-overlay-link:hover {
  background: rgba(0, 0, 0, 0.6);
}

.page-fishing-games__video-play-button {
  border: 3px solid #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__video-overlay-link:hover .page-fishing-games__video-play-button {
  transform: scale(1.1);
}

.page-fishing-games__video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #f0f0f0;
}

/* Images */
.page-fishing-games__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-fishing-games__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.page-fishing-games__image-centered {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}