.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #333333); /* Default to dark text for light background */
  background: var(--background-color, #f5f5f5);
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main-color, #FFF5E1);
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main-color, #FFF5E1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-main-color, #FFF5E1);
}

.page-fishing-games__highlight {
  color: var(--gold-color, #F4D34D);
  font-weight: bold;
}

/* HERO Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--deep-red-color, #7A0E0E);
  position: relative;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  background: var(--card-bg-color, #D32F2F);
  color: var(--text-main-color, #FFF5E1);
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
  margin-top: -80px; /* Overlap with image slightly */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-color, #F2B544);
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: var(--button-color, linear-gradient(180deg, #FFD86A 0%, #E6B800 100%));
  color: #7A0E0E; /* Deep Red for text */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary {
  background: transparent;
  border: 2px solid var(--gold-color, #F4D34D);
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--gold-color, #F4D34D);
  color: var(--deep-red-color, #7A0E0E);
  transform: translateY(-3px);
}

.page-fishing-games__btn-gold {
  background: var(--button-color, linear-gradient(180deg, #FFD86A 0%, #E6B800 100%));
  color: var(--deep-red-color, #7A0E0E);
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 30px;
}

.page-fishing-games__btn-gold:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 0;
  background: var(--background-color-dark, #B71C1C);
  color: var(--text-main-color, #FFF5E1);
}

.page-fishing-games__intro-section .page-fishing-games__section-title {
  color: var(--gold-color, #F4D34D);
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background: var(--background-color-light, #f9f9f9);
  color: var(--text-color-dark, #333333);
}

.page-fishing-games__features-section .page-fishing-games__section-title {
  color: var(--deep-red-color, #7A0E0E);
}

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

.page-fishing-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--deep-red-color, #7A0E0E);
}

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

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  padding: 80px 0;
  background: var(--background-color-dark, #B71C1C);
  color: var(--text-main-color, #FFF5E1);
}

.page-fishing-games__popular-games-section .page-fishing-games__section-title {
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__popular-games-section .page-fishing-games__section-description {
  color: var(--text-main-color, #FFF5E1);
}

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

.page-fishing-games__game-card {
  background: var(--card-bg-color, #D32F2F);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #F2B544);
  color: var(--text-main-color, #FFF5E1);
}

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

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

.page-fishing-games__game-info {
  padding: 25px;
  text-align: center;
}

.page-fishing-games__game-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__game-description {
  font-size: 16px;
  margin-bottom: 25px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
  background: var(--background-color-light, #f9f9f9);
  color: var(--text-color-dark, #333333);
}

.page-fishing-games__guide-section .page-fishing-games__section-title {
  color: var(--deep-red-color, #7A0E0E);
}

.page-fishing-games__guide-section .page-fishing-games__section-description {
  color: #555555;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  counter-reset: guide-step;
}

.page-fishing-games__guide-item {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 80px;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__guide-item::before {
  counter-increment: guide-step;
  content: "0" counter(guide-step);
  position: absolute;
  left: 25px;
  top: 30px;
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #C91F17);
  line-height: 1;
}

.page-fishing-games__guide-step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--deep-red-color, #7A0E0E);
}

.page-fishing-games__guide-item p {
  font-size: 16px;
  color: #555555;
}

.page-fishing-games__guide-cta-buttons {
  text-align: center;
  margin-top: 50px;
}

/* Promo Section */
.page-fishing-games__promo-section {
  padding: 80px 0;
  background: var(--background-color-dark, #B71C1C);
  color: var(--text-main-color, #FFF5E1);
}

.page-fishing-games__promo-section .page-fishing-games__section-title {
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__promo-section .page-fishing-games__section-description {
  color: var(--text-main-color, #FFF5E1);
}

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

.page-fishing-games__promo-card {
  background: var(--card-bg-color, #D32F2F);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #F2B544);
  text-align: center;
  padding-bottom: 25px;
  color: var(--text-main-color, #FFF5E1);
}

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

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold-color, #F4D34D);
  padding: 0 15px;
}

.page-fishing-games__promo-text {
  font-size: 16px;
  padding: 0 15px;
}

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

/* Security Section */
.page-fishing-games__security-section {
  padding: 80px 0;
  background: var(--background-color-light, #f9f9f9);
  color: var(--text-color-dark, #333333);
}

.page-fishing-games__security-section .page-fishing-games__section-title {
  color: var(--deep-red-color, #7A0E0E);
}

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

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

.page-fishing-games__security-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
}

.page-fishing-games__security-image-wrapper {
  flex: 1;
  max-width: 50%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background: var(--background-color-dark, #B71C1C);
  color: var(--text-main-color, #FFF5E1);
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color, #F2B544);
  overflow: hidden;
  background: var(--card-bg-color, #D32F2F);
  color: var(--text-main-color, #FFF5E1);
}

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;
  font-size: 18px;
  font-weight: 600;
}

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: var(--deep-red-color, #7A0E0E);
}

.page-fishing-games__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color, #F4D34D);
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color, #F4D34D);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: var(--deep-red-color, #7A0E0E);
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  line-height: 1.7;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
  color: var(--text-main-color, #FFF5E1);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  background: var(--background-color-light, #f9f9f9);
  color: var(--text-color-dark, #333333);
  text-align: center;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: var(--deep-red-color, #7A0E0E);
}

.page-fishing-games__conclusion-cta {
  margin-top: 50px;
}

/* General Image Styling */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
  }

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

  .page-fishing-games__security-image-wrapper {
    max-width: 100%;
  }
}

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

  /* HERO Section */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 300px;
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }

  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(24px, 6vw, 38px);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: clamp(14px, 3.5vw, 16px);
    margin-bottom: 25px;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* Buttons */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-gold {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Section Titles & Descriptions */
  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 30px;
  }

  .page-fishing-games__section-description,
  .page-fishing-games__text-block p {
    font-size: 15px;
    padding: 0 10px;
  }

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

  .page-fishing-games__feature-item {
    padding: 25px;
  }

  .page-fishing-games__feature-title {
    font-size: 20px;
  }

  /* Popular Games Section */
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-image {
    height: 200px;
  }

  .page-fishing-games__game-title {
    font-size: 20px;
  }

  /* Guide Section */
  .page-fishing-games__guide-item {
    padding: 25px 20px 25px 70px;
  }

  .page-fishing-games__guide-item::before {
    font-size: 30px;
    left: 20px;
    top: 25px;
  }

  .page-fishing-games__guide-step-title {
    font-size: 18px;
  }

  /* Promo Section */
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-fishing-games__promo-title {
    font-size: 20px;
  }

  /* Security Section */
  .page-fishing-games__security-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games__security-image-wrapper {
    max-width: 100% !important;
  }

  /* FAQ Section */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* General Image Styling for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promo-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
}