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

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

.page-fishing-games-popular-titles__section {
  padding: 60px 0;
  position: relative;
}

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

.page-fishing-games-popular-titles__section-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-popular-titles__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-secondary-color);
}

/* Hero Section */
.page-fishing-games-popular-titles__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games-popular-titles__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-fishing-games-popular-titles__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-fishing-games-popular-titles__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual flow, but not text over image */
  padding: 0 20px;
}

.page-fishing-games-popular-titles__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-popular-titles__hero-description {
  font-size: 1.2em;
  color: var(--text-main-color);
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-popular-titles__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* Introduction Section */
.page-fishing-games-popular-titles__introduction-section {
  background-color: var(--background-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games-popular-titles__image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games-popular-titles__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-fishing-games-popular-titles__image--centered {
  display: block;
  margin: 40px auto 0 auto;
}

.page-fishing-games-popular-titles__feature-list {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-popular-titles__feature-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-fishing-games-popular-titles__list {
  list-style: none;
  padding: 0;
}

.page-fishing-games-popular-titles__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-secondary-color);
}

.page-fishing-games-popular-titles__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--glow-color);
  font-size: 1.2em;
  top: 0;
}

/* Top Games Section */
.page-fishing-games-popular-titles__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main-color);
}

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

.page-fishing-games-popular-titles__game-card {
  background-color: var(--deep-green-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-titles__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-popular-titles__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--border-color);
}

.page-fishing-games-popular-titles__game-card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin: 20px 10px 10px;
}

.page-fishing-games-popular-titles__game-card-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games-popular-titles__game-card-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games-popular-titles__game-card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games-popular-titles__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-popular-titles__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

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

.page-fishing-games-popular-titles__feature-item {
  background-color: var(--deep-green-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-titles__feature-item .page-fishing-games-popular-titles__feature-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-popular-titles__feature-description {
  color: var(--text-secondary-color);
  font-size: 1em;
}

/* Strategy Section */
.page-fishing-games-popular-titles__light-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

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

.page-fishing-games-popular-titles__strategy-item {
  background-color: var(--deep-green-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-titles__strategy-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-popular-titles__strategy-description {
  color: var(--text-secondary-color);
  font-size: 1em;
}

/* Promotions Section */
.page-fishing-games-popular-titles__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-popular-titles__promotion-list .page-fishing-games-popular-titles__list-item {
  margin-bottom: 20px;
}

/* Guide Section */
.page-fishing-games-popular-titles__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-titles__step-card {
  background-color: var(--deep-green-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-fishing-games-popular-titles__step-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-popular-titles__step-description {
  color: var(--text-secondary-color);
  font-size: 1em;
}

/* Security Section */
.page-fishing-games-popular-titles__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-popular-titles__security-list .page-fishing-games-popular-titles__list-item {
  margin-bottom: 20px;
}

/* FAQ Section */
.page-fishing-games-popular-titles__faq-list {
  margin-top: 40px;
}

.page-fishing-games-popular-titles__faq-item {
  background-color: var(--deep-green-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-fishing-games-popular-titles__faq-item[open] {
  background-color: var(--deep-green-color);
}

.page-fishing-games-popular-titles__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  color: var(--gold-color);
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  list-style: none;
}

.page-fishing-games-popular-titles__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-popular-titles__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color);
  margin-left: 15px;
}

.page-fishing-games-popular-titles__faq-item[open] .page-fishing-games-popular-titles__faq-toggle {
  content: '−';
}

.page-fishing-games-popular-titles__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: var(--text-secondary-color);
  line-height: 1.8;
}

/* Conclusion CTA Section */
.page-fishing-games-popular-titles__conclusion-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-popular-titles__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-popular-titles__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games-popular-titles__hero-content {
    margin-top: -80px;
    padding: 0 15px;
  }

  .page-fishing-games-popular-titles__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

  .page-fishing-games-popular-titles__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-popular-titles__cta-button,
  .page-fishing-games-popular-titles__game-card-button,
  .page-fishing-games-popular-titles a[class*="button"],
  .page-fishing-games-popular-titles 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;
    margin-bottom: 15px; /* For stacked buttons */
  }

  .page-fishing-games-popular-titles__image-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games-popular-titles__image-content-wrapper .page-fishing-games-popular-titles__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-titles__feature-list {
    min-width: unset;
    width: 100%;
  }

  .page-fishing-games-popular-titles__section-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 30px;
  }

  .page-fishing-games-popular-titles__text-block,
  .page-fishing-games-popular-titles__list-item,
  .page-fishing-games-popular-titles__game-card-description,
  .page-fishing-games-popular-titles__feature-description,
  .page-fishing-games-popular-titles__strategy-description,
  .page-fishing-games-popular-titles__step-description,
  .page-fishing-games-popular-titles__faq-answer p {
    font-size: 1em;
    padding: 0 5px;
  }

  .page-fishing-games-popular-titles__image,
  .page-fishing-games-popular-titles__game-card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-titles__section,
  .page-fishing-games-popular-titles__container,
  .page-fishing-games-popular-titles__game-card,
  .page-fishing-games-popular-titles__feature-item,
  .page-fishing-games-popular-titles__strategy-item,
  .page-fishing-games-popular-titles__step-card,
  .page-fishing-games-popular-titles__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-popular-titles__games-grid,
  .page-fishing-games-popular-titles__feature-grid,
  .page-fishing-games-popular-titles__strategy-grid,
  .page-fishing-games-popular-titles__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-popular-titles__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-fishing-games-popular-titles__faq-answer {
    padding: 0 15px 15px;
  }
}