.page-fishing-games {
  background-color: #08160F;
  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;
}

.page-fishing-games__dark-bg {
  background-color: #08160F;
}

.page-fishing-games__card {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-fishing-games__text-block {
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8;
}

.page-fishing-games__center-cta {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__center-text {
  text-align: center;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F;
  border-color: #57E38D;
  transform: translateY(-2px);
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.page-fishing-games__btn-large {
  padding: 18px 35px;
  font-size: 1.25rem;
  border-radius: 10px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

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

.page-fishing-games__description {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

/* Features Grid */
.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 {
  text-align: center;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

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

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

.page-fishing-games__game-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px;
}

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

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

/* Steps Grid */
.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-card {
  text-align: center;
}

.page-fishing-games__step-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  color: #A7D9B8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Strategy List */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__strategy-item {
  padding: 25px;
}

.page-fishing-games__strategy-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
  color: #A7D9B8;
  font-size: 0.95rem;
}

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

.page-fishing-games__promo-card {
  text-align: center;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px;
}

.page-fishing-games__promo-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games__promo-description {
  color: #A7D9B8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Mobile App Info */
.page-fishing-games__mobile-app-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.page-fishing-games__mobile-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  min-height: 200px;
}

.page-fishing-games__mobile-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fishing-games__mobile-title {
  font-size: 2rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-fishing-games__mobile-description {
  color: #A7D9B8;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* Security Grid */
.page-fishing-games__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__security-item {
  text-align: center;
}

.page-fishing-games__security-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games__security-description {
  color: #A7D9B8;
  font-size: 0.95rem;
}

/* FAQ */
.page-fishing-games__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-fishing-games__faq-item {
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

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

/* CTA Section */
.page-fishing-games__cta-section {
  padding: 80px 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__mobile-app-info {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__mobile-content {
    text-align: center;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px 30px;
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-fishing-games__main-title {
    font-size: 2.2rem;
  }
  .page-fishing-games__description {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: 2rem;
  }
  .page-fishing-games__text-block {
    font-size: 0.95rem;
  }

  /* Image, Video, Button Responsive Rules */
  .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;
    overflow: hidden !important;
  }
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__game-image,
  .page-fishing-games__feature-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: unset !important; /* Allow smaller images on mobile if needed, but still > 200px from HTML */
  }

  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !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: 15px !important;
  }
  .page-fishing-games__cta-buttons {
    display: flex;
  }

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