/* style/fishing-games-tips-strategy.css */
.page-fishing-games-tips-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-fishing-games-tips-strategy__hero {
  background: linear-gradient(135deg, #0056B3, #FFD700);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-tips-strategy__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: page-fishing-games-tips-strategy__bubble-1 15s infinite linear;
}

.page-fishing-games-tips-strategy__hero::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: page-fishing-games-tips-strategy__bubble-2 12s infinite linear;
}

@keyframes page-fishing-games-tips-strategy__bubble-1 {
  0% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(100px, 100px); opacity: 0.5; }
  100% { transform: translate(0, 0); opacity: 0.8; }
}

@keyframes page-fishing-games-tips-strategy__bubble-2 {
  0% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(-80px, -80px); opacity: 0.4; }
  100% { transform: translate(0, 0); opacity: 0.7; }
}

.page-fishing-games-tips-strategy__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFD700; /* Gold for highlight */
}

.page-fishing-games-tips-strategy__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-fishing-games-tips-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-fishing-games-tips-strategy__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0056B3; /* Main color for text */
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips-strategy__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-strategy__btn--secondary {
  background-color: #0056B3; /* Main color */
  color: #FFD700; /* Auxiliary color for text */
  border: 2px solid #FFD700;
  font-size: 1.1em;
  margin-left: 20px;
}

.page-fishing-games-tips-strategy__btn--secondary:hover {
  background-color: #004085;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games-tips-strategy__introduction,
.page-fishing-games-tips-strategy__section,
.page-fishing-games-tips-strategy__conclusion {
  padding: 60px 0;
}

.page-fishing-games-tips-strategy__introduction p,
.page-fishing-games-tips-strategy__section p,
.page-fishing-games-tips-strategy__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-fishing-games-tips-strategy__heading {
  font-size: 2.5em;
  color: #0056B3; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games-tips-strategy__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color */
  border-radius: 2px;
}

.page-fishing-games-tips-strategy__subheading {
  font-size: 1.8em;
  color: #004085; /* Darker shade of main color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-fishing-games-tips-strategy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games-tips-strategy__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #333;
}

.page-fishing-games-tips-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__image--full-width {
  width: 100%;
  margin: 40px 0;
}

.page-fishing-games-tips-strategy__section--alt {
  background-color: #eaf3ff; /* Lighter shade of main color */
}

.page-fishing-games-tips-strategy__cta-section {
  background-color: #0056B3; /* Main color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-tips-strategy__heading--cta {
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 25px;
}

.page-fishing-games-tips-strategy__heading--cta::after {
  background-color: #ffffff;
}

.page-fishing-games-tips-strategy__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-fishing-games-tips-strategy .highlight {
  color: #0056B3;
  font-weight: bold;
}

.page-fishing-games-tips-strategy__cta-section .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games-tips-strategy__title {
    font-size: 2.5em;
  }

  .page-fishing-games-tips-strategy__subtitle {
    font-size: 1.2em;
  }

  .page-fishing-games-tips-strategy__heading {
    font-size: 2em;
  }

  .page-fishing-games-tips-strategy__subheading {
    font-size: 1.5em;
  }

  .page-fishing-games-tips-strategy__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-fishing-games-tips-strategy__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-fishing-games-tips-strategy__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips-strategy__title {
    font-size: 2em;
  }

  .page-fishing-games-tips-strategy__subtitle {
    font-size: 1em;
  }

  .page-fishing-games-tips-strategy__heading {
    font-size: 1.8em;
  }

  .page-fishing-games-tips-strategy__subheading {
    font-size: 1.3em;
  }

  .page-fishing-games-tips-strategy__hero {
    padding: 60px 0;
  }

  .page-fishing-games-tips-strategy__introduction,
  .page-fishing-games-tips-strategy__section,
  .page-fishing-games-tips-strategy__conclusion {
    padding: 40px 0;
  }
}