.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background from shared.css */
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-fishing-games__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E34234; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #0A2463;
  border-radius: 2px;
}

.page-fishing-games__text-link {
  color: #E34234;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-fishing-games__highlight {
  color: #E34234;
  font-weight: bold;
}

/* Color Contrast Adjustments */
.page-fishing-games__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #0A2463;
}

.page-fishing-games__light-bg .page-fishing-games__section-title::after {
  background-color: #E34234;
}

.page-fishing-games__light-bg .page-fishing-games__text-link {
  color: #0A2463;
}

.page-fishing-games__light-bg .page-fishing-games__text-link:hover {
  color: #0056b3;
}

.page-fishing-games__light-bg .page-fishing-games__highlight {
  color: #0A2463;
}

.page-fishing-games__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
  color: #E34234;
}

.page-fishing-games__dark-section .page-fishing-games__section-title::after {
  background-color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__text-link {
  color: #ffdd00; /* Gold-like for dark background */
}

.page-fishing-games__dark-section .page-fishing-games__text-link:hover {
  color: #ffd700;
}

.page-fishing-games__dark-section .page-fishing-games__highlight {
  color: #ffdd00;
}

/* Video Section */
.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 120px; /* Adjust for fixed header */
  background: linear-gradient(to bottom, #121212, #0A2463);
}

.page-fishing-games__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__video-overlay {
  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);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
  opacity: 1;
}

.page-fishing-games__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(227, 66, 52, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-fishing-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-fishing-games__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E34234;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-fishing-games__play-now-button:hover {
  background: #c23126;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to top, #121212, #0A2463);
  color: #ffffff;
}

.page-fishing-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffdd00; /* Gold-like for main title */
}

.page-fishing-games__hero-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  min-width: 180px;
}

.page-fishing-games__cta-button--primary {
  background: #E34234;
  color: #ffffff;
}

.page-fishing-games__cta-button--primary:hover {
  background: #c23126;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button--secondary {
  background: #0A2463;
  color: #ffffff;
  border: 2px solid #E34234;
}

.page-fishing-games__cta-button--secondary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

/* General Image Styling */
.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__feature-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark section */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-fishing-games__dark-section .page-fishing-games__feature-item {
  background: rgba(255, 255, 255, 0.08);
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: #E34234;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffdd00;
}

.page-fishing-games__feature-item p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Game Cards Grid */
.page-fishing-games__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__game-card-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 15px 10px;
  color: #0A2463;
}

.page-fishing-games__game-card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
  color: #E34234;
  text-decoration: underline;
}

.page-fishing-games__game-card-description {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px;
  line-height: 1.5;
}

.page-fishing-games__game-card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #E34234;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
  background: #c23126;
}

/* Numbered List */
.page-fishing-games__numbered-list {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-fishing-games__numbered-list li {
  counter-increment: my-counter;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  font-size: 17px;
  color: #f0f0f0;
}