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

.page-fishing-games__dark-bg {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff; /* Light text for dark background */
}

.page-fishing-games__light-bg {
  background-color: #FFFFFF; /* Card BG */
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__medium-bg {
  background-color: #6FA3FF; /* Secondary Color */
  color: #1F2D3D; /* Dark text for medium background */
}

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-top: 30px;
  z-index: 1;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__introduction .page-fishing-games__section-title,
.page-fishing-games__promotions .page-fishing-games__section-title,
.page-fishing-games__faq .page-fishing-games__section-title {
  color: #1F2D3D;
}

.page-fishing-games__guide .page-fishing-games__section-title,
.page-fishing-games__advantages .page-fishing-games__section-title,
.page-fishing-games__conclusion .page-fishing-games__section-title,
.page-fishing-games__mobile-app .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__section-description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

.page-fishing-games__dark-bg .page-fishing-games__section-description {
  color: #f0f0f0;
}

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

.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;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  border: none;
  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);
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-fishing-games__game-card,
.page-fishing-games__promo-card,
.page-fishing-games__advantage-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__promo-card:hover,
.page-fishing-games__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-fishing-games__game-card-title,
.page-fishing-games__promo-title,
.page-fishing-games__advantage-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__game-card-description,
.page-fishing-games__promo-description {
  font-size: 0.95rem;
  color: #1F2D3D;
}

/* Guide Section */
.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__guide-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__guide-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-fishing-games__guide-item p {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 15px;
}

/* Strategies Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__strategy-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__strategy-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__strategy-item p {
  font-size: 1rem;
  color: #1F2D3D;
}

/* Mobile App Section */
.page-fishing-games__mobile-app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-fishing-games__mobile-app-content {
  flex: 1;
}

.page-fishing-games__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

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

.page-fishing-games__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__app-benefit-item {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__app-benefit-item::before {
  content: '✓';
  color: #6FA3FF; /* Secondary color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-fishing-games__faq-item summary {
  list-style: none;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #1F2D3D; /* Text Main */
  transition: background-color 0.3s ease;
}

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

.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: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__mobile-app-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__mobile-app-image-wrapper {
    margin-top: 40px;
  }
  .page-fishing-games__app-benefits {
    text-align: center;
  }
  .page-fishing-games__app-benefit-item {
    padding-left: 0;
  }
  .page-fishing-games__app-benefit-item::before {
    position: static;
    margin-right: 5px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.95rem;
  }
  .page-fishing-games__section {
    padding: 60px 15px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-fishing-games__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-fishing-games img,
  .page-fishing-games video {
    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,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 18px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__game-grid,
  .page-fishing-games__advantage-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__hero-image {
    height: 250px;
  }
  .page-fishing-games__game-card-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__advantage-image {
    height: 180px;
  }
}