.page-fishing-games {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Inherited from shared.css body, but explicitly set for scope */
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7aab 100%); /* Primary brand color gradient */
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__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;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid transparent;
}

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

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

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

.page-fishing-games__video-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  background-color: #1a1a1a; /* Darker background for contrast */
}

.page-fishing-games__video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__video-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-fishing-games__video-cta {
  background-color: #26A9E0; /* Primary brand color for video CTA */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-fishing-games__video-cta:hover {
  background-color: #1a7aab;
}

.page-fishing-games__introduction-section,
.page-fishing-games__strategy-section,
.page-fishing-games__how-to-join-section {
  background-color: #ffffff; /* Light background for main content */
  color: #333333;
  padding: 60px 20px;
}

.page-fishing-games__games-showcase,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-final-section {
  background-color: #121212; /* Dark background sections */
  color: #ffffff;
  padding: 60px 20px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0; /* Primary brand color for titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-block {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 1.1em;
  line-height: 1.8;
  color: inherit;
}

.page-fishing-games__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-fishing-games__text-block a:hover {
  color: #EA7C07;
}

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

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

.page-fishing-games__game-card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games__card-title {
  font-size: 1.8em;
  margin: 20px 15px 10px;
  color: #26A9E0;
}

.page-fishing-games__card-description {
  font-size: 1em;
  padding: 0 15px 20px;
  flex-grow: 1;
  color: #555555;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
  box-sizing: border-box;
}

.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-fishing-games__strategy-item {
  text-align: left;
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__strategy-subtitle {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__strategy-list {
  list-style: disc inside;
  padding-left: 0;
  color: #555555;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 10px;
}

.page-fishing-games__promotions-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-fishing-games__promotions-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  border-left: 5px solid #26A9E0;
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__steps-list li {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__step-button {
  margin-top: auto; /* Push button to bottom */
  display: block;
  width: calc(100% - 0px);
  box-sizing: border-box;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #cccccc;
  line-height: 1.7;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
  color: #EA7C07;
}

.page-fishing-games__cta-final-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #26A9E0 0%, #EA7C07 100%); /* Gradient CTA */
  color: #ffffff;
}

.page-fishing-games__large-btn {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  background-color: #EA7C07; /* Ensure good contrast */
}

.page-fishing-games__large-btn:hover {
  background-color: #d16e06;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important; /* Fixed header spacing for mobile */
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__video-cta,
  .page-fishing-games__step-button,
  .page-fishing-games__large-btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__how-to-join-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-fishing-games__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile video section padding */
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 0.95em;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-card,
  .page-fishing-games__strategy-item,
  .page-fishing-games__steps-list li {
    padding: 20px;
  }

  .page-fishing-games__card-image,
  .page-fishing-games__strategy-image {
    height: 180px;
  }

  .page-fishing-games__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    font-size: 0.95em;
    padding: 0 20px 15px;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}