/* style/fishing-games.css */

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

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

.page-fishing-games__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6;
}

.page-fishing-games__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-fishing-games__light-bg {
  background-color: #0A4B2C; /* Deep Green, used as a lighter contrasting section */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-fishing-games__description-text,
.page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative top padding */
  background-color: #08160F;
}

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

.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;
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-fishing-games__description {
  font-size: 20px;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.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: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

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

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

/* About Section */
.page-fishing-games__about-section p {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Features */
.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-card,
.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
  flex-grow: 1;
}

.page-fishing-games__card-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-fishing-games__card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__card-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 0;
  text-align: center;
}

/* Popular Games */
.page-fishing-games__game-cards-grid {
  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__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
}

.page-fishing-games__view-all-btn-container {
  text-align: center;
  margin-top: 40px;
}

/* How to Play */
.page-fishing-games__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-fishing-games__numbered-list li {
  counter-increment: item;
  margin-bottom: 15px;
  font-size: 18px;
  color: #F2FFF6;
  position: relative;
  padding-left: 40px;
  text-align: left;
}

.page-fishing-games__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

.page-fishing-games__list-item-title {
  color: #F2C14E;
  font-weight: bold;
}

/* Tips & Strategies */
.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-card {
  padding: 20px;
}

/* Promotions CTA */
.page-fishing-games__promotion-banner {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-fishing-games__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  background-color: #0A4B2C;
}

/* Why Choose Us Section */
.page-fishing-games__bullet-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-fishing-games__bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #F2FFF6;
  text-align: left;
}

.page-fishing-games__bullet-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #2AD16F;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: clamp(26px, 4vw, 38px);
  }
  .page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 48px);
  }
  .page-fishing-games__hero-content {
    padding: 0 15px;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 100%;
  }
}

@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__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-fishing-games__description-text,
  .page-fishing-games__text-block {
    font-size: 16px;
    text-align: left;
  }
  .page-fishing-games__dark-section, .page-fishing-games__light-bg {
    padding: 40px 0;
  }
  .page-fishing-games__features-grid, .page-fishing-games__game-cards-grid, .page-fishing-games__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__card-text {
    font-size: 15px;
  }
  .page-fishing-games__numbered-list li,
  .page-fishing-games__bullet-list li {
    font-size: 16px;
    padding-left: 25px;
  }
  .page-fishing-games__numbered-list li::before {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure content images take full width */
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .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;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .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;
  }

  /* Ensure flex containers wrap */
  .page-fishing-games__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px !important;
  }
}