.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Brand green for hero section */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Make background image subtle */
}

.page-fishing-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFF00; /* Highlighted text color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
}

.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body background for contrast */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #1a1a1a; /* Lighter dark for cards within dark sections */
  color: #f0f0f0;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Highlighted title color */
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__promotion-card {
  background-color: #1a1a1a; /* Lighter dark for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__game-card:hover,
.page-fishing-games__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-icon,
.page-fishing-games__game-image,
.page-fishing-games__promotion-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image width within card */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__promotion-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFF00; /* Highlighted text color */
}

.page-fishing-games__feature-text,
.page-fishing-games__game-text,
.page-fishing-games__promotion-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

.page-fishing-games__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.page-fishing-games__guide-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-fishing-games__guide-heading {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFF00; /* Highlighted text color */
}

.page-fishing-games__guide-text {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

.page-fishing-games__security-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #f0f0f0;
}

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

.page-fishing-games__security-text {
  font-size: 1em;
  color: #cccccc;
}

.page-fishing-games__faq-container {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #f0f0f0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFF00;
  background-color: #017439; /* Brand green for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-question:hover {
  background-color: #018c4b;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  background-color: #1a1a1a;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 20px 25px;
}

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

.page-fishing-games__cta-final {
  background-color: #017439; /* Brand green for final CTA */
  color: #ffffff;
}

.page-fishing-games__cta-final .page-fishing-games__section-title {
  color: #FFFF00;
}

.page-fishing-games__cta-final .page-fishing-games__section-description {
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games__hero-title {
    font-size: 2.2em;
    word-wrap: break-word;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-fishing-games__section {
    padding: 40px 15px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    word-wrap: break-word;
  }

  .page-fishing-games__section-description {
    font-size: 0.95em;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promotion-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__security-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
  }
}ing-games__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFFFFF;
}

.page-fishing-games__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #017439;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Adjust padding for collapsed state */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #f0f0f0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to reveal content */
    padding: 15px 25px; /* Padding for expanded state */
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 3em;
    }

    .page-fishing-games__section-title {
        font-size: 2em;
    }

    .page-fishing-games__download-content {
        flex-direction: column;
    }

    .page-fishing-games__download-steps,
    .page-fishing-games__download-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 100px);
    }

    .page-fishing-games__hero-title {
        font-size: 2.5em;
    }

    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 10px 20px;
        font-size: 1em;
        margin-right: 0;
        width: 100%;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__sub-title {
        font-size: 1.5em;
    }

    .page-fishing-games__game-cards,
    .page-fishing-games__advantage-grid,
    .page-fishing-games__promotion-cards,
    .page-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__card--promotion .page-fishing-games__card-image {
        height: 200px;
    }

    .page-fishing-games__card--promotion .page-fishing-games__btn-primary {
        width: calc(100% - 50px);
    }

    .page-fishing-games__faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 80px);
    }

    .page-fishing-games__hero-title {
        font-size: 2em;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-fishing-games__section-title {
        font-size: 1.5em;
    }

    .page-fishing-games__sub-title {
        font-size: 1.3em;
    }

    .page-fishing-games__card-title {
        font-size: 1.3em;
    }

    .page-fishing-games__card-text {
        font-size: 0.9em;
    }

    .page-fishing-games__faq-question h3 {
        font-size: 1em;
    }

    .page-fishing-games__faq-toggle {
        font-size: 1.5em;
    }
}

/* Specific styling for the main content area to ensure it's visible below a fixed header */
.page-fishing-games__content {
    padding-top: var(--header-height, 0px); /* Use CSS variable for dynamic header height */
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* Accessibility: Focus states for interactive elements */
a:focus,
button:focus,
.page-fishing-games__faq-question:focus {
    outline: 2px solid #FFFF00; /* Highlight focus with a bright color */
    outline-offset: 3px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for better aesthetics on supported browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #017439;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005a2c;
}

/* Additional styling for strong tags within text blocks */
.page-fishing-games__text-block strong {
    color: #FFFF00; /* Highlight important keywords */
}

/* Styling for the FAQ active state */
.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
    border-bottom: none; /* Remove border when expanded */
}

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

/* Adjust padding for sections to avoid content touching edges on very small screens */
section {
    padding-left: 15px;
    padding-right: 15px;
}

.page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure consistent spacing for lists */
.page-fishing-games__list li:last-child {
    margin-bottom: 0;
}

/* Add some subtle hover effect to cards */
.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card--advantage:hover {
    border-left-color: #FFFF00; /* Change border color on hover */
}

.page-fishing-games__card--promotion .page-fishing-games__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    color: #FFFFFF; /* Ensure text color changes for better contrast */
}

/* Ensure video player controls are visible */
.page-fishing-games__video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
}

.page-fishing-games__video::-webkit-media-controls-play-button,
.page-fishing-games__video::-webkit-media-controls-current-time-display,
.page-fishing-games__video::-webkit-media-controls-time-remaining-display,
.page-fishing-games__video::-webkit-media-controls-timeline,
.page-fishing-games__video::-webkit-media-controls-volume-slider {
    color: #FFFFFF;
}

/* Adjustments for the main content area to ensure it's visible below a fixed header */
body {
    padding-top: var(--header-height, 0px); /* This should be handled by shared.css or a global style */
}

/* If the header is fixed, ensure content starts below it */
.page-fishing-games__hero-section {
    padding-top: calc(80px + var(--header-height, 0px)); /* Adjust hero section padding to account for fixed header */
}

/* Fallback for --header-height if not defined */
:root {
    --header-height: 0px; /* Default to 0 if not set elsewhere */
}