.page-game-lobby-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1D2B; /* A slightly lighter dark background than primary for contrast */
}

.page-game-lobby-fishing-games-hero {
  background: linear-gradient(135deg, #2A2E43 0%, #0F121C 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-game-lobby-fishing-games-hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding: 0 20px;
}

.page-game-lobby-fishing-games-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-game-lobby-fishing-games-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-lobby-fishing-games-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-lobby-fishing-games-subtitle {
  font-size: 1.5em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

.page-game-lobby-fishing-games-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-lobby-fishing-games-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-lobby-fishing-games-btn-primary {
  background-color: #FFD700; /* Auxiliary for primary button */
  color: #2A2E43; /* Primary color for text on auxiliary background */
}

.page-game-lobby-fishing-games-btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-game-lobby-fishing-games-btn-secondary {
  background-color: #2A2E43; /* Primary color for secondary button */
  color: #FFD700; /* Auxiliary for text on primary background */
  border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-btn-secondary:hover {
  background-color: #3C4257;
  transform: translateY(-3px);
}

.page-game-lobby-fishing-games-section {
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-fishing-games-section:nth-of-type(even) {
  background-color: #202436; /* Slightly different dark background for alternating sections */
}

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

.page-game-lobby-fishing-games-section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-lobby-fishing-games-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-lobby-fishing-games-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-game-lobby-fishing-games-highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-game-lobby-fishing-games-feature-item {
  background-color: #2A2E43;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-feature-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby-fishing-games-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-lobby-fishing-games-feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-fishing-games-feature-text {
  font-size: 1em;
  color: #A0A0A0;
  line-height: 1.6;
}

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

.page-game-lobby-fishing-games-game-card {
  background-color: #2A2E43;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-game-card:hover {
  transform: translateY(-10px);
}

.page-game-lobby-fishing-games-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-lobby-fishing-games-game-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-game-lobby-fishing-games-game-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-game-lobby-fishing-games-btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 0 20px 20px;
  background-color: #FFD700;
  color: #2A2E43;
  border-radius: 6px;
}

.page-game-lobby-fishing-games-btn-small:hover {
  background-color: #E6C200;
}

.page-game-lobby-fishing-games-more-games-text {
  margin-top: 50px;
  font-style: italic;
}

.page-game-lobby-fishing-games-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-lobby-fishing-games-link:hover {
  color: #E6C200;
  text-decoration: underline;
}

.page-game-lobby-fishing-games-tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.page-game-lobby-fishing-games-tips-list li {
  background-color: #2A2E43;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-game-lobby-fishing-games-tips-list li strong {
  color: #FFD700;
}

.page-game-lobby-fishing-games-strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-fishing-games-cta {
  background-color: #2A2E43;
  padding: 100px 0;
}

.page-game-lobby-fishing-games-cta .page-game-lobby-fishing-games-section-title {
  margin-bottom: 30px;
}

.page-game-lobby-fishing-games-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-game-lobby-fishing-games-faq-item {
  background-color: #2A2E43;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games-faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-lobby-fishing-games-faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
}

/* 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-title {
    font-size: 2.2em;
  }
  .page-game-lobby-fishing-games-features-grid, .page-game-lobby-fishing-games-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-lobby-fishing-games-hero {
    padding: 80px 0;
    min-height: 500px;
  }
  .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-hero-actions, .page-game-lobby-fishing-games-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby-fishing-games-btn {
    width: 80%;
    max-width: 300px;
  }
  .page-game-lobby-fishing-games-section {
    padding: 60px 0;
  }
  .page-game-lobby-fishing-games-section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games-text {
    font-size: 1em;
  }
  .page-game-lobby-fishing-games-feature-title, .page-game-lobby-fishing-games-game-title {
    font-size: 1.5em;
  }
  .page-game-lobby-fishing-games-faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-fishing-games-hero {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-game-lobby-fishing-games-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games-subtitle {
    font-size: 0.95em;
  }
  .page-game-lobby-fishing-games-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-lobby-fishing-games-section {
    padding: 40px 0;
  }
  .page-game-lobby-fishing-games-section-title {
    font-size: 1.6em;
  }
  .page-game-lobby-fishing-games-features-grid, .page-game-lobby-fishing-games-game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-fishing-games-feature-item, .page-game-lobby-fishing-games-game-card {
    margin: 0 10px;
  }
  .page-game-lobby-fishing-games-tips-list {
    margin: 30px auto;
  }
  .page-game-lobby-fishing-games-tips-list li {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-game-lobby-fishing-games-faq-item {
    padding: 20px;
  }
  .page-game-lobby-fishing-games-faq-question {
    font-size: 1.1em;
  }
}