.page-fishing-games-new {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-fishing-games-new__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-fishing-games-new__hero-content {
  z-index: 1;
  max-width: 800px;
}

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

.page-fishing-games-new__hero-subtitle {
  font-size: 1.5em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games-new__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;
  white-space: nowrap;
}

.page-fishing-games-new__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

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

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

.page-fishing-games-new__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-fishing-games-new__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-new__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-new__introduction,
.page-fishing-games-new__features,
.page-fishing-games-new__gameplay,
.page-fishing-games-new__offers,
.page-fishing-games-new__registration,
.page-fishing-games-new__why-choose,
.page-fishing-games-new__faq,
.page-fishing-games-new__cta-final {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-fishing-games-new__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e5dfd3;
}

.page-fishing-games-new__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games-new__feature-item:hover,
.page-fishing-games-new__offer-item:hover,
.page-fishing-games-new__reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-new__feature-icon,
.page-fishing-games-new__offer-icon,
.page-fishing-games-new__reason-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-new__feature-description,
.page-fishing-games-new__offer-description,
.page-fishing-games-new__reason-description {
  font-size: 1em;
  color: #e5dfd3;
}

.page-fishing-games-new__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-fishing-games-new__list li {
  background-color: #2a3447;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-fishing-games-new__list li strong {
  color: #FFD700;
}

.page-fishing-games-new__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-fishing-games-new__step-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px;
}

.page-fishing-games-new__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #1A202C;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-new__step-description {
  font-size: 1em;
  color: #e5dfd3;
}

.page-fishing-games-new__faq-item {
  background-color: #2a3447;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-new__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games-new__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-fishing-games-new__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games-new__faq-answer {
  font-size: 1em;
  color: #e5dfd3;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 10px;
}

.page-fishing-games-new__faq-answer.active {
  display: block;
}

.page-fishing-games-new__text-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-fishing-games-new__text-link:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-new__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-new__hero-subtitle {
    font-size: 1.3em;
  }
  .page-fishing-games-new__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-new__hero {
    padding: 60px 20px;
    min-height: 500px;
  }
  .page-fishing-games-new__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-new__hero-subtitle {
    font-size: 1.1em;
  }
  .page-fishing-games-new__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-new__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-fishing-games-new__section-title {
    font-size: 2em;
  }
  .page-fishing-games-new__introduction,
  .page-fishing-games-new__features,
  .page-fishing-games-new__gameplay,
  .page-fishing-games-new__offers,
  .page-fishing-games-new__registration,
  .page-fishing-games-new__why-choose,
  .page-fishing-games-new__faq,
  .page-fishing-games-new__cta-final {
    padding: 40px 0;
  }
  .page-fishing-games-new__text {
    font-size: 1em;
  }
  .page-fishing-games-new__feature-item,
  .page-fishing-games-new__offer-item,
  .page-fishing-games-new__reason-item,
  .page-fishing-games-new__step-item {
    padding: 25px;
  }
  .page-fishing-games-new__feature-title,
  .page-fishing-games-new__offer-title,
  .page-fishing-games-new__reason-title {
    font-size: 1.3em;
  }
  .page-fishing-games-new__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.8em;
  }
  .page-fishing-games-new__step-item {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-new__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-new__hero-subtitle {
    font-size: 1em;
  }
  .page-fishing-games-new__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-new__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games-new__feature-icon,
  .page-fishing-games-new__offer-icon,
  .page-fishing-games-new__reason-icon {
    width: 60px;
    height: 60px;
  }
  .page-fishing-games-new__list li {
    font-size: 0.95em;
    padding: 15px;
  }
  .page-fishing-games-new__faq-question {
    font-size: 1.1em;
  }
}