.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F4F7FB; /* Page background */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  color: #1F2D3D;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive H1 font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2F6BFF;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-fishing-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Responsive section title */
  font-weight: bold;
  margin-bottom: 20px;
  color: #2F6BFF;
}

.page-fishing-games__section-description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

/* Colors based on custom palette */
.page-fishing-games__light-bg {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-fishing-games__dark-bg {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__section-description {
  color: #ffffff;
}

.page-fishing-games__card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #D6E2FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
  color: #1F2D3D;
}

.page-fishing-games__card .page-fishing-games__feature-title,
.page-fishing-games__card .page-fishing-games__game-title,
.page-fishing-games__card .page-fishing-games__tip-title,
.page-fishing-games__card .page-fishing-games__promo-title {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-fishing-games__card p {
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: #ffffff;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #2F6BFF;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-fishing-games__btn-link {
  display: inline-block;
  margin-top: 15px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__btn-link:hover {
  color: #6FA3FF;
}

/* Why Choose Us Section */
.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-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__feature-text {
  font-size: 1rem;
  color: #1F2D3D;
}

/* Popular Games Section */
.page-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-fishing-games__game-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__game-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1F2D3D;
}

/* How to Play Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-fishing-games__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-fishing-games__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__step-text {
  font-size: 1rem;
  color: #1F2D3D;
}

/* Tips and Strategies Section */
.page-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__tip-item {
  padding: 25px;
  text-align: left;
}

.page-fishing-games__tip-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__tip-text {
  font-size: 1rem;
  color: #1F2D3D;
}

/* Promotions Section */
.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-fishing-games__promo-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__promo-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-fishing-games__all-promotions-cta {
  margin-top: 40px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  padding: 0;
  border: none; /* Override card border */
  box-shadow: none; /* Override card shadow */
  background-color: transparent; /* Override card background */
}

.page-fishing-games__faq-item.page-fishing-games__card {
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
  padding: 0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  transition: background-color 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-fishing-games__faq-answer {
  padding: 20px 30px;
  background-color: #F4F7FB;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.8;
  border: 1px solid #D6E2FF;
  border-top: none;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  color: #1F2D3D;
}

/* Responsible Gaming Section */
.page-fishing-games__responsible-gaming .page-fishing-games__section-description {
  margin-bottom: 30px;
}

/* Final CTA Section */
.page-fishing-games__cta-final .page-fishing-games__section-title,
.page-fishing-games__cta-final .page-fishing-games__section-description {
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: 0.95rem;
  }

  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

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

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

  .page-fishing-games__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .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__faq-item,
  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .page-fishing-games__all-promotions-cta {
    padding: 0 15px;
  }

  .page-fishing-games__final-actions {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
}