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

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden; /* Ensure no overflow */
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1920px; /* Actual image width */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and text */
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive H1 */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-fishing-games__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button fits */
  box-sizing: border-box;
}

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

.page-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__container {
  width: 100%; /* desktop width for flex-item */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__sub-section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #57E38D; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games__text-block {
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__dark-bg {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-fishing-games__feature-item {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item::before {
  content: '✅';
  font-size: 20px;
  color: #57E38D; /* Glow */
}

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

.page-fishing-games__games-showcase-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #0A4B2C; /* Deep Green */
  display: block; /* Ensure it behaves as a block element */
}

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

.page-fishing-games__game-card-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-fishing-games__game-card-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-fishing-games__other-games {
  margin-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider */
  padding-top: 30px;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__guide-step {
  background-color: rgba(17, 39, 27, 0.8); /* Slightly darker Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-fishing-games__guide-step-title {
  font-size: 26px;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__guide-step p {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-size: 17px;
}

.page-fishing-games__guide-step-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #0A4B2C;
  display: block; /* Ensure it behaves as a block element */
}

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

.page-fishing-games__strategy-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  text-align: left;
}

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

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

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

.page-fishing-games__promotions-section {
  text-align: center;
}

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

.page-fishing-games__promotion-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

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

.page-fishing-games__promotion-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #0A4B2C;
  display: block;
}

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

.page-fishing-games__promotion-card-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-fishing-games__cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-fishing-games__faq-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none; /* Remove default marker */
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Hover effect with Divider color */
}

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

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

.page-fishing-games__support-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px solid #2E7A4E;
  display: block; /* Ensure it behaves as a block element */
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 768px;
  }
  .page-fishing-games__game-card-image,
  .page-fishing-games__promotion-card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 15px;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

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

  .page-fishing-games__description {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-fishing-games__container {
    padding: 30px 15px; /* Add horizontal padding for mobile */
    width: 100% !important; /* Ensure container fills width */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-fishing-games__sub-section-title {
    font-size: clamp(18px, 4vw, 24px);
  }

  .page-fishing-games__text-block,
  .page-fishing-games__feature-item,
  .page-fishing-games__game-card-description,
  .page-fishing-games__strategy-card-description,
  .page-fishing-games__promotion-card-description,
  .page-fishing-games__faq-answer {
    font-size: 15px;
  }

  .page-fishing-games__feature-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-cards-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promotion-cards {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-card-image,
  .page-fishing-games__promotion-card-image,
  .page-fishing-games__guide-step-image,
  .page-fishing-games__support-image,
  .page-fishing-games__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover; /* Ensure images scale nicely */
  }

  /* Ensure video/image containers adapt */
  .page-fishing-games__hero-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section,
  .page-fishing-games__game-card,
  .page-fishing-games__strategy-card,
  .page-fishing-games__promotion-card,
  .page-fishing-games__guide-step,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden; /* Prevent horizontal scroll from internal elements */
  }

  .page-fishing-games__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__faq-item summary {
    font-size: 17px;
    padding: 15px 20px;
  }

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

  /* Buttons responsiveness */
  .page-fishing-games__cta-button,
  .page-fishing-games__game-card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-fishing-games__hero-section {
    padding-top: 10px; /* Small decorative top padding */
}