/* Base Styles and Typography */
.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-fishing-games__section-spacing {
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-fishing-games__section-title--light {
  color: #ffffff;
}

.page-fishing-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-block--light {
  color: #f0f0f0;
}

.page-fishing-games__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__image-spacing {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
  background: #f0f8ff;
  color: #2257cc;
  border-color: #2257cc;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__btn-play {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 30px;
  margin-top: auto; /* Push button to bottom of card */
}

.page-fishing-games__btn-play:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  background-color: #F4F7FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for desktop hero image */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0 0 15px 15px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Game Types Section */
.page-fishing-games__dark-section {
  background-color: #2F6BFF;
  color: #ffffff;
}

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

.page-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #1F2D3D;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 20px 10px;
  color: #000000;
}

.page-fishing-games__card-description {
  font-size: 16px;
  margin: 0 20px 20px;
  flex-grow: 1;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: #1F2D3D;
}

/* Guide Section */
.page-fishing-games__light-bg {
  background-color: #F4F7FB;
}

.page-fishing-games__guide-step {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.page-fishing-games__guide-step-title {
  font-size: 24px;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-fishing-games__guide-step-description {
  font-size: 17px;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-fishing-games__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-fishing-games__promotion-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__promotion-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__promotion-description {
  font-size: 16px;
  color: #1F2D3D;
}

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

.page-fishing-games__tips-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__tips-title {
  font-size: 20px;
  font-weight: 700;
  color: #A5C4FF; /* Glow color */
  margin-bottom: 10px;
}

.page-fishing-games__tips-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D6E2FF; /* Border color */
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #000000; /* Custom Color_1776249996415 */
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #f0f5ff;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #f8faff;
  border-radius: 0 0 8px 8px;
  color: #1F2D3D;
  font-size: 16px;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  text-align: center;
}

.page-fishing-games__cta-button-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 30px 20px 50px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__section-spacing {
    padding: 50px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(26px, 3.5vw, 34px);
  }
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__promotion-list,
  .page-fishing-games__tips-list {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding */
  }
  .page-fishing-games__hero-image-wrapper {
    max-height: 400px; /* Adjust height for mobile */
  }
  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Prevent cropping */
    aspect-ratio: unset !important;
    border-radius: 0 0 8px 8px;
  }
  .page-fishing-games__hero-content {
    padding: 25px 15px 40px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column !important; /* Vertical stack for buttons */
    gap: 15px;
    padding: 0 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Section Spacing */
  .page-fishing-games__section-spacing {
    padding: 40px 0;
  }

  /* Section Titles */
  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 30px);
    margin-bottom: 25px;
    text-align: center;
  }

  /* Text Blocks */
  .page-fishing-games__text-block {
    font-size: 16px;
    text-align: left;
  }

  /* 通用图片与容器 */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 产品展示图区域 */
  .page-fishing-games__game-cards-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns for mobile */
    gap: 20px;
    margin-top: 30px;
    overflow-x: hidden;
  }
  .page-fishing-games__game-card {
    padding-bottom: 15px;
  }
  .page-fishing-games__card-image {
    height: 180px;
    margin-bottom: 10px;
  }
  .page-fishing-games__card-title {
    font-size: 18px;
    margin: 0 15px 8px;
  }
  .page-fishing-games__card-description {
    font-size: 14px;
    margin: 0 15px 15px;
  }
  .page-fishing-games__btn-play {
    padding: 10px 18px;
    font-size: 14px;
    margin: 0 15px;
  }

  /* Features Section */
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
    margin-top: 30px;
  }
  .page-fishing-games__feature-item {
    padding: 25px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-fishing-games__feature-title {
    font-size: 18px;
  }
  .page-fishing-games__feature-description {
    font-size: 15px;
  }

  /* Guide Section */
  .page-fishing-games__guide-step {
    padding: 25px;
    margin-bottom: 20px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page-fishing-games__guide-step-description {
    font-size: 15px;
  }

  /* Promotions Section */
  .page-fishing-games__promotion-list {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
    margin-top: 30px;
  }
  .page-fishing-games__promotion-item {
    padding: 25px;
  }
  .page-fishing-games__promotion-title {
    font-size: 18px;
  }
  .page-fishing-games__promotion-description {
    font-size: 15px;
  }
  .page-fishing-games__btn-primary[href="promotions.html"] {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    margin: 0 auto;
    display: block;
  }

  /* Tips Section */
  .page-fishing-games__tips-list {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
    margin-top: 30px;
  }
  .page-fishing-games__tips-item {
    padding: 25px;
  }
  .page-fishing-games__tips-title {
    font-size: 18px;
  }
  .page-fishing-games__tips-description {
    font-size: 15px;
  }

  /* FAQ Section */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Conclusion Section */
  .page-fishing-games__cta-button-wrapper {
    padding: 0 15px;
  }
  .page-fishing-games__cta-button-wrapper .page-fishing-games__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
  }
}