/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: #08160F;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
  order: 1; /* Image first */
}

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

.page-fishing-games__hero-content {
  order: 2; /* Content after image */
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* General Section Styles */
.page-fishing-games__section {
  padding: 80px 20px;
  background-color: #08160F;
  text-align: center;
}

.page-fishing-games__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #F2FFF6;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768; /* Auxiliary color */
  border-radius: 2px;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
  text-align: left;
}

.page-fishing-games__text-block strong {
  color: #F2FFF6;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-fishing-games__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Lighter brand green */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: #2E7A4E; /* Border color on hover */
  color: #F2FFF6;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-fishing-games__link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__link:hover {
  text-decoration: underline;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us .page-fishing-games__container {
  padding-bottom: 0;
}

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

.page-fishing-games__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
  width: 100%;
  max-width: 250px; /* Adjust max-width for icons if needed, but ensure min 200px */
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__feature-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: #A7D9B8;
}

/* Key Features Section */
.page-fishing-games__key-features .page-fishing-games__container {
  text-align: left;
}

.page-fishing-games__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__text-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  object-fit: cover;
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color */
}

/* How to Play Section */
.page-fishing-games__how-to-play .page-fishing-games__container {
  text-align: left;
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-fishing-games__step-item::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2AD16F; /* Lighter brand green */
  line-height: 1;
}

.page-fishing-games__step-item:nth-child(n+10)::before {
  content: counter(step-counter);
}

.page-fishing-games__step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 10px;
  flex-basis: 100%;
}

.page-fishing-games__step-description {
  font-size: 1rem;
  color: #A7D9B8;
  flex: 1;
  min-width: 250px;
}

.page-fishing-games__step-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-left: 30px;
  object-fit: cover;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies .page-fishing-games__container {
  text-align: left;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #A7D9B8;
}

.page-fishing-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Lighter brand green */
  font-weight: bold;
}

.page-fishing-games__list-item strong {
  color: #F2FFF6;
}

/* Promotions Section */
.page-fishing-games__promotions .page-fishing-games__container {
  padding-bottom: 80px;
}

/* FAQ Section */
.page-fishing-games__faq-section .page-fishing-games__container {
  text-align: left;
}

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

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  color: #F2FFF6;
  background-color: #11271B; /* Card BG */
  list-style: none;
}

.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.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

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

/* Call to Action Section */
.page-fishing-games__cta-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games__section-title {
    font-size: 2rem;
  }
  .page-fishing-games__section {
    padding: 60px 15px;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
  }
  .page-fishing-games__image-content {
    margin-top: 30px;
  }
  .page-fishing-games__step-item {
    padding-left: 50px;
  }
  .page-fishing-games__step-item::before {
    font-size: 2rem;
  }
  .page-fishing-games__step-image {
    margin-left: 0;
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin-bottom: 15px; /* Add margin between stacked buttons */
  }
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__feature-card {
    padding: 20px;
  }
  .page-fishing-games__feature-title {
    font-size: 1.4rem;
  }
  .page-fishing-games__sub-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__content-wrapper {
    gap: 20px;
  }
  .page-fishing-games__step-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .page-fishing-games__step-item::before {
    position: static;
    margin-bottom: 10px;
  }
  .page-fishing-games__step-image {
    margin-left: 0;
    margin-top: 15px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__list-item {
    font-size: 0.95rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__image-content,
  .page-fishing-games__step-item {
    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 */
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-fishing-games__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-fishing-games__section-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__feature-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__sub-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.5rem;
  }
}