:root {
  --primary-color: #1A2E47; /* Deep Navy */
  --secondary-color: #FFD700; /* Bright Gold */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #121212; /* Body background */
  --background-card-dark: rgba(255, 255, 255, 0.08); /* Slightly lighter than body for cards */
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

/* Base styles for the page content */
.page-fishing-games-tips {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Default text color for dark body background */
  line-height: 1.6;
  background-color: var(--background-dark); /* Ensure consistency if body background is overridden */
}

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

.page-fishing-games-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games-tips h1, .page-fishing-games-tips h2, .page-fishing-games-tips h3 {
  color: var(--secondary-color); /* Headings use gold */
}

.page-fishing-games-tips p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-fishing-games-tips ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-fishing-games-tips li {
  margin-bottom: 8px;
}

.page-fishing-games-tips strong, .page-fishing-games-tips .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* CTA Button Styles */
.page-fishing-games-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-fishing-games-tips__cta-button:hover {
  background: #e6c200; /* Darken secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips__cta-button--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-fishing-games-tips__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Sections */
.page-fishing-games-tips__hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a182e 100%);
  padding: 120px 0 60px; /* Padding top for fixed header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-fishing-games-tips__hero-section .page-fishing-games-tips__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-fishing-games-tips__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fishing-games-tips__main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-fishing-games-tips__main-title .highlight {
  color: var(--secondary-color);
}

.page-fishing-games-tips__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games-tips__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games-tips__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-tips__intro-section,
.page-fishing-games-tips__game-basics-section,
.page-fishing-games-tips__strategy-section,
.page-fishing-games-tips__vnsoxo-benefits-section,
.page-fishing-games-tips__faq-content-section,
.page-fishing-games-tips__cta-final-section {
  padding: 80px 0;
}

.page-fishing-games-tips__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__section-title {
  color: var(--secondary-color);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips p {
  color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games-tips__content-card {
  background: var(--background-card-dark);
  border: 1px solid var(--border-color-dark);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__card-title {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-fishing-games-tips__image-text-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.page-fishing-games-tips__image-text-layout.reverse {
  flex-direction: row-reverse;
}

.page-fishing-games-tips__content-image {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.page-fishing-games-tips__text-content {
  flex: 1;
}

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

.page-fishing-games-tips__strategy-card {
  background: var(--background-card-dark);
  border: 1px solid var(--border-color-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games-tips__strategy-card .page-fishing-games-tips__card-title {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games-tips__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games-tips__benefit-card {
  background: var(--background-card-dark);
  border: 1px solid var(--border-color-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-tips__benefit-card .page-fishing-games-tips__card-title {
  font-size: 22px;
  color: var(--secondary-color);
}

/* FAQ Content Section (simple list, not interactive homepage module) */
.page-fishing-games-tips__faq-list {
  margin-top: 30px;
}

.page-fishing-games-tips__faq-item {
  background: var(--background-card-dark);
  border: 1px solid var(--border-color-dark);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips__faq-item h3 {
  color: var(--text-color-light);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games-tips__faq-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips__main-title {
    font-size: 40px;
  }

  .page-fishing-games-tips__section-title {
    font-size: 30px;
  }

  .page-fishing-games-tips__hero-section .page-fishing-games-tips__container {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games-tips__hero-content {
    text-align: center;
  }

  .page-fishing-games-tips__image-text-layout {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games-tips__image-text-layout.reverse {
    flex-direction: column;
  }

  .page-fishing-games-tips__content-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-section {
    padding-top: 100px; /* Mobile padding top for fixed header */
    padding-bottom: 40px;
    min-height: auto;
  }

  .page-fishing-games-tips__hero-section .page-fishing-games-tips__container {
    padding: 0 15px;
  }

  .page-fishing-games-tips__main-title {
    font-size: 32px !important;
    margin-bottom: 15px;
  }

  .page-fishing-games-tips__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-fishing-games-tips__cta-button {
    font-size: 16px;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-tips__cta-button--large {
    font-size: 18px;
    padding: 15px 30px;
  }

  .page-fishing-games-tips__intro-section,
  .page-fishing-games-tips__game-basics-section,
  .page-fishing-games-tips__strategy-section,
  .page-fishing-games-tips__vnsoxo-benefits-section,
  .page-fishing-games-tips__faq-content-section,
  .page-fishing-games-tips__cta-final-section {
    padding: 50px 0;
  }

  .page-fishing-games-tips__section-title {
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-fishing-games-tips__container {
    padding: 0 15px;
  }

  .page-fishing-games-tips__content-card,
  .page-fishing-games-tips__strategy-card,
  .page-fishing-games-tips__benefit-card,
  .page-fishing-games-tips__faq-item {
    padding: 20px;
    margin-bottom: 20px;
  }

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

  .page-fishing-games-tips__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }

  .page-fishing-games-tips__image-text-layout.reverse {
    flex-direction: column;
  }

  .page-fishing-games-tips__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-tips__strategy-grid,
  .page-fishing-games-tips__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__hero-image-wrapper,
  .page-fishing-games-tips__image-text-layout,
  .page-fishing-games-tips__strategy-grid,
  .page-fishing-games-tips__benefits-grid,
  .page-fishing-games-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

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