.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
  line-height: 1.6;
}

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

.page-fishing-games__dark-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
  padding: 60px 0;
}

.page-fishing-games__light-bg {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding: 60px 0;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-fishing-games__intro-text {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #ffffff;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-fishing-games__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

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

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #1F2D3D;
}

.page-fishing-games__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.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-color: #ffffff;
  color: #1F2D3D;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2F6BFF;
}

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

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__guide-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-fishing-games__guide-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-fishing-games__guide-content {
  flex: 1;
}

.page-fishing-games__guide-image {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__guide-step-description {
  font-size: 1.05rem;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-fishing-games__btn-text {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__btn-text:hover {
  color: #4A8BFF;
}

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

.page-fishing-games__game-tile {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__game-thumbnail {
  width: 100%;
  height: 250px; /* Enforce square aspect ratio */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-fishing-games__game-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-fishing-games__game-btn {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__strategy-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__strategy-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__strategy-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #2F6BFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  color: #1F2D3D;
}

.page-fishing-games__strategy-item strong {
  color: #2F6BFF;
}

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

.page-fishing-games__promotion-card {
  background-color: #ffffff;
  color: #1F2D3D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promotion-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2F6BFF;
  margin: 20px 15px 10px 15px;
}

.page-fishing-games__promotion-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin: 0 15px 20px 15px;
}

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

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

.page-fishing-games__why-choose-item {
  background-color: #ffffff;
  color: #1F2D3D;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__why-choose-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__why-choose-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-fishing-games__why-choose-text {
  font-size: 1rem;
  color: #1F2D3D;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: #ffffff;
  color: #1F2D3D;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2F6BFF;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #D6E2FF;
  list-style: none;
}

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: #e6f0ff;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  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;
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.7;
  border-top: 1px solid #eee;
  background-color: #ffffff;
}

.page-fishing-games__faq-item:not([open]) .page-fishing-games__faq-answer {
  border-top: none;
}

.page-fishing-games__conclusion-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* General image and container responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__section,
.page-fishing-games__card,
.page-fishing-games__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 20px 30px;
  }

  .page-fishing-games__guide-image {
    width: 400px;
    height: 300px;
  }

  .page-fishing-games__strategy-image {
    max-width: 45%;
  }
}

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

  .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Hero mobile: contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-fishing-games__main-title {
    font-size: 2rem !important;
    margin-bottom: 15px;
  }

  .page-fishing-games__intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__section-title {
    font-size: 2rem !important;
    margin-bottom: 20px;
  }

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

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

  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-fishing-games__feature-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__guide-item {
    flex-direction: column !important;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-fishing-games__guide-item:nth-child(even) {
    flex-direction: column !important;
  }

  .page-fishing-games__guide-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin-top: 20px;
  }

  .page-fishing-games__game-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Two columns for game grid */
    gap: 15px;
  }

  .page-fishing-games__game-thumbnail {
    height: auto !important;
    aspect-ratio: 1 / 1 !important; /* Maintain square aspect ratio */
    object-fit: cover !important;
  }

  .page-fishing-games__strategy-content {
    flex-direction: column;
  }

  .page-fishing-games__strategy-image {
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .page-fishing-games__strategy-list {
    width: 100%;
  }

  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__promotion-image {
    height: 180px;
  }

  .page-fishing-games__why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__why-choose-icon {
    width: 70px;
    height: 70px;
  }

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

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

  /* Ensure all images and their containers are responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .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;
    overflow: hidden !important; /* Prevents horizontal scroll */
  }
}