.page-entertainment-games-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

/* Hero Section */
.page-entertainment-games-fishing-game-tips__hero {
  background: linear-gradient(135deg, #004AAD 0%, #002880 100%); /* Darker blue for background contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-entertainment-games-fishing-game-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-entertainment-games-fishing-game-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  line-height: 1.2;
}

.page-entertainment-games-fishing-game-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-entertainment-games-fishing-game-tips__hero-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #004AAD;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-entertainment-games-fishing-game-tips__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-entertainment-games-fishing-game-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-entertainment-games-fishing-game-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Section Styling */
.page-entertainment-games-fishing-game-tips__section {
  padding: 60px 0;
}

.page-entertainment-games-fishing-game-tips__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-entertainment-games-fishing-game-tips__section-title {
  font-size: 2.5em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-entertainment-games-fishing-game-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-entertainment-games-fishing-game-tips__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-entertainment-games-fishing-game-tips__intro p strong {
  color: #004AAD;
}

/* Basic Tips Grid */
.page-entertainment-games-fishing-game-tips__tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-entertainment-games-fishing-game-tips__tip-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-entertainment-games-fishing-game-tips__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-entertainment-games-fishing-game-tips__tip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-entertainment-games-fishing-game-tips__tip-item h3 {
  color: #004AAD;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-entertainment-games-fishing-game-tips__tip-item p {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-entertainment-games-fishing-game-tips__tip-item ul {
  list-style: disc inside;
  text-align: left;
  margin-left: 20px;
  color: #555;
}

.page-entertainment-games-fishing-game-tips__tip-item ul li {
  margin-bottom: 5px;
}

/* Advanced Strategies */
.page-entertainment-games-fishing-game-tips__advanced-strategies h3 {
  font-size: 1.8em;
  color: #004AAD;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-entertainment-games-fishing-game-tips__advanced-strategies p {
  text-align: justify;
  margin-bottom: 15px;
  color: #444;
}

.page-entertainment-games-fishing-game-tips__strategy-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-entertainment-games-fishing-game-tips__strategy-item:nth-child(even) {
  flex-direction: column-reverse;
}

.page-entertainment-games-fishing-game-tips__strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Common Mistakes */
.page-entertainment-games-fishing-game-tips__mistakes ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-entertainment-games-fishing-game-tips__mistakes ul li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-entertainment-games-fishing-game-tips__mistakes ul li strong {
  color: #004AAD;
}

/* Benefits Section */
.page-entertainment-games-fishing-game-tips__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-entertainment-games-fishing-game-tips__benefit-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-entertainment-games-fishing-game-tips__benefit-item:hover {
  transform: translateY(-5px);
}

.page-entertainment-games-fishing-game-tips__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-entertainment-games-fishing-game-tips__benefit-item h4 {
  color: #004AAD;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-entertainment-games-fishing-game-tips__benefit-item p {
  color: #555;
  font-size: 0.95em;
}

/* CTA Section */
.page-entertainment-games-fishing-game-tips__cta-section {
  background-color: #004AAD;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-entertainment-games-fishing-game-tips__cta-inner {
  max-width: 900px;
}

.page-entertainment-games-fishing-game-tips__cta-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-entertainment-games-fishing-game-tips__cta-title::after {
  background-color: #FFD700;
}

.page-entertainment-games-fishing-game-tips__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-entertainment-games-fishing-game-tips__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #004AAD;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  margin: 0 10px 20px;
  border: 2px solid #FFD700;
}

.page-entertainment-games-fishing-game-tips__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-entertainment-games-fishing-game-tips__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-entertainment-games-fishing-game-tips__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  border-color: #FFD700;
}

/* FAQ Section */
.page-entertainment-games-fishing-game-tips__faq {
  padding-bottom: 80px;
}

.page-entertainment-games-fishing-game-tips__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-entertainment-games-fishing-game-tips__faq-question {
  font-size: 1.3em;
  color: #004AAD;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-entertainment-games-fishing-game-tips__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-entertainment-games-fishing-game-tips__faq-item.active .page-entertainment-games-fishing-game-tips__faq-question::after {
  transform: rotate(45deg);
}

.page-entertainment-games-fishing-game-tips__faq-answer {
  font-size: 1em;
  color: #555;
  text-align: justify;
  display: none; /* Hidden by default, shown by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-entertainment-games-fishing-game-tips__faq-item.active .page-entertainment-games-fishing-game-tips__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-entertainment-games-fishing-game-tips__hero-title {
    font-size: 2.5em;
  }
  .page-entertainment-games-fishing-game-tips__hero-description {
    font-size: 1.1em;
  }
  .page-entertainment-games-fishing-game-tips__section-title {
    font-size: 2em;
  }
  .page-entertainment-games-fishing-game-tips__tip-grid,
  .page-entertainment-games-fishing-game-tips__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-entertainment-games-fishing-game-tips__hero {
    padding: 60px 0;
  }
  .page-entertainment-games-fishing-game-tips__hero-title {
    font-size: 2em;
  }
  .page-entertainment-games-fishing-game-tips__hero-description {
    font-size: 1em;
  }
  .page-entertainment-games-fishing-game-tips__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-entertainment-games-fishing-game-tips__section {
    padding: 40px 0;
  }
  .page-entertainment-games-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-entertainment-games-fishing-game-tips__tip-grid,
  .page-entertainment-games-fishing-game-tips__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-entertainment-games-fishing-game-tips__strategy-item {
    padding: 20px;
  }
  .page-entertainment-games-fishing-game-tips__cta-title {
    font-size: 2.2em;
  }
  .page-entertainment-games-fishing-game-tips__cta-text {
    font-size: 1.1em;
  }
  .page-entertainment-games-fishing-game-tips__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 0 5px 15px;
  }
}

@media (max-width: 480px) {
  .page-entertainment-games-fishing-game-tips__hero-title {
    font-size: 1.8em;
  }
  .page-entertainment-games-fishing-game-tips__hero-description {
    font-size: 0.95em;
  }
  .page-entertainment-games-fishing-game-tips__section-title {
    font-size: 1.5em;
  }
  .page-entertainment-games-fishing-game-tips__cta-title {
    font-size: 1.8em;
  }
  .page-entertainment-games-fishing-game-tips__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 15px;
  }
  .page-entertainment-games-fishing-game-tips__faq-question {
    font-size: 1.1em;
  }
  .page-entertainment-games-fishing-game-tips__faq-answer {
    font-size: 0.9em;
  }
}