.page-game-demo-fishing-game-free-mode {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray text for readability on light backgrounds */
  background-color: #f8f8f8;
}

.page-game-demo-fishing-game-free-mode__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-demo-fishing-game-free-mode__container--narrow {
  max-width: 900px;
}

.page-game-demo-fishing-game-free-mode__hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%); /* Main to auxiliary color gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff; /* White text on dark background */
}

.page-game-demo-fishing-game-free-mode__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-demo-fishing-game-free-mode__subtitle {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-demo-fishing-game-free-mode__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-demo-fishing-game-free-mode__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-game-demo-fishing-game-free-mode__btn--primary {
  background-color: #FFD700; /* Auxiliary color for primary button */
  color: #CC0000; /* Main color for text on auxiliary background */
  border: 2px solid #FFD700;
}

.page-game-demo-fishing-game-free-mode__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-demo-fishing-game-free-mode__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-game-demo-fishing-game-free-mode__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-game-demo-fishing-game-free-mode__section {
  padding: 80px 0;
}

.page-game-demo-fishing-game-free-mode__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-game-demo-fishing-game-free-mode__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main color for section titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-game-demo-fishing-game-free-mode__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-game-demo-fishing-game-free-mode__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-demo-fishing-game-free-mode__grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-game-demo-fishing-game-free-mode__card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-game-demo-fishing-game-free-mode__card:hover {
  transform: translateY(-10px);
}

.page-game-demo-fishing-game-free-mode__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-demo-fishing-game-free-mode__card-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-game-demo-fishing-game-free-mode__card-text {
  font-size: 1em;
  color: #555555;
}

.page-game-demo-fishing-game-free-mode__content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-game-demo-fishing-game-free-mode__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-game-demo-fishing-game-free-mode__text-content {
  flex: 1;
  min-width: 300px;
}

.page-game-demo-fishing-game-free-mode__image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-demo-fishing-game-free-mode__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-game-demo-fishing-game-free-mode__image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #777777;
}

.page-game-demo-fishing-game-free-mode__list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.page-game-demo-fishing-game-free-mode__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-demo-fishing-game-free-mode__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #CC0000; /* Main color for list checkmark */
  font-weight: bold;
}

.page-game-demo-fishing-game-free-mode__text-center {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-game-demo-fishing-game-free-mode__text-emphasized {
  font-weight: bold;
  color: #CC0000;
}

.page-game-demo-fishing-game-free-mode__cta-center {
  text-align: center;
  margin-top: 30px;
}

.page-game-demo-fishing-game-free-mode__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-game-demo-fishing-game-free-mode__steps-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-top: 60px;
}

.page-game-demo-fishing-game-free-mode__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  height: 40px;
  background-color: #CC0000; /* Main color for step number background */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-demo-fishing-game-free-mode__step-title {
  color: #CC0000;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-game-demo-fishing-game-free-mode__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-demo-fishing-game-free-mode__promo-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  object-fit: contain;
}

.page-game-demo-fishing-game-free-mode__promo-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-game-demo-fishing-game-free-mode__promo-text {
  font-size: 1.05em;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-demo-fishing-game-free-mode__hero {
    padding: 80px 0;
  }
  .page-game-demo-fishing-game-free-mode__title {
    font-size: 2.8em;
  }
  .page-game-demo-fishing-game-free-mode__subtitle {
    font-size: 1.1em;
  }
  .page-game-demo-fishing-game-free-mode__section {
    padding: 60px 0;
  }
  .page-game-demo-fishing-game-free-mode__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-game-demo-fishing-game-free-mode__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-game-demo-fishing-game-free-mode__content-wrapper--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-game-demo-fishing-game-free-mode__hero {
    padding: 60px 0;
  }
  .page-game-demo-fishing-game-free-mode__title {
    font-size: 2.2em;
  }
  .page-game-demo-fishing-game-free-mode__subtitle {
    font-size: 1em;
  }
  .page-game-demo-fishing-game-free-mode__cta-group {
    flex-direction: column;
  }
  .page-game-demo-fishing-game-free-mode__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-demo-fishing-game-free-mode__section {
    padding: 40px 0;
  }
  .page-game-demo-fishing-game-free-mode__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-demo-fishing-game-free-mode__grid-3, .page-game-demo-fishing-game-free-mode__grid-2 {
    grid-template-columns: 1fr;
  }
  .page-game-demo-fishing-game-free-mode__steps-list {
    grid-template-columns: 1fr;
  }
  .page-game-demo-fishing-game-free-mode__promo-card {
    padding: 25px;
  }
}