/* style/game-lobby-fishing-games.css */
.page-game-lobby-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #000080; /* Navy Blue for main text */
  background-color: #F0F8FF; /* Light background for readability */
  line-height: 1.6;
}

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

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

.page-game-lobby-fishing-games__section:nth-of-type(even) {
  background-color: rgba(255, 215, 0, 0.05); /* Very light gold tint */
}

.page-game-lobby-fishing-games__heading {
  font-size: 2.8em;
  color: #000080; /* Navy Blue for headings */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-game-lobby-fishing-games__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-lobby-fishing-games__text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-game-lobby-fishing-games__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-lobby-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Navy Blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-fishing-games__btn--secondary {
  background-color: #000080; /* Navy Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.3);
}

.page-game-lobby-fishing-games__btn--secondary:hover {
  background-color: #000066;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 128, 0.5);
}

.page-game-lobby-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-game-lobby-fishing-games__link {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-lobby-fishing-games__link:hover {
  color: #FFD700;
}

/* Hero Section */
.page-game-lobby-fishing-games__hero {
  background: linear-gradient(135deg, #000080 0%, #00004d 100%); /* Dark gradient */
  color: #FFD700; /* Gold text on dark background */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-game-lobby-fishing-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-lobby-fishing-games__hero-subtitle {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0e68c; /* Lighter gold for subtitle */
}

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

.page-game-lobby-fishing-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  overflow: hidden;
}

.page-game-lobby-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-game-lobby-fishing-games__hero .page-game-lobby-fishing-games__container {
  position: relative;
  z-index: 1;
}

/* Features Section (Why 32win) */
.page-game-lobby-fishing-games__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-fishing-games__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

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

.page-game-lobby-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-fishing-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-game-lobby-fishing-games__game-title {
  font-size: 1.8em;
  color: #000080;
  margin: 20px 0 10px;
  font-weight: 700;
}

.page-game-lobby-fishing-games__game-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
}

.page-game-lobby-fishing-games__text--more-games {
  margin-top: 40px;
  font-style: italic;
  color: #666;
}

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

.page-game-lobby-fishing-games__tip-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-fishing-games__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
}

.page-game-lobby-fishing-games__tip-title::before {
  content: '⚡'; /* Or any relevant icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  color: #000080;
}

.page-game-lobby-fishing-games__tip-description {
  font-size: 1em;
  color: #555;
}

.page-game-lobby-fishing-games__tips-image {
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Promotions Section */
.page-game-lobby-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-game-lobby-fishing-games__promo-list li {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 50px;
}

.page-game-lobby-fishing-games__promo-list li::before {
  content: '🎁'; /* Gift icon */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

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

.page-game-lobby-fishing-games__cta-wrapper {
  margin-top: 40px;
}

.page-game-lobby-fishing-games__promo-image {
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Get Started Section */
.page-game-lobby-fishing-games__steps-grid {
  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;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.page-game-lobby-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #000080;
}

.page-game-lobby-fishing-games__step-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 10px;
}

.page-game-lobby-fishing-games__step-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-game-lobby-fishing-games__steps-image {
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* FAQ Section */
.page-game-lobby-fishing-games__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-game-lobby-fishing-games__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-game-lobby-fishing-games__faq-question {
  font-size: 1.3em;
  color: #000080;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-game-lobby-fishing-games__faq-answer {
  font-size: 1em;
  color: #555;
  padding-top: 10px;
  display: none;
  line-height: 1.7;
}

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

/* Conclusion Section */
.page-game-lobby-fishing-games__section--conclusion {
  background: linear-gradient(135deg, #000080 0%, #00004d 100%);
  color: #FFFFFF;
  padding: 80px 0;
}

.page-game-lobby-fishing-games__section--conclusion .page-game-lobby-fishing-games__heading {
  color: #FFD700;
}

.page-game-lobby-fishing-games__section--conclusion .page-game-lobby-fishing-games__text {
  color: #e0e0e0;
}

.page-game-lobby-fishing-games__section--conclusion .page-game-lobby-fishing-games__btn--primary {
  background-color: #FFD700;
  color: #000080;
}

.page-game-lobby-fishing-games__section--conclusion .page-game-lobby-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  color: #000066;
}

/* Floating CTA */
.page-game-lobby-fishing-games__floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.page-game-lobby-fishing-games__floating-btn {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Navy Blue */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.page-game-lobby-fishing-games__floating-btn:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.7);
}

.page-game-lobby-fishing-games__floating-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

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