/* style/game-lobby-fishing-games-collection.css */
.page-game-lobby-fishing-games-collection {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-game-lobby-fishing-games-collection__hero {
  background: linear-gradient(135deg, #0A1931 0%, #203657 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-lobby-fishing-games-collection__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  opacity: 0.3;
  z-index: 0;
}

.page-game-lobby-fishing-games-collection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-game-lobby-fishing-games-collection__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-lobby-fishing-games-collection__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  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;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

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

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

.page-game-lobby-fishing-games-collection__section--alt-bg {
  background-color: #1a2a47;
}

.page-game-lobby-fishing-games-collection__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-game-lobby-fishing-games-collection__section-intro {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-game-lobby-fishing-games-collection .highlight {
  color: #FFD700;
}

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

.page-game-lobby-fishing-games-collection__features-list li {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-fishing-games-collection__features-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-fishing-games-collection__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-fishing-games-collection__features-list h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-fishing-games-collection__features-list p {
  color: #E0E0E0;
  font-size: 1em;
}

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

.page-game-lobby-fishing-games-collection__game-card {
  background-color: #0A1931;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2a3d5f;
}

.page-game-lobby-fishing-games-collection__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: #FFD700;
}

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

.page-game-lobby-fishing-games-collection__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-game-lobby-fishing-games-collection__game-description {
  color: #E0E0E0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-game-lobby-fishing-games-collection__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

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

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

.page-game-lobby-fishing-games-collection__tip-item {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

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

.page-game-lobby-fishing-games-collection__tip-item p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-game-lobby-fishing-games-collection__text-block {
  text-align: left;
  margin-top: 40px;
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2a3d5f;
}

.page-game-lobby-fishing-games-collection__text-block p {
  color: #E0E0E0;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-game-lobby-fishing-games-collection__text-block p:last-child {
  margin-bottom: 0;
}

.page-game-lobby-fishing-games-collection__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-game-lobby-fishing-games-collection__promo-list li {
  background-color: #0A1931;
  padding: 20px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  border: 1px solid #2a3d5f;
}

.page-game-lobby-fishing-games-collection__promo-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: drop-shadow(0 0 3px #FFD700);
}

.page-game-lobby-fishing-games-collection__cta-button--gold {
  margin-top: 30px;
}

.page-game-lobby-fishing-games-collection__promo-image {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-collection__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-game-lobby-fishing-games-collection__steps-list li {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a3d5f;
  position: relative;
}

.page-game-lobby-fishing-games-collection__steps-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

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

.page-game-lobby-fishing-games-collection__steps-list p {
  color: #E0E0E0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-game-lobby-fishing-games-collection__small-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-game-lobby-fishing-games-collection__small-cta:hover {
  background-color: #e6c200;
}

.page-game-lobby-fishing-games-collection__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-game-lobby-fishing-games-collection__safety-list li {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2a3d5f;
  display: flex;
  align-items: flex-start;
}

.page-game-lobby-fishing-games-collection__safety-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px #FFD700);
}

.page-game-lobby-fishing-games-collection__safety-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-game-lobby-fishing-games-collection__safety-list li p {
  color: #E0E0E0;
  font-size: 0.95em;
  margin: 0;
}

.page-game-lobby-fishing-games-collection__faq {
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-fishing-games-collection__faq-item {
  background-color: #0A1931;
  border: 1px solid #2a3d5f;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-lobby-fishing-games-collection__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-game-lobby-fishing-games-collection__faq-question:hover {
  background-color: #1a2a47;
}

.page-game-lobby-fishing-games-collection__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-collection__faq-item.active .page-game-lobby-fishing-games-collection__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-fishing-games-collection__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-lobby-fishing-games-collection__faq-item.active .page-game-lobby-fishing-games-collection__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

.page-game-lobby-fishing-games-collection__faq-answer p {
  color: #E0E0E0;
  margin: 0;
  font-size: 1em;
}

.page-game-lobby-fishing-games-collection__final-cta {
  background: linear-gradient(90deg, #0A1931, #203657);
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-game-lobby-fishing-games-collection__final-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-lobby-fishing-games-collection__final-cta-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-lobby-fishing-games-collection__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-lobby-fishing-games-collection__cta-button--outline:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .page-game-lobby-fishing-games-collection__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby-fishing-games-collection__section-title {
    font-size: 2em;
  }
  .page-game-lobby-fishing-games-collection__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-fishing-games-collection__hero {
    padding: 80px 0 40px;
  }
  .page-game-lobby-fishing-games-collection__hero-title {
    font-size: 2.2em;
  }
  .page-game-lobby-fishing-games-collection__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-lobby-fishing-games-collection__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-lobby-fishing-games-collection__section {
    padding: 40px 0;
  }
  .page-game-lobby-fishing-games-collection__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games-collection__section-intro {
    font-size: 1em;
  }
  .page-game-lobby-fishing-games-collection__features-list,
  .page-game-lobby-fishing-games-collection__game-grid,
  .page-game-lobby-fishing-games-collection__tips-grid,
  .page-game-lobby-fishing-games-collection__promo-list,
  .page-game-lobby-fishing-games-collection__steps-list,
  .page-game-lobby-fishing-games-collection__safety-list {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-fishing-games-collection__final-cta-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games-collection__final-cta-subtitle {
    font-size: 1em;
  }
  .page-game-lobby-fishing-games-collection__cta-button--outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-fishing-games-collection__hero-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games-collection__section-title {
    font-size: 1.5em;
  }
  .page-game-lobby-fishing-games-collection__final-cta-title {
    font-size: 1.5em;
  }
  .page-game-lobby-fishing-games-collection__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-lobby-fishing-games-collection__faq-question::after {
    right: 20px;
  }
  .page-game-lobby-fishing-games-collection__faq-answer {
    padding: 10px 20px 20px;
  }
}