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

.page-game-center-fishing-game-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-center-fishing-game-tips__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-game-center-fishing-game-tips__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-center-fishing-game-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-center-fishing-game-tips__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-game-center-fishing-game-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-game-center-fishing-game-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

.page-game-center-fishing-game-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-game-center-fishing-game-tips__section:last-of-type {
  border-bottom: none;
}

.page-game-center-fishing-game-tips__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-center-fishing-game-tips__sub-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
}

.page-game-center-fishing-game-tips p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-game-center-fishing-game-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #495057;
}

.page-game-center-fishing-game-tips__list li {
  margin-bottom: 10px;
}

.page-game-center-fishing-game-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-center-fishing-game-tips__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: 2px solid #ffc107;
}

.page-game-center-fishing-game-tips__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  color: #003080;
}

.page-game-center-fishing-game-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-game-center-fishing-game-tips__cta-button--primary {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-game-center-fishing-game-tips__cta-button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.page-game-center-fishing-game-tips__cta-button--secondary {
  background-color: #f8f9fa;
  color: #007bff;
  border-color: #007bff;
}

.page-game-center-fishing-game-tips__cta-button--secondary:hover {
  background-color: #e2e6ea;
  color: #0056b3;
  border-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-center-fishing-game-tips__hero {
    padding: 60px 0;
  }

  .page-game-center-fishing-game-tips__hero-title {
    font-size: 2.5em;
  }

  .page-game-center-fishing-game-tips__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-center-fishing-game-tips__section {
    padding: 40px 0;
  }

  .page-game-center-fishing-game-tips__section-title {
    font-size: 2em;
  }

  .page-game-center-fishing-game-tips__sub-title {
    font-size: 1.5em;
  }

  .page-game-center-fishing-game-tips p,
  .page-game-center-fishing-game-tips__list {
    font-size: 1em;
  }

  .page-game-center-fishing-game-tips__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-center-fishing-game-tips__hero-title {
    font-size: 2em;
  }

  .page-game-center-fishing-game-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-game-center-fishing-game-tips__section-title {
    font-size: 1.8em;
  }

  .page-game-center-fishing-game-tips__sub-title {
    font-size: 1.3em;
  }

  .page-game-center-fishing-game-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}