/* style/fishing-games.css */

:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-background: #08160F;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
  --page-fishing-games-light-text: #ffffff;
  --page-fishing-games-dark-text: #333333;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-fishing-games-text-main); /* Default text color for the page */
  background-color: var(--page-fishing-games-background); /* Overall page background */
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--page-fishing-games-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset, this is decorative */
  overflow: hidden;
  min-height: 600px;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text contrast */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(8, 22, 15, 0.7); /* Use page background color with opacity */
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button adapts to container */
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: var(--page-fishing-games-light-text);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--page-fishing-games-primary-color);
  border: 2px solid var(--page-fishing-games-primary-color);
  margin-top: 20px;
}

.page-fishing-games__btn-secondary:hover {
  background: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-light-text);
  transform: translateY(-2px);
}

.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 80px 0;
}

.page-fishing-games__dark-section {
  background-color: var(--page-fishing-games-background);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-section {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 17px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-block p strong {
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__image-block {
  text-align: center;
}

.page-fishing-games__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__features-grid,
.page-fishing-games__promotions-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__promo-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-fishing-games-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__card-title {
  font-size: 24px;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.page-fishing-games__feature-card p,
.page-fishing-games__promo-card p {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  line-height: 1.6;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__guide-list li {
  background-color: var(--page-fishing-games-card-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__list-title {
  font-size: 22px;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__guide-list li p {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  line-height: 1.6;
}

.page-fishing-games__why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__why-list li {
  background-color: var(--page-fishing-games-card-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__why-list li p {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  line-height: 1.6;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--page-fishing-games-text-main);
  cursor: pointer;
  background-color: var(--page-fishing-games-deep-green);
  border-bottom: 1px solid var(--page-fishing-games-border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-question:hover {
  background-color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__cta-section {
  text-align: center;
  padding-bottom: 100px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__image-block {
    order: -1;
    margin-bottom: 40px;
  }
  .page-fishing-games__hero-content {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body padding-top handles header offset, this is decorative */
    padding-bottom: 40px;
    min-height: 400px;
  }
  .page-fishing-games__hero-title {
    font-size: 30px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: 26px;
  }
  .page-fishing-games__section-description {
    font-size: 15px;
  }
  .page-fishing-games__about-section,
  .page-fishing-games__features-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 60px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__promotions-grid {
    gap: 20px;
  }
  .page-fishing-games__card-image {
    height: 180px;
  }
  .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-fishing-games__btn-secondary {
    margin-top: 15px;
  }
  .page-fishing-games__text-block p {
    font-size: 15px;
  }
  .page-fishing-games__list-title {
    font-size: 20px;
  }
  .page-fishing-games__guide-list li p,
  .page-fishing-games__why-list li p {
    font-size: 15px;
  }
  .page-fishing-games__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 28px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__card-image {
    height: 150px;
  }
  .page-fishing-games__card-title {
    font-size: 18px;
  }
  .page-fishing-games__faq-question {
    font-size: 15px;
  }
}