.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is from shared.css */
}

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

.page-fishing-games__dark-bg {
  background-color: #1a1a2e; /* Inherited from body, or specific dark section */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 120px 0 80px; /* Adjusted padding-top to respect header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-card,
.page-fishing-games__btn-guide {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-fishing-games__btn-card,
.page-fishing-games__btn-guide {
  background-color: #EA7C07; /* Login color for action buttons */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games__btn-card:hover,
.page-fishing-games__btn-guide:hover {
  background-color: #c06306;
  border-color: #c06306;
}

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: inherit;
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: inherit;
}

.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__support-section,
.page-fishing-games__conclusion-section {
  padding: 80px 0;
}

.page-fishing-games__games-section,
.page-fishing-games__strategy-section,
.page-fishing-games__app-download-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
}

/* Introduction Section */
.page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__image-right {
  flex-shrink: 0;
  width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Game Grid */
.page-fishing-games__game-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 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-fishing-games__promo-card {
  background-color: #FFFFFF;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 15px;
  color: inherit;
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: inherit;
}

.page-fishing-games__btn-card {
  margin-top: auto;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}

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

.page-fishing-games__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games__step-item p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-guide {
  margin-top: auto;
}

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

.page-fishing-games__strategy-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-fishing-games__strategy-list li:last-child {
  margin-bottom: 0;
}

.page-fishing-games__list-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

/* App Download Section */
.page-fishing-games__app-download-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-fishing-games__app-text {
  flex: 1;
}

.page-fishing-games__app-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* Support Section */
.page-fishing-games__support-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-fishing-games__support-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__support-text {
  flex: 1;
}

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

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.05em;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px !important;
}

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

/* Conclusion Section */
.page-fishing-games__conclusion-cta {
  text-align: center;
  margin-top: 40px;
}

/* Floating Buttons */
.page-fishing-games__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-fishing-games__floating-btn {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-fishing-games__floating-btn:hover {
  background-color: #c06306;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games__content-wrapper,
  .page-fishing-games__app-download-content,
  .page-fishing-games__support-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__image-right,
  .page-fishing-games__app-image,
  .page-fishing-games__support-image {
    width: 80%;
    max-width: 600px;
    margin: 30px auto 0;
  }
  .page-fishing-games__app-text,
  .page-fishing-games__support-text {
    order: 1;
  }
  .page-fishing-games__app-image,
  .page-fishing-games__support-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-card,
  .page-fishing-games__btn-guide {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-fishing-games__container,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-list,
  .page-fishing-games__app-download-content,
  .page-fishing-games__support-content,
  .page-fishing-games__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__image-right,
  .page-fishing-games__app-image,
  .page-fishing-games__support-image,
  .page-fishing-games__card-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-fishing-games__floating-buttons {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }
  .page-fishing-games__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 10px 20px !important;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__sub-title {
    font-size: 1.3em;
  }
  .page-fishing-games__text-block p,
  .page-fishing-games__card-text,
  .page-fishing-games__step-item p,
  .page-fishing-games__strategy-list li p,
  .page-fishing-games__faq-answer p {
    font-size: 0.95em;
  }
}