/* style/fishing-games-latest-recommendations.css */

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

.page-fishing-games-latest-recommendations {
  color: var(--text-main);
  background-color: var(--body-bg);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games-latest-recommendations__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold-color);
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games-latest-recommendations__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-fishing-games-latest-recommendations__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-latest-recommendations__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  min-height: 600px;
}

.page-fishing-games-latest-recommendations__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

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

.page-fishing-games-latest-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games-latest-recommendations__hero-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games-latest-recommendations__hero-description {
  color: var(--text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

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

.page-fishing-games-latest-recommendations__btn-primary,
.page-fishing-games-latest-recommendations__btn-secondary,
.page-fishing-games-latest-recommendations__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games-latest-recommendations__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-latest-recommendations__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-latest-recommendations__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-fishing-games-latest-recommendations__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 20px;
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-fishing-games-latest-recommendations__btn-small:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games-latest-recommendations__introduction-section,
.page-fishing-games-latest-recommendations__why-g88-section,
.page-fishing-games-latest-recommendations__latest-games-section,
.page-fishing-games-latest-recommendations__tips-strategies-section,
.page-fishing-games-latest-recommendations__registration-section,
.page-fishing-games-latest-recommendations__cta-final-section {
  padding: 60px 0;
}

.page-fishing-games-latest-recommendations__promotions-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__section-title {
  color: var(--gold-color);
}

.page-fishing-games-latest-recommendations__dark-section .page-fishing-games-latest-recommendations__section-description {
  color: var(--text-secondary);
}

.page-fishing-games-latest-recommendations__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-latest-recommendations__image-text-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-fishing-games-latest-recommendations__block-image {
  flex: 1;
  min-width: 200px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-latest-recommendations__block-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-latest-recommendations__block-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-latest-recommendations__block-text {
  font-size: 1.1em;
  color: var(--text-secondary);
}

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

.page-fishing-games-latest-recommendations__feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-fishing-games-latest-recommendations__feature-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-latest-recommendations__feature-text {
  color: var(--text-secondary);
}

.page-fishing-games-latest-recommendations__advantage-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games-latest-recommendations__game-card {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-latest-recommendations__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-latest-recommendations__game-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-fishing-games-latest-recommendations__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games-latest-recommendations__game-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-latest-recommendations__game-description {
  color: var(--text-secondary);
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-fishing-games-latest-recommendations__strategy-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-fishing-games-latest-recommendations__strategy-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-latest-recommendations__strategy-text {
  color: var(--text-secondary);
}

.page-fishing-games-latest-recommendations__promotion-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  background-color: var(--deep-green);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-fishing-games-latest-recommendations__promotion-card:nth-child(odd) {
  flex-direction: row-reverse;
}

.page-fishing-games-latest-recommendations__promotion-image {
  flex: 1;
  min-width: 200px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-latest-recommendations__promotion-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-latest-recommendations__promotion-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-latest-recommendations__promotion-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

.page-fishing-games-latest-recommendations__step-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-fishing-games-latest-recommendations__step-icon {
  background: var(--button-gradient);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-latest-recommendations__step-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-fishing-games-latest-recommendations__step-text {
  color: var(--text-secondary);
}

.page-fishing-games-latest-recommendations__registration-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-latest-recommendations__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-fishing-games-latest-recommendations__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-latest-recommendations__faq-item {
  background-color: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-fishing-games-latest-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
}

.page-fishing-games-latest-recommendations__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-fishing-games-latest-recommendations__faq-item[open] > .page-fishing-games-latest-recommendations__faq-question {
  background-color: var(--primary-color);
}

.page-fishing-games-latest-recommendations__faq-item[open] > .page-fishing-games-latest-recommendations__faq-question .page-fishing-games-latest-recommendations__faq-toggle {
  color: #ffffff;
}

/* Hide default details marker */
.page-fishing-games-latest-recommendations__faq-item > summary::-webkit-details-marker {
  display: none;
}
.page-fishing-games-latest-recommendations__faq-item > summary {
  list-style: none;
}

.page-fishing-games-latest-recommendations__cta-final-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--body-bg);
}

.page-fishing-games-latest-recommendations__cta-buttons-final {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games-latest-recommendations__section-title {
    font-size: 2em;
  }
  .page-fishing-games-latest-recommendations__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-latest-recommendations__image-text-block {
    flex-direction: column;
  }
  .page-fishing-games-latest-recommendations__image-text-block:nth-child(even) {
    flex-direction: column;
  }
  .page-fishing-games-latest-recommendations__block-image,
  .page-fishing-games-latest-recommendations__promotion-image {
    max-width: 100%;
  }
  .page-fishing-games-latest-recommendations__promotion-card {
    flex-direction: column;
  }
  .page-fishing-games-latest-recommendations__promotion-card:nth-child(odd) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-latest-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games-latest-recommendations__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-latest-recommendations__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-fishing-games-latest-recommendations__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-latest-recommendations__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-latest-recommendations__hero-cta-buttons,
  .page-fishing-games-latest-recommendations__cta-buttons-final {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games-latest-recommendations__btn-primary,
  .page-fishing-games-latest-recommendations__btn-secondary,
  .page-fishing-games-latest-recommendations__btn-small,
  .page-fishing-games-latest-recommendations a[class*="button"],
  .page-fishing-games-latest-recommendations 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-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-latest-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-latest-recommendations video,
  .page-fishing-games-latest-recommendations__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-latest-recommendations__video-section,
  .page-fishing-games-latest-recommendations__video-container,
  .page-fishing-games-latest-recommendations__video-wrapper,
  .page-fishing-games-latest-recommendations__section,
  .page-fishing-games-latest-recommendations__card,
  .page-fishing-games-latest-recommendations__container,
  .page-fishing-games-latest-recommendations__cta-buttons,
  .page-fishing-games-latest-recommendations__button-group,
  .page-fishing-games-latest-recommendations__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-latest-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-latest-recommendations__block-title,
  .page-fishing-games-latest-recommendations__feature-title,
  .page-fishing-games-latest-recommendations__game-title,
  .page-fishing-games-latest-recommendations__strategy-title,
  .page-fishing-games-latest-recommendations__promotion-title,
  .page-fishing-games-latest-recommendations__step-title {
    font-size: 1.3em;
  }
  .page-fishing-games-latest-recommendations__faq-question {
    font-size: 1em;
  }
  .page-fishing-games-latest-recommendations__faq-toggle {
    font-size: 1.2em;
  }
}