.page-games-lobby-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #000D1A; /* Very dark blue, almost black */
}

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

.page-games-lobby-fishing-games__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #001F3F; /* Main brand color */
}

.page-games-lobby-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-games-lobby-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 31, 63, 0.7); /* Slightly transparent main color */
  border-radius: 10px;
}

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

.page-games-lobby-fishing-games__hero-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__hero-title a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-games-lobby-fishing-games__hero-description a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__hero-description a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color */
  color: #001F3F; /* Main brand color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-games-lobby-fishing-games__hero-button:hover {
  background-color: #E0B500; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-games-lobby-fishing-games__about,
.page-games-lobby-fishing-games__gameplay,
.page-games-lobby-fishing-games__fish-types,
.page-games-lobby-fishing-games__detail-pages,
.page-games-lobby-fishing-games__cta {
  padding: 80px 0;
  text-align: center;
}

.page-games-lobby-fishing-games__about {
  background-color: #001F3F;
}

.page-games-lobby-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-games-lobby-fishing-games__section-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__section-title a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0C4DE; /* Light blue-gray for intro text */
}

.page-games-lobby-fishing-games__section-intro a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__section-intro a:hover {
  text-decoration: underline;
}

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

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

.page-games-lobby-fishing-games__feature-item {
  background-color: #002D5B; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

.page-games-lobby-fishing-games__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-games-lobby-fishing-games__feature-description a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__feature-description a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__gameplay {
  background-color: #001A33;
}

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

.page-games-lobby-fishing-games__gameplay-item {
  background-color: #002D5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-games-lobby-fishing-games__gameplay-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-games-lobby-fishing-games__gameplay-item p {
  color: #E0E0E0;
}

.page-games-lobby-fishing-games__gameplay-item p a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__gameplay-item p a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__section-outro {
  margin-top: 50px;
  font-size: 1.1em;
  color: #B0C4DE;
}

.page-games-lobby-fishing-games__fish-types {
  background-color: #001F3F;
}

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

.page-games-lobby-fishing-games__fish-item {
  background-color: #002D5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-lobby-fishing-games__fish-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-games-lobby-fishing-games__fish-item p {
  color: #E0E0E0;
}

.page-games-lobby-fishing-games__detail-pages {
  background-color: #001A33;
}

.page-games-lobby-fishing-games__detail-list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-games-lobby-fishing-games__detail-item {
  background-color: #002D5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  text-align: left;
}

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

.page-games-lobby-fishing-games__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__detail-title a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__detail-description {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-games-lobby-fishing-games__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #001F3F;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-games-lobby-fishing-games__detail-button:hover {
  background-color: #E0B500;
}

.page-games-lobby-fishing-games__cta {
  background: linear-gradient(135deg, #001F3F, #000D1A);
  padding: 100px 0;
  color: #FFFFFF;
}

.page-games-lobby-fishing-games__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-lobby-fishing-games__cta-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__cta-title a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B0C4DE;
}

.page-games-lobby-fishing-games__cta-description a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lobby-fishing-games__cta-description a:hover {
  text-decoration: underline;
}

.page-games-lobby-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #001F3F;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin-right: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-games-lobby-fishing-games__cta-button a {
  color: #001F3F;
  text-decoration: none;
}

.page-games-lobby-fishing-games__cta-button:hover {
  background-color: #E0B500;
  transform: translateY(-5px);
}

.page-games-lobby-fishing-games__cta-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-games-lobby-fishing-games__cta-link:hover {
  background-color: #FFD700;
  color: #001F3F;
}

@media (max-width: 992px) {
  .page-games-lobby-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-lobby-fishing-games__section-title {
    font-size: 2.2em;
  }
  .page-games-lobby-fishing-games__features,
  .page-games-lobby-fishing-games__gameplay-grid,
  .page-games-lobby-fishing-games__fish-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-games-lobby-fishing-games__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-games-lobby-fishing-games__hero {
    height: 500px;
  }
  .page-games-lobby-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-lobby-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-games-lobby-fishing-games__about,
  .page-games-lobby-fishing-games__gameplay,
  .page-games-lobby-fishing-games__fish-types,
  .page-games-lobby-fishing-games__detail-pages,
  .page-games-lobby-fishing-games__cta {
    padding: 60px 0;
  }
  .page-games-lobby-fishing-games__section-title {
    font-size: 2em;
  }
  .page-games-lobby-fishing-games__feature-item,
  .page-games-lobby-fishing-games__gameplay-item,
  .page-games-lobby-fishing-games__fish-item {
    padding: 25px;
  }
  .page-games-lobby-fishing-games__cta-button {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-games-lobby-fishing-games__cta-link {
    display: block;
    margin: 0 auto;
    max-width: 200px;
  }
  .page-games-lobby-fishing-games__detail-list {
    flex-direction: column;
    align-items: center;
  }
  .page-games-lobby-fishing-games__detail-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-games-lobby-fishing-games__hero {
    height: 400px;
  }
  .page-games-lobby-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-games-lobby-fishing-games__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-lobby-fishing-games__about,
  .page-games-lobby-fishing-games__gameplay,
  .page-games-lobby-fishing-games__fish-types,
  .page-games-lobby-fishing-games__detail-pages,
  .page-games-lobby-fishing-games__cta {
    padding: 40px 0;
  }
  .page-games-lobby-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-games-lobby-fishing-games__features,
  .page-games-lobby-fishing-games__gameplay-grid,
  .page-games-lobby-fishing-games__fish-grid {
    grid-template-columns: 1fr;
  }
  .page-games-lobby-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-games-lobby-fishing-games__cta-button {
    font-size: 1.1em;
  }
}