.page-fishing-games-bosses {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-fishing-games-bosses__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  overflow: hidden;
}

.page-fishing-games-bosses__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

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

.page-fishing-games-bosses__hero .page-fishing-games-bosses__container {
  position: relative;
  z-index: 1;
}

.page-fishing-games-bosses__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-fishing-games-bosses__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games-bosses__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-fishing-games-bosses__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: none;
}

.page-fishing-games-bosses__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games-bosses__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-fishing-games-bosses__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-fishing-games-bosses__btn--tertiary {
  background-color: #4A5568;
  color: #FFD700;
  border: 2px solid #4A5568;
  margin-left: 20px;
}

.page-fishing-games-bosses__btn--tertiary:hover {
  background-color: #6a768c;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-fishing-games-bosses__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-bosses__section:last-of-type {
  border-bottom: none;
}

.page-fishing-games-bosses__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-bosses__text-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #B0B0B0;
}

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

.page-fishing-games-bosses__feature-item {
  background-color: #2D3748; /* Slightly lighter dark for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-fishing-games-bosses__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games-bosses__feature-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-fishing-games-bosses__section-image {
  display: block;
  max-width: 80%;
  margin: 60px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-bosses__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-fishing-games-bosses__list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-fishing-games-bosses__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-fishing-games-bosses__list li p {
  margin: 0;
  color: #E0E0E0;
}

.page-fishing-games-bosses__list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games-bosses__list li a:hover {
  color: #e6c200;
}

.page-fishing-games-bosses__boss-showcase {
  background-color: #1A202C;
}

.page-fishing-games-bosses__boss-card {
  background-color: #2D3748;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-bosses__boss-name {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
}

.page-fishing-games-bosses__boss-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-fishing-games-bosses__boss-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.page-fishing-games-bosses__boss-info p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-fishing-games-bosses__boss-info strong {
  color: #FFD700;
}

.page-fishing-games-bosses__cta {
  padding: 80px 0;
  background: linear-gradient(45deg, #1A202C, #4A5568);
  text-align: center;
}

.page-fishing-games-bosses__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-bosses__cta-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-fishing-games-bosses__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-fishing-games-bosses__cta-image {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Floating Ad */
.page-fishing-games-bosses__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: transform 0.5s ease-out;
}

.page-fishing-games-bosses__floating-ad.show {
  transform: translateX(0);
}

.page-fishing-games-bosses__floating-ad-close {
  background: none;
  border: none;
  font-size: 1.5em;
  color: #1A202C;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
  line-height: 1;
  padding: 0;
}

.page-fishing-games-bosses__floating-ad-text {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
  color: #1A202C;
}

.page-fishing-games-bosses__btn--floating {
  background-color: #1A202C;
  color: #FFD700;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  text-decoration: none;
}

.page-fishing-games-bosses__btn--floating:hover {
  background-color: #3a475a;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-bosses__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-bosses__section-title {
    font-size: 2em;
  }
  .page-fishing-games-bosses__cta-title {
    font-size: 2.2em;
  }
  .page-fishing-games-bosses__boss-details {
    flex-direction: column;
  }
  .page-fishing-games-bosses__boss-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-bosses__hero {
    padding: 80px 0;
  }
  .page-fishing-games-bosses__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-bosses__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-bosses__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 10px;
  }
  .page-fishing-games-bosses__btn--secondary,
  .page-fishing-games-bosses__btn--tertiary {
    margin-left: 0;
  }
  .page-fishing-games-bosses__section {
    padding: 40px 0;
  }
  .page-fishing-games-bosses__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-bosses__feature-item {
    padding: 20px;
  }
  .page-fishing-games-bosses__feature-title {
    font-size: 1.3em;
  }
  .page-fishing-games-bosses__boss-name {
    font-size: 1.6em;
  }
  .page-fishing-games-bosses__list li {
    padding: 15px 20px;
  }
  .page-fishing-games-bosses__list-title {
    font-size: 1.1em;
  }
  .page-fishing-games-bosses__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games-bosses__cta-description {
    font-size: 1em;
  }
  .page-fishing-games-bosses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-bosses__floating-ad {
    flex-direction: column;
    text-align: center;
    right: 10px;
    bottom: 10px;
    padding: 15px;
    gap: 10px;
  }
  .page-fishing-games-bosses__floating-ad-close {
    top: 5px;
    right: 5px;
  }
  .page-fishing-games-bosses__floating-ad-text {
    font-size: 0.95em;
  }
  .page-fishing-games-bosses__btn--floating {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-bosses__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-bosses__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-bosses__cta-title {
    font-size: 1.5em;
  }
  .page-fishing-games-bosses__features-grid {
    grid-template-columns: 1fr;
  }
}