.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #F5F7FA;
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Assuming body handles header offset */
  background-color: #F5F7FA;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #E53935;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-fishing-games__hero-description {
  font-size: 1.15em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Buttons */
.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: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

/* Game Overview */
.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-fishing-games__game-tile {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-fishing-games__game-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-name {
  font-size: 1.4em;
  color: #E53935;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__game-desc {
  font-size: 0.95em;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__game-button {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: opacity 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__game-button:hover {
  opacity: 0.9;
}

.page-fishing-games__features {
  margin-top: 60px;
}

.page-fishing-games__features-title {
  font-size: 2em;
  color: #E53935;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-fishing-games__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
}

/* Why Choose Us */
.page-fishing-games__why-choose-us {
  background-color: #F5F7FA;
}

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

.page-fishing-games__advantage-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__advantage-icon {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__advantage-title {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__advantage-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
}

/* How To Play */
.page-fishing-games__how-to-play {
  background-color: #ffffff;
}

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

.page-fishing-games__step-card {
  background-color: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__step-title {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__step-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Strategy Tips */
.page-fishing-games__strategy-tips {
  background-color: #F5F7FA;
}

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

.page-fishing-games__tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__tip-title {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.page-fishing-games__tip-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
}

.page-fishing-games__tip-list {
  list-style: disc inside;
  text-align: left;
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
  padding-left: 20px;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__tip-list li {
  margin-bottom: 8px;
}

/* Promotions */
.page-fishing-games__promotions {
  background-color: #ffffff;
}

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

.page-fishing-games__promo-card {
  background-color: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__promo-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #F5F7FA;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  color: #E53935;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}

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

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

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

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
}

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

/* Conclusion */
.page-fishing-games__conclusion {
  text-align: center;
}

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

/* General Image styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 30px 15px;
  }

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

  .page-fishing-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Ensure minimal top padding */
  }
  
  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible, no cropping */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-fishing-games__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

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

  .page-fishing-games__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* Buttons */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="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__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  /* Game Grid */
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-image {
    width: 100%;
    height: auto;
    max-width: 250px;
    max-height: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .page-fishing-games__game-tile {
    padding: 15px;
  }
  
  .page-fishing-games__features-title {
    font-size: 1.8em;
  }

  .page-fishing-games__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-fishing-games__feature-item {
    padding: 20px;
  }

  .page-fishing-games__feature-icon {
    max-width: 100%;
    height: auto;
  }

  /* Why Choose Us */
  .page-fishing-games__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__advantage-card {
    padding: 20px;
  }

  .page-fishing-games__advantage-icon {
    max-width: 100%;
    height: auto;
  }

  /* How To Play */
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-fishing-games__step-image {
    max-width: 100%;
    height: auto;
  }

  /* Strategy Tips */
  .page-fishing-games__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__tip-card {
    padding: 20px;
  }

  .page-fishing-games__tip-image {
    max-width: 100%;
    height: auto;
  }
  
  .page-fishing-games__tip-list {
    padding-left: 15px;
  }

  /* Promotions */
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__promo-image {
    max-width: 100%;
    height: auto;
  }

  /* FAQ */
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  /* General Image rules for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__game-tile,
  .page-fishing-games__feature-item,
  .page-fishing-games__advantage-card,
  .page-fishing-games__step-card,
  .page-fishing-games__tip-card,
  .page-fishing-games__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}