.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--auxiliary-color, #FFFFFF);
}

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

.page-fishing-games__dark-bg {
  background-color: #26A9E0; /* Primary color */
  color: #FFFFFF; /* White text for dark background */
  padding: 60px 0;
}

.page-fishing-games__light-bg {
  background-color: #FFFFFF; /* Auxiliary color */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-fishing-games__subsection-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

/* Hero Banner */
.page-fishing-games__hero-banner {
  text-align: center;
  padding-bottom: 60px;
}

.page-fishing-games__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF; /* White for dark blue background */
}

.page-fishing-games__intro-text {
  font-size: 22px;
  margin-bottom: 30px;
  color: #E0F7FA; /* Lighter white for readability */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-fishing-games__btn-primary:hover {
  background-color: #D46B00;
  border-color: #D46B00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-small {
  padding: 10px 25px;
  font-size: 16px;
}

.page-fishing-games__btn-large {
  padding: 18px 45px;
  font-size: 20px;
}

/* About Section */
.page-fishing-games__about-fishing-games p {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games__image-content {
  text-align: center;
  margin: 40px 0;
}

.page-fishing-games__content-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games__list li {
  font-size: 17px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-fishing-games__list li::before {
  content: '✔️'; /* Unicode checkmark */
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-size: 20px;
  line-height: 1;
}

/* Game Types Grid */
.page-fishing-games__game-grid,
.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
  padding: 0 15px;
}

.page-fishing-games__card-description {
  font-size: 16px;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How-to-Play Steps */
.page-fishing-games__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__step-item {
  text-align: center;
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__step-icon {
  margin-bottom: 20px;
}

.page-fishing-games__step-icon img {
  
  
  object-fit: contain;
}