.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--background, #08160F);
  color: var(--Text-Main, #F2FFF6);
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--Gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  color: var(--Text-Secondary, #A7D9B8);
  margin-bottom: 40px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 255, 100, 0.3);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 255, 100, 0.4);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--Gold, #F2C14E);
  border: 2px solid var(--Gold, #F2C14E);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--Gold, #F2C14E);
  color: var(--Deep-Green, #0A4B2C);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--Gold, #F2C14E);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.page-fishing-games__introduction-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__strategy-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__final-cta-section {
  padding: 80px 0;
  background-color: var(--background, #08160F);
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__highlights-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--Card-B-G, #11271B);
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--Text-Secondary, #A7D9B8);
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__card {
  background-color: var(--Card-B-G, #11271B);
  border: 1px solid var(--Divider, #1E3A2A);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.page-fishing-games__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__card-title,
.page-fishing-games__game-title,
.page-fishing-games__step-title,
.page-fishing-games__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--Gold, #F2C14E);
  margin-bottom: 15px;
}

.page-fishing-games__card-description,
.page-fishing-games__game-description,
.page-fishing-games__step-description,
.page-fishing-games__item-description {
  font-size: 1rem;
  color: var(--Text-Secondary, #A7D9B8);
}

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

.page-fishing-games__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 15px;
}

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

.page-fishing-games__step-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  color: var(--Text-Secondary, #A7D9B8);
}

.page-fishing-games__list-item {
  background-color: var(--Card-B-G, #11271B);
  border: 1px solid var(--Divider, #1E3A2A);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
}

.page-fishing-games__list-item strong {
  color: var(--Gold, #F2C14E);
  margin-right: 10px;
  flex-shrink: 0;
}

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

.page-fishing-games__promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__promo-note {
  margin-top: 40px;
  font-size: 1rem;
}

.page-fishing-games__promo-note a {
  color: var(--Gold, #F2C14E);
  text-decoration: underline;
}

.page-fishing-games__promo-note a:hover {
  color: #ffffff;
}

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

.page-fishing-games__why-choose-item {
  text-align: left;
}

.page-fishing-games__cta-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__faq-item {
  background-color: var(--background, #08160F);
  border: 1px solid var(--Divider, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--Text-Main, #F2FFF6);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--Gold, #F2C14E);
  cursor: pointer;
  background-color: var(--Deep-Green, #0A4B2C);
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: var(--Deep-Green, #0A4B2C);
  opacity: 0.9;
}

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

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--Text-Secondary, #A7D9B8);
  line-height: 1.6;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  background-color: var(--Deep-Green, #0A4B2C);
  border-bottom: 1px solid var(--Divider, #1E3A2A);
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-item summary {
  list-style: none;
}

.page-fishing-games__final-cta-section .page-fishing-games__section-title {
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    min-height: 500px;
    padding-bottom: 40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }

  .page-fishing-games__section-title {
    font-size: 2rem;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__highlights-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__final-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-fishing-games__image-content,
  .page-fishing-games__card-image,
  .page-fishing-games__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games__container,
  .page-fishing-games__grid-container,
  .page-fishing-games__game-list,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__why-choose-grid,
  .page-fishing-games__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__list-item {
    font-size: 1rem;
    padding: 15px;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

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

  .page-fishing-games__cta-bottom {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
}

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

  .page-fishing-games__section-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__hero-description {
    font-size: 0.9rem;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}