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

.page-fishing-games-high-payout__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0056B3 0%, #003a7a 100%);
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-high-payout__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="wave" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q 25 25 50 50 T 100 50 V 100 H 0 Z" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect x="0" y="0" width="100%" height="100%" fill="url(%23wave)"/></svg>');
  opacity: 0.1;
  background-size: cover;
  z-index: 0;
}

.page-fishing-games-high-payout__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-fishing-games-high-payout__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-payout__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-high-payout__hero-image-wrapper {
  margin-top: 40px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-fishing-games-high-payout__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  animation: page-fishing-games-high-payout__float 3s ease-in-out infinite alternate;
}

@keyframes page-fishing-games-high-payout__float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.page-fishing-games-high-payout__section-title {
  font-size: 2.5em;
  color: #0056B3;
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-fishing-games-high-payout__section-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.page-fishing-games-high-payout__features {
  padding: 60px 20px;
  background-color: #fff;
}

.page-fishing-games-high-payout__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-fishing-games-high-payout__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-high-payout__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-fishing-games-high-payout__feature-heading {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-fishing-games-high-payout__feature-text {
  color: #666;
}

.page-fishing-games-high-payout__popular-games {
  padding: 60px 20px;
  background-color: #e6f0fa;
}

.page-fishing-games-high-payout__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-high-payout__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-high-payout__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-high-payout__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-fishing-games-high-payout__game-title {
  font-size: 1.7em;
  color: #0056B3;
  margin: 20px 15px 10px;
}

.page-fishing-games-high-payout__game-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
}

.page-fishing-games-high-payout__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-fishing-games-high-payout__btn--primary {
  background-color: #FFD700;
  color: #003a7a; /* Dark blue for contrast on gold */
  border: 2px solid #FFD700;
}

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

.page-fishing-games-high-payout__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-high-payout__btn--secondary:hover {
  background-color: #FFD700;
  color: #003a7a;
  transform: translateY(-2px);
}

.page-fishing-games-high-payout__btn--tertiary {
  background-color: #0056B3;
  color: #fff;
  border: 2px solid #0056B3;
}

.page-fishing-games-high-payout__btn--tertiary:hover {
  background-color: #003a7a;
  transform: translateY(-2px);
}

.page-fishing-games-high-payout__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-fishing-games-high-payout__btn--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
}

.page-fishing-games-high-payout__strategies {
  padding: 60px 20px;
  background-color: #fff;
}

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

.page-fishing-games-high-payout__strategy-list li {
  background-color: #f8f8f8;
  border-left: 5px solid #0056B3;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
}

.page-fishing-games-high-payout__strategy-list li strong {
  color: #0056B3;
}

.page-fishing-games-high-payout__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-high-payout__promotions {
  padding: 60px 20px;
  background-color: #e6f0fa;
}

.page-fishing-games-high-payout__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-fishing-games-high-payout__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-high-payout__promo-title {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-fishing-games-high-payout__promo-description {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
}

.page-fishing-games-high-payout__cta {
  background: linear-gradient(45deg, #003a7a, #0056B3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-fishing-games-high-payout__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-payout__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-fishing-games-high-payout__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-high-payout__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-high-payout__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games-high-payout__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games-high-payout__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-payout__hero {
    padding: 40px 15px;
  }
  .page-fishing-games-high-payout__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-high-payout__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-high-payout__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-high-payout__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-fishing-games-high-payout__section-title {
    font-size: 2em;
  }
  .page-fishing-games-high-payout__feature-grid, 
  .page-fishing-games-high-payout__game-list, 
  .page-fishing-games-high-payout__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-high-payout__cta-title {
    font-size: 2em;
  }
  .page-fishing-games-high-payout__cta-description {
    font-size: 1.1em;
  }
  .page-fishing-games-high-payout__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-high-payout__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-high-payout__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-high-payout__feature-heading, 
  .page-fishing-games-high-payout__game-title, 
  .page-fishing-games-high-payout__promo-title {
    font-size: 1.5em;
  }
  .page-fishing-games-high-payout__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games-high-payout__btn {
    width: 90%;
  }
}