.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-fishing-games__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__section-title {
  color: #26A9E0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__section-subtitle {
  color: #f0f0f0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 100px; /* Adjust based on desired spacing from top */
}

.page-fishing-games__main-title {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 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: #1e87b3;
  border-color: #1e87b3;
}

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

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

.page-fishing-games__btn-tertiary {
  background-color: #EA7C07; /* Login color for specific CTAs */
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin-top: 20px;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

/* Overview Section */
.page-fishing-games__overview-section {
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff;
}

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

.page-fishing-games__content-area--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__content-area p {
  flex: 1;
  line-height: 1.8;
  font-size: 1.05rem;
}

.page-fishing-games__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__image--left {
  margin-right: 20px;
}

.page-fishing-games__image--right {
  margin-left: 20px;
}

/* Features Section */
.page-fishing-games__features-section {
  background-color: #22223a; /* Slightly lighter dark background */
  color: #ffffff;
}

.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-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  color: #26A9E0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #1a1a2e;
  color: #ffffff;
}

.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: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__step-number {
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.page-fishing-games__step-title {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__step-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  background-color: #22223a;
  color: #ffffff;
}

.page-fishing-games__sub-title {
  color: #26A9E0;
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #1a1a2e;
  color: #ffffff;
}

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

.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-title {
  color: #26A9E0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__promo-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  flex-grow: 1;
}

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

/* Security Section */
.page-fishing-games__security-section {
  background-color: #22223a;
  color: #ffffff;
}

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

.page-fishing-games__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__security-title {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__security-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Support Section */
.page-fishing-games__support-section {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-fishing-games__support-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.page-fishing-games__support-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-fishing-games__support-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.page-fishing-games__support-label {
  font-weight: 600;
  color: #26A9E0;
  margin-right: 8px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #22223a;
  color: #ffffff;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: #1a1a2e;
  color: #ffffff;
  text-align: center;
}

.page-fishing-games__conclusion-section .page-fishing-games__content-area {
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.page-fishing-games__conclusion-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__content-area {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__image {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }

  .page-fishing-games__image--left,
  .page-fishing-games__image--right {
    margin-left: auto;
    margin-right: auto;
  }

  .page-fishing-games__hero-content {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

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

  .page-fishing-games__hero-content {
    margin-top: 40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-fishing-games__section-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 25px;
  }

  .page-fishing-games__content-area {
    gap: 20px;
    flex-direction: column;
  }

  .page-fishing-games__content-area p {
    font-size: 1rem;
  }

  .page-fishing-games__image {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px auto;
    display: block !important;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-fishing-games__step-title {
    font-size: 1.2rem;
  }

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

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

  .page-fishing-games__cta-center .page-fishing-games__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-fishing-games__content-area--reverse {
    flex-direction: column;
  }

  .page-fishing-games__sub-title {
    font-size: 1.4rem;
  }
}