/* style/fishing-games.css */
.page-fishing-games {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 10px 20px 60px;
  overflow: hidden;
  text-align: center;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-fishing-games__hero-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--gold-color, #F2C14E);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__hero-cta {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Section General */
.page-fishing-games__section-title {
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--glow-color, #57E38D);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__section-description {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary-color, #A7D9B8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__sub-title {
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
}

.page-fishing-games__paragraph {
  margin-bottom: 15px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__highlight {
  color: var(--gold-color, #F2C14E);
  font-weight: 700;
}

.page-fishing-games__link {
  color: var(--glow-color, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color, #F2FFF6);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  border-color: var(--glow-color, #57E38D);
  color: var(--glow-color, #57E38D);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: var(--gold-color, #F2C14E);
  border-color: var(--gold-color, #F2C14E);
}

/* Card Styles */
.page-fishing-games__card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-fishing-games__card-title {
  color: var(--text-main-color, #F2FFF6);
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games__card-text {
  color: var(--text-secondary-color, #A7D9B8);
}

/* Image Styles */
.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Layouts */
.page-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-fishing-games__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-fishing-games__content-grid--reverse .page-fishing-games__text-block {
  order: 2;
}

.page-fishing-games__content-grid--reverse .page-fishing-games__image-block {
  order: 1;
}

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

/* Specific Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__features-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__mobile-app-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 60px 0;
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  padding: 15px 0;
  position: relative;
  list-style: none;
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color, #57E38D);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding-top: 10px;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Video Section (if any) */
.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Minimal padding-top, body handles --header-offset */
}

.page-fishing-games__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.page-fishing-games__video-wrapper:hover {
  transform: scale(1.01);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.5rem;
  }

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

  .page-fishing-games__section-title {
    font-size: 2rem;
  }

  .page-fishing-games__content-grid {
    gap: 30px;
  }
}

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

  .page-fishing-games__hero-section {
    min-height: 400px;
    padding: 10px 15px 40px;
  }

  .page-fishing-games__hero-title {
    font-size: 2rem;
  }

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

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

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

  .page-fishing-games__content-grid,
  .page-fishing-games__content-grid--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .page-fishing-games__content-grid--reverse .page-fishing-games__text-block,
  .page-fishing-games__content-grid--reverse .page-fishing-games__image-block {
    order: unset; /* Reset order for mobile */
  }

  .page-fishing-games__steps-grid,
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-fishing-games__container,
  .page-fishing-games__video-container,
  .page-fishing-games__video-section,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    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__cta-button,
  .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-direction: column !important;
    gap: 10px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
}

/* Color Contrast Fixes (if needed, based on background analysis) */
/* Assuming dark background, so light text is default */
.page-fishing-games__card {
  color: var(--text-secondary-color, #A7D9B8); /* Ensure light text on dark card BG */
}

.page-fishing-games__faq-answer {
  color: var(--text-secondary-color, #A7D9B8); /* Ensure light text on dark FAQ BG */
}