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

.page-game-lobby-popular-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-game-lobby-popular-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
}

.page-game-lobby-popular-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-game-lobby-popular-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-game-lobby-popular-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-lobby-popular-fishing-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-popular-fishing-games__hero-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-popular-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
}

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

.page-game-lobby-popular-fishing-games__introduction-section,
.page-game-lobby-popular-fishing-games__popular-games-section,
.page-game-lobby-popular-fishing-games__guide-section,
.page-game-lobby-popular-fishing-games__promotions-section,
.page-game-lobby-popular-fishing-games__faq-section,
.page-game-lobby-popular-fishing-games__call-to-action-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-game-lobby-popular-fishing-games__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-game-lobby-popular-fishing-games__section-description {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-lobby-popular-fishing-games__text-highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

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

.page-game-lobby-popular-fishing-games__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-popular-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__feature-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-lobby-popular-fishing-games__feature-card p {
  color: #A7D9B8;
  font-size: 1em;
}

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

.page-game-lobby-popular-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-popular-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-lobby-popular-fishing-games__game-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-lobby-popular-fishing-games__game-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-lobby-popular-fishing-games__game-title a:hover {
  color: #2AD16F;
}

.page-game-lobby-popular-fishing-games__game-description {
  color: #A7D9B8;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-lobby-popular-fishing-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-lobby-popular-fishing-games__game-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.page-game-lobby-popular-fishing-games__guide-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-popular-fishing-games__guide-icon {
  background-color: #22C768; /* Auxiliary Color */
  color: #08160F;
  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;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__guide-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-lobby-popular-fishing-games__guide-item p {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-game-lobby-popular-fishing-games__guide-image-container {
  margin-top: 60px;
  text-align: center;
}

.page-game-lobby-popular-fishing-games__guide-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-game-lobby-popular-fishing-games__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-popular-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__promo-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-lobby-popular-fishing-games__promo-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-lobby-popular-fishing-games__promo-card p {
  color: #A7D9B8;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-lobby-popular-fishing-games__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-lobby-popular-fishing-games__promo-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__view-all-promos-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-game-lobby-popular-fishing-games__view-all-promos-button:hover {
  background: #2AD16F;
  color: #08160F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__faq-list {
  margin-top: 40px;
}

details.page-game-lobby-popular-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

details.page-game-lobby-popular-fishing-games__faq-item summary.page-game-lobby-popular-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2FFF6;
  font-weight: 600;
}

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

details.page-game-lobby-popular-fishing-games__faq-item summary.page-game-lobby-popular-fishing-games__faq-question:hover {
  background: rgba(46, 122, 78, 0.3); /* Lighter shade of border for hover */
}

.page-game-lobby-popular-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6;
}

.page-game-lobby-popular-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #A7D9B8;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

details.page-game-lobby-popular-fishing-games__faq-item[open] .page-game-lobby-popular-fishing-games__faq-toggle {
  transform: rotate(45deg);
  color: #2AD16F;
}

details.page-game-lobby-popular-fishing-games__faq-item .page-game-lobby-popular-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  border-radius: 0 0 5px 5px;
  color: #A7D9B8;
  font-size: 1em;
}

.page-game-lobby-popular-fishing-games__faq-answer p a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-game-lobby-popular-fishing-games__view-all-faq-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-game-lobby-popular-fishing-games__view-all-faq-button:hover {
  background: #2AD16F;
  color: #08160F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-popular-fishing-games__call-to-action-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-game-lobby-popular-fishing-games__cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-game-lobby-popular-fishing-games__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
}

.page-game-lobby-popular-fishing-games__cta-button--secondary {
  background: #11271B; /* Card BG */
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-game-lobby-popular-fishing-games__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
  border-color: #2AD16F;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-lobby-popular-fishing-games__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-game-lobby-popular-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-popular-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-lobby-popular-fishing-games__hero-image img {
    border-radius: 4px;
  }
  
  .page-game-lobby-popular-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .page-game-lobby-popular-fishing-games__section-title {
    font-size: 1.8em;
  }
  
  .page-game-lobby-popular-fishing-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  
  .page-game-lobby-popular-fishing-games__features-grid,
  .page-game-lobby-popular-fishing-games__game-grid,
  .page-game-lobby-popular-fishing-games__guide-steps,
  .page-game-lobby-popular-fishing-games__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-game-lobby-popular-fishing-games__feature-card,
  .page-game-lobby-popular-fishing-games__game-card,
  .page-game-lobby-popular-fishing-games__guide-item,
  .page-game-lobby-popular-fishing-games__promo-card {
    padding: 20px;
  }
  
  .page-game-lobby-popular-fishing-games__feature-title,
  .page-game-lobby-popular-fishing-games__game-title,
  .page-game-lobby-popular-fishing-games__guide-title,
  .page-game-lobby-popular-fishing-games__promo-title {
    font-size: 1.2em;
  }
  
  .page-game-lobby-popular-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-lobby-popular-fishing-games__section,
  .page-game-lobby-popular-fishing-games__card,
  .page-game-lobby-popular-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-lobby-popular-fishing-games__cta-button,
  .page-game-lobby-popular-fishing-games__btn-primary,
  .page-game-lobby-popular-fishing-games__btn-secondary,
  .page-game-lobby-popular-fishing-games a[class*="button"],
  .page-game-lobby-popular-fishing-games 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-game-lobby-popular-fishing-games__cta-buttons-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  details.page-game-lobby-popular-fishing-games__faq-item summary.page-game-lobby-popular-fishing-games__faq-question {
    padding: 15px;
  }
  .page-game-lobby-popular-fishing-games__faq-qtext {
    font-size: 1em;
  }
  .page-game-lobby-popular-fishing-games__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  .page-game-lobby-popular-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-popular-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-game-lobby-popular-fishing-games__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-game-lobby-popular-fishing-games__container {
    padding-left: 10px;
    padding-right: 10px;
  }
}