.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__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

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

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

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 60px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  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: transparent;
  color: #22C768; /* Auxiliary color */
  border: 2px solid #22C768;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.2);
}

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

.page-fishing-games__btn-tertiary {
  background: #11A84E; /* Primary color */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
}

.page-fishing-games__btn-tertiary:hover {
  background: #22C768; /* Auxiliary color */
  transform: translateY(-2px);
}

/* Feature Cards */
.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 {
  background: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-fishing-games__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

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

.page-fishing-games__game-card {
  background: #11271B; /* Card B G */
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__game-thumbnail {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin-bottom: 15px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  font-size: 22px;
  margin-top: 10px;
}

.page-fishing-games__game-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How-to-play List */
.page-fishing-games__steps-list {
  list-style: none;
  counter-reset: step-counter;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
}

.page-fishing-games__steps-list li {
  counter-increment: step-counter;
  background: #11271B; /* Card B G */
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  padding-left: 70px;
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__steps-list li strong {
  color: #F2C14E; /* Gold */
}

.page-fishing-games__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.page-fishing-games__cta-block {
  margin-top: 40px;
}

/* Strategy Section */
.page-fishing-games__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  margin-top: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-fishing-games__tips-list li {
  background: #11271B; /* Card B G */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  border-left: 5px solid #22C768; /* Auxiliary color */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__tips-list li strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__promo-card {
  background: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__promo-card a {
  margin-top: auto; /* Push button to bottom */
}

/* Video Section */
.page-fishing-games__video-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

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

.page-fishing-games__faq-item {
  background: #11271B; /* Card B G */
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
}

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  color: #22C768; /* Auxiliary color */
  margin-left: 15px;
  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: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA */
.page-fishing-games__cta-final-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #F2C14E; /* Gold */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 15px;
    margin: 0 15px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }

  .page-fishing-games__text-block {
    font-size: 16px;
  }

  .page-fishing-games__steps-list li {
    font-size: 16px;
    padding-left: 60px;
  }

  .page-fishing-games__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
  }

  .page-fishing-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-icon,
  .page-fishing-games__game-thumbnail,
  .page-fishing-games__promo-image,
  .page-fishing-games__section-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important;
    object-fit: cover;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-item {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-fishing-games__video-wrapper {
    margin-top: 20px;
    padding-bottom: 56.25% !important; /* Ensure aspect ratio */
  }

  .page-fishing-games__video {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-fishing-games p,
  .page-fishing-games li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(24px, 5.5vw, 36px);
  }

  .page-fishing-games__section-title {
    font-size: clamp(22px, 4.5vw, 32px);
  }

  .page-fishing-games__hero-description {
    font-size: 15px;
  }

  .page-fishing-games__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}