.page-fishing-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: #000; /* Ensure main background is black as per shared.css */
}

/* Color Contrast Logic for sections */
.page-fishing-games__dark-bg {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden; /* Ensure no overflow from background image */
}

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

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

.page-fishing-games__hero-title {
  font-size: 3.5em;
  color: #E0B73D; /* Auxiliary brand color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-fishing-games__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section for contrast */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: #0A2463; /* Dark title for light background */
    text-shadow: none;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding/border included in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games__btn-primary {
  background-color: #E0B73D; /* Auxiliary brand color */
  color: #0A2463; /* Main brand color for text */
  border: 2px solid #E0B73D;
}

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

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #E0B73D; /* Auxiliary brand color */
  border: 2px solid #E0B73D;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #E0B73D;
  color: #0A2463;
  transform: translateY(-2px);
}

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

/* Image Wrapper */
.page-fishing-games__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Features Grid */
.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: #0A2463; /* Dark brand color for card background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #E0B73D;
  margin-bottom: 15px;
}

.page-fishing-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__card-description {
  font-size: 1em;
  text-align: left;
}

/* Lists */
.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list,
.page-fishing-games__promo-list {
  text-align: left;
  max-width: 900px;
  margin: 20px auto 40px auto;
  padding-left: 20px;
  color: inherit;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li,
.page-fishing-games__promo-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games__ordered-list strong {
  color: #E0B73D;
}

/* Contact Info */
.page-fishing-games__contact-info {
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: inherit;
}