.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #333333);
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__hero-content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white background for readability */
  border-radius: 8px;
  margin-top: 20px;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 5vw, 2.8em); /* Responsive font size for H1 */
  color: #E53935;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games__description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333333;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__cta-button--secondary:hover {
  background: #f0f0f0;
  color: #FF5A4F;
}

.page-fishing-games__section-title {
  font-size: 2.2em;
  color: #E53935;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-fishing-games__text-block {
  font-size: 1em;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__features-section,
.page-fishing-games__gameplay-section,
.page-fishing-games__strategy-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 60px 0;
}

.page-fishing-games__features-section {
  background: var(--bg-color, #F5F7FA);
}

.page-fishing-games__feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__card {
  background: var(--card-bg, #FFFFFF);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #E0E0E0);
  color: #333333;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  color: #555555;
}

.page-fishing-games__download-section {
  background: #E53935;
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games__download-section .page-fishing-games__section-title,
.page-fishing-games__download-section .page-fishing-games__text-block {
  color: #ffffff;
}

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

.page-fishing-games__step-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FF5A4F;
}

.page-fishing-games__step-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-fishing-games__gameplay-section {
  background: var(--card-bg, #FFFFFF);
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-fishing-games__feature-list li {
  background: var(--card-bg, #FFFFFF);
  border-left: 5px solid #E53935;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__list-item-title {
  font-size: 1.2em;
  color: #E53935;
  margin-bottom: 10px;
}

.page-fishing-games__feature-list p {
  color: #555555;
  font-size: 0.95em;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__strategy-section {
  background: var(--bg-color, #F5F7FA);
  color: #333333;
}

.page-fishing-games__strategy-list {
  list-style: decimal;
  padding-left: 25px;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games__strategy-list .page-fishing-games__list-item-title {
  color: #E53935;
}

.page-fishing-games__faq-section {
  background: var(--card-bg, #FFFFFF);
}

.page-fishing-games__faq-items {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background: var(--card-bg, #FFFFFF);
  border: 1px solid var(--border-color, #E0E0E0);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-fishing-games__faq-item summary:hover {
  background: #f9f9f9;
}

.page-fishing-games__faq-qtext {
  color: #E53935;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #E53935;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: #555555;
}

.page-fishing-games__cta-section {
  background: #E53935;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games__cta-section .page-fishing-games__section-title,
.page-fishing-games__cta-section .page-fishing-games__text-block {
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 20px;
  }

  .page-fishing-games__hero-content {
    width: calc(100% - 30px);
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
  }

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

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-fishing-games__cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-fishing-games__text-block {
    margin-bottom: 30px;
  }

  .page-fishing-games__features-section,
  .page-fishing-games__gameplay-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

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

  .page-fishing-games__download-section {
    padding: 60px 0;
  }

  .page-fishing-games__step-item {
    padding: 20px;
  }

  .page-fishing-games__step-title {
    font-size: 1.1em;
  }

  .page-fishing-games__feature-list li {
    padding: 15px;
  }

  .page-fishing-games__list-item-title {
    font-size: 1.1em;
  }

  .page-fishing-games__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

  .page-fishing-games__faq-answer {
    padding: 0 15px 15px 15px;
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-content,
  .page-fishing-games__download-section,
  .page-fishing-games__gameplay-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  
  /* Mobile responsive videos */
  .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;
  }
  
  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
}

/* Color Contrast Adjustments */
.page-fishing-games__dark-section {
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__text-block,
.page-fishing-games__dark-section .page-fishing-games__step-title,
.page-fishing-games__dark-section .page-fishing-games__step-description {
  color: #ffffff;
}

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

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__text-block,
.page-fishing-games__light-bg .page-fishing-games__list-item-title {
  color: #E53935; /* Use brand color on light background */
}

/* Emergency Contrast Fixes (if needed) */
.page-fishing-games__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-fishing-games__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}