.page-fishing-games {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-dark: #08160F;
  --card-background: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background-dark);
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__dark-section {
  background-color: var(--deep-green-color);
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__text-block p,
.page-fishing-games__guide-list p,
.page-fishing-games__promo-card p,
.page-fishing-games__why-choose-item p,
.page-fishing-games__faq-answer p,
.page-fishing-games__conclusion-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-fishing-games__text-block p a,
.page-fishing-games__guide-list p a,
.page-fishing-games__faq-answer p a,
.page-fishing-games__conclusion-text a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__text-block p a:hover,
.page-fishing-games__guide-list p a:hover,
.page-fishing-games__faq-answer p a:hover,
.page-fishing-games__conclusion-text a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-fishing-games__intro-text {
  font-size: 19px;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  margin-top: 20px;
}

.page-fishing-games__cta-button--large {
  padding: 18px 45px;
  font-size: 20px;
  margin-top: 40px;
}

/* About Section */
.page-fishing-games__about-section .page-fishing-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-fishing-games__about-section .page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__about-section .page-fishing-games__image-block {
  flex: 0 0 40%;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__card-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Guide Section */
.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__guide-item {
  background-color: var(--card-background);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.page-fishing-games__guide-item h3 {
  color: var(--gold-color);
  margin-top: 0;
}

.page-fishing-games__tips-list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.page-fishing-games__tips-list strong {
  color: var(--text-main);
}

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

.page-fishing-games__game-card {
  background-color: var(--card-background);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-fishing-games__section-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__promo-card {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: var(--gold-color);
  margin-top: 0;
  font-size: 20px;
}

.page-fishing-games__promo-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__promo-button:hover {
  background-color: var(--secondary-color);
}

/* Why Choose Section */
.page-fishing-games__why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__why-choose-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-fishing-games__why-choose-item h3 {
  color: var(--gold-color);
  margin-top: 0;
}

.page-fishing-games__content-image--right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  max-width: 50%;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: var(--card-background);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: var(--primary-color);
}

.page-fishing-games__faq-question::-webkit-details-marker,
.page-fishing-games__faq-question::marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding-bottom: 80px;
}

.page-fishing-games__conclusion-text {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-main);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__about-section .page-fishing-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__about-section .page-fishing-games__image-block {
    flex: none;
    max-width: 80%;
  }

  .page-fishing-games__content-image--right {
    float: none;
    margin: 20px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .page-fishing-games__intro-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: clamp(20px, 5vw, 26px);
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-fishing-games__text-block p,
  .page-fishing-games__guide-list p,
  .page-fishing-games__promo-card p,
  .page-fishing-games__why-choose-item p,
  .page-fishing-games__faq-answer p,
  .page-fishing-games__conclusion-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__promo-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__cta-button--small,
  .page-fishing-games__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__image-block,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__why-choose-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-fishing-games__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-fishing-games__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 15px 20px;
  }

  .page-fishing-games__conclusion-text {
    font-size: 18px;
  }

  .page-fishing-games__content-image--right {
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .page-fishing-games__section-title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-games__hero-content {
    padding: 0 10px;
  }

  .page-fishing-games__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}