/* style/fishing-games-new-releases.css */
.page-fishing-games-new-releases {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games-new-releases__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;
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-fishing-games-new-releases__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-fishing-games-new-releases__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games-new-releases__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-fishing-games-new-releases__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-fishing-games-new-releases__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-new-releases__btn-primary,
.page-fishing-games-new-releases__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-new-releases__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-new-releases__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-new-releases__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-fishing-games-new-releases__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
}

.page-fishing-games-new-releases__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games-new-releases__text-block {
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-new-releases__introduction-section,
.page-fishing-games-new-releases__games-showcase-section,
.page-fishing-games-new-releases__guide-section,
.page-fishing-games-new-releases__promotions-section,
.page-fishing-games-new-releases__benefits-section,
.page-fishing-games-new-releases__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-fishing-games-new-releases__features-grid,
.page-fishing-games-new-releases__game-cards-grid,
.page-fishing-games-new-releases__guide-steps-grid,
.page-fishing-games-new-releases__promo-grid,
.page-fishing-games-new-releases__benefits-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-new-releases__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-fishing-games-new-releases__game-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-fishing-games-new-releases__guide-steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-fishing-games-new-releases__promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-fishing-games-new-releases__benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-fishing-games-new-releases__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games-new-releases__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-fishing-games-new-releases__feature-title,
.page-fishing-games-new-releases__game-title,
.page-fishing-games-new-releases__step-title,
.page-fishing-games-new-releases__promo-title,
.page-fishing-games-new-releases__benefit-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-fishing-games-new-releases__game-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-fishing-games-new-releases__game-title a:hover {
  text-decoration: underline;
  color: #57E38D; /* Glow */
}

.page-fishing-games-new-releases__feature-list,
.page-fishing-games-new-releases__game-description,
.page-fishing-games-new-releases__step-description,
.page-fishing-games-new-releases__promo-description,
.page-fishing-games-new-releases__benefit-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-fishing-games-new-releases__feature-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games-new-releases__feature-list li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-fishing-games-new-releases__game-image,
.page-fishing-games-new-releases__promo-image,
.page-fishing-games-new-releases__benefit-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games-new-releases__guide-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-new-releases__step-number {
  background-color: #2AD16F;
  color: #F2FFF6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-new-releases__btn-text {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-fishing-games-new-releases__btn-text:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-fishing-games-new-releases__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games-new-releases__benefit-item {
  position: relative;
  text-align: center;
  padding-bottom: 20px; /* Adjust if image is inside */
}

.page-fishing-games-new-releases__benefit-item .page-fishing-games-new-releases__benefit-image {
  margin-top: 20px;
}

.page-fishing-games-new-releases__faq-list {
  margin-top: 40px;
}

.page-fishing-games-new-releases__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
}

.page-fishing-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games-new-releases__faq-question:hover {
  color: #57E38D; /* Glow */
}

.page-fishing-games-new-releases__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-fishing-games-new-releases__faq-answer {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding-top: 15px;
  line-height: 1.7;
}

/* Details tag specific CSS for FAQ */
.page-fishing-games-new-releases__faq-item[open] .page-fishing-games-new-releases__faq-toggle {
  content: '−';
}

.page-fishing-games-new-releases__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-new-releases__faq-item summary {
  list-style: none;
}

.page-fishing-games-new-releases__faq-item .page-fishing-games-new-releases__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

.page-fishing-games-new-releases__faq-item .page-fishing-games-new-releases__faq-answer a {
  color: #57E38D;
  text-decoration: underline;
}

.page-fishing-games-new-releases__faq-item .page-fishing-games-new-releases__faq-answer a:hover {
  color: #F2C14E;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-new-releases__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-fishing-games-new-releases__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-fishing-games-new-releases__features-grid,
  .page-fishing-games-new-releases__game-cards-grid,
  .page-fishing-games-new-releases__guide-steps-grid,
  .page-fishing-games-new-releases__promo-grid,
  .page-fishing-games-new-releases__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games-new-releases {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-new-releases__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-new-releases__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games-new-releases__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games-new-releases__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games-new-releases__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-new-releases__btn-primary,
  .page-fishing-games-new-releases__btn-secondary,
  .page-fishing-games-new-releases a[class*="button"],
  .page-fishing-games-new-releases a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-fishing-games-new-releases__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games-new-releases__text-block {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-fishing-games-new-releases__introduction-section,
  .page-fishing-games-new-releases__games-showcase-section,
  .page-fishing-games-new-releases__guide-section,
  .page-fishing-games-new-releases__promotions-section,
  .page-fishing-games-new-releases__benefits-section,
  .page-fishing-games-new-releases__faq-section {
    padding: 40px 0;
  }

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

  .page-fishing-games-new-releases__section,
  .page-fishing-games-new-releases__card,
  .page-fishing-games-new-releases__container,
  .page-fishing-games-new-releases__video-section,
  .page-fishing-games-new-releases__video-container,
  .page-fishing-games-new-releases__video-wrapper,
  .page-fishing-games-new-releases__cta-buttons,
  .page-fishing-games-new-releases__button-group,
  .page-fishing-games-new-releases__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-new-releases__game-card,
  .page-fishing-games-new-releases__promo-card,
  .page-fishing-games-new-releases__benefit-item,
  .page-fishing-games-new-releases__guide-step {
    padding: 20px;
  }

  .page-fishing-games-new-releases__faq-question {
    font-size: 1rem;
  }

  .page-fishing-games-new-releases__faq-toggle {
    font-size: 1.2rem;
  }

  .page-fishing-games-new-releases__faq-answer {
    font-size: 0.9rem;
  }
}