/* style/game-lobby-fishing-games.css */
.page-game-lobby-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-game-lobby-fishing-games .highlight {
  color: #007BFF;
}

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

/* Hero Section */
.page-game-lobby-fishing-games__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px; /* Minimum height for hero */
}

.page-game-lobby-fishing-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,ocean,light_effect]') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 1;
}

.page-game-lobby-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-game-lobby-fishing-games__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-lobby-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #0056b3; /* Darker blue for text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-lobby-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.page-game-lobby-fishing-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-game-lobby-fishing-games__section-heading {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 60px;
}

.page-game-lobby-fishing-games__introduction,
.page-game-lobby-fishing-games__gameplay-guide,
.page-game-lobby-fishing-games__tips-tricks,
.page-game-lobby-fishing-games__why-choose,
.page-game-lobby-fishing-games__faq,
.page-game-lobby-fishing-games__conclusion {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-fishing-games__introduction:nth-of-type(even),
.page-game-lobby-fishing-games__tips-tricks:nth-of-type(even),
.page-game-lobby-fishing-games__faq:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-game-lobby-fishing-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-game-lobby-fishing-games__text-content--bold {
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  color: #333;
}

/* Feature Grid */
.page-game-lobby-fishing-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-game-lobby-fishing-games__feature-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-game-lobby-fishing-games__feature-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-lobby-fishing-games__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-game-lobby-fishing-games__cta-button--secondary {
  background-color: #007BFF;
  color: #ffffff;
  margin-top: 40px;
}

.page-game-lobby-fishing-games__cta-button--secondary:hover {
  background-color: #0056b3;
}

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

.page-game-lobby-fishing-games__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__step-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-game-lobby-fishing-games__step-item h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-lobby-fishing-games__step-item p {
  color: #666;
  font-size: 1em;
}

.page-game-lobby-fishing-games__inline-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: 10px;
  display: inline-block;
}

.page-game-lobby-fishing-games__inline-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Tips & Tricks */
.page-game-lobby-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-fishing-games__tip-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-lobby-fishing-games__tip-image {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: saturate(1.2) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
}

.page-game-lobby-fishing-games__tip-item h3 {
  font-size: 1.3em;
  color: #FFD700; /* Gold for tips */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-fishing-games__tip-item p {
  color: #555;
  font-size: 0.95em;
}

/* Why Choose Section */
.page-game-lobby-fishing-games__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-game-lobby-fishing-games__advantage-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.page-game-lobby-fishing-games__advantage-item:hover {
  background-color: #e0f0ff;
}

.page-game-lobby-fishing-games__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-game-lobby-fishing-games__advantage-item h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-lobby-fishing-games__advantage-item p {
  color: #666;
  font-size: 1em;
}

/* FAQ Section */
.page-game-lobby-fishing-games__faq {
  background-color: #f9f9f9;
}

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

.page-game-lobby-fishing-games__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-fishing-games__faq-item h3 {
  font-size: 1.25em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-fishing-games__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

.page-game-lobby-fishing-games__faq-item p {
  color: #555;
  font-size: 1em;
  display: none; /* Hidden by default, JS will toggle */
  padding-top: 10px;
}

.page-game-lobby-fishing-games__faq-item.active h3::after {
  content: '-';
}

.page-game-lobby-fishing-games__faq-item.active p {
  display: block;
}

/* Conclusion Section */
.page-game-lobby-fishing-games__conclusion {
  text-align: center;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  border-radius: 10px;
  margin-bottom: 0; /* No margin at the bottom for final section */
}

.page-game-lobby-fishing-games__conclusion .page-game-lobby-fishing-games__section-heading {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-game-lobby-fishing-games__conclusion .page-game-lobby-fishing-games__text-content {
  color: #e0f0ff;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-lobby-fishing-games__cta-button--primary {
  background-color: #FFD700;
  color: #0056b3;
}

.page-game-lobby-fishing-games__cta-button--primary:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-fishing-games__title {
    font-size: 2.8em;
  }

  .page-game-lobby-fishing-games__subtitle {
    font-size: 1.3em;
  }

  .page-game-lobby-fishing-games__section-heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-fishing-games__hero {
    padding: 60px 0;
  }

  .page-game-lobby-fishing-games__title {
    font-size: 2.2em;
  }

  .page-game-lobby-fishing-games__subtitle {
    font-size: 1.1em;
  }

  .page-game-lobby-fishing-games__section-heading {
    font-size: 1.8em;
  }

  .page-game-lobby-fishing-games__hero-image-wrapper {
    margin-top: 20px;
  }

  .page-game-lobby-fishing-games__feature-grid,
  .page-game-lobby-fishing-games__guide-steps,
  .page-game-lobby-fishing-games__tips-grid,
  .page-game-lobby-fishing-games__advantages-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-fishing-games__introduction,
  .page-game-lobby-fishing-games__gameplay-guide,
  .page-game-lobby-fishing-games__tips-tricks,
  .page-game-lobby-fishing-games__why-choose,
  .page-game-lobby-fishing-games__faq,
  .page-game-lobby-fishing-games__conclusion {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-fishing-games__title {
    font-size: 1.8em;
  }

  .page-game-lobby-fishing-games__subtitle {
    font-size: 1em;
  }

  .page-game-lobby-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-fishing-games__section-heading {
    font-size: 1.5em;
  }

  .page-game-lobby-fishing-games__text-content {
    font-size: 0.95em;
  }

  .page-game-lobby-fishing-games__feature-item,
  .page-game-lobby-fishing-games__step-item,
  .page-game-lobby-fishing-games__tip-item,
  .page-game-lobby-fishing-games__advantage-item,
  .page-game-lobby-fishing-games__faq-item {
    padding: 20px;
  }

  .page-game-lobby-fishing-games__feature-item h3,
  .page-game-lobby-fishing-games__step-item h3,
  .page-game-lobby-fishing-games__tip-item h3,
  .page-game-lobby-fishing-games__advantage-item h3,
  .page-game-lobby-fishing-games__faq-item h3 {
    font-size: 1.1em;
  }
}