/* style/game-lobby-fishing-games.css */
.page-game-lobby-fishing-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0;
  background-color: #0A2342;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-game-lobby-fishing-games__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A64 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

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

.page-game-lobby-fishing-games__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-game-lobby-fishing-games__hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.page-game-lobby-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby-fishing-games__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
  box-shadow: none;
}

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

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

.page-game-lobby-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-fishing-games__section-subtitle {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 60px;
}

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

.page-game-lobby-fishing-games__feature-item {
  background-color: #1A3A64;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

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

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

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

.page-game-lobby-fishing-games__feature-text {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-lobby-fishing-games__center-cta {
    margin-top: 60px;
}

.page-game-lobby-fishing-games__popular-games {
  background-color: #0A2342;
}

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

.page-game-lobby-fishing-games__game-card {
  background-color: #1A3A64;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.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.8em;
  color: #FFD700;
  margin: 20px 20px 10px;
}

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

.page-game-lobby-fishing-games__game-button {
  display: block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 12px 20px;
  border-radius: 0 0 15px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.page-game-lobby-fishing-games__game-button:hover {
  background-color: #E0B900;
}

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

.page-game-lobby-fishing-games__step-item {
  background-color: #1A3A64;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
  text-align: left;
}

.page-game-lobby-fishing-games__step-number {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-game-lobby-fishing-games__step-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 15px;
}

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

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

.page-game-lobby-fishing-games__tips {
  background-color: #0A2342;
}

.page-game-lobby-fishing-games__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-game-lobby-fishing-games__tip-list li {
  background-color: #1A3A64;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__tip-heading {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-lobby-fishing-games__tip-text {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-lobby-fishing-games__promotions {
  background-color: #1A3A64;
}

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

.page-game-lobby-fishing-games__promo-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games__promo-item:hover {
    transform: translateY(-5px);
}

.page-game-lobby-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

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

.page-game-lobby-fishing-games__promo-text {
    font-size: 1.05em;
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-game-lobby-fishing-games__promo-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-game-lobby-fishing-games__promo-button:hover {
    background-color: #E0B900;
}

.page-game-lobby-fishing-games__app-download {
  background-color: #0A2342;
  padding-bottom: 100px;
}

.page-game-lobby-fishing-games__app-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-game-lobby-fishing-games__cta-button--app {
  display: flex;
  align-items: center;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-fishing-games__cta-button--app .page-game-lobby-fishing-games__app-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: invert(1);
}

.page-game-lobby-fishing-games__app-screenshot {
  max-width: 600px;
  width: 100%;
  margin-top: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__faq {
  background-color: #1A3A64;
}

.page-game-lobby-fishing-games__faq-items {
  margin-top: 50px;
  text-align: left;
}

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

.page-game-lobby-fishing-games__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  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: 1.05em;
  color: #E0E0E0;
  margin-top: 15px;
  display: none;
}

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

.page-game-lobby-fishing-games__final-cta {
  background-color: #0A2342;
  padding: 100px 0;
  border-top: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__section-description {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-game-lobby-fishing-games__cta-button--primary {
  background-color: #FFD700;
  color: #0A2342;
  margin-right: 20px;
}

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

.page-game-lobby-fishing-games__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 0;
    box-shadow: none;
}

.page-game-lobby-fishing-games__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-lobby-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby-fishing-games__hero-description,
  .page-game-lobby-fishing-games__section-subtitle,
  .page-game-lobby-fishing-games__section-description {
    font-size: 1em;
  }
  .page-game-lobby-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-lobby-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin: 10px 0;
  }
  .page-game-lobby-fishing-games__cta-button--secondary {
      margin-left: 0;
      margin-top: 15px;
  }
  .page-game-lobby-fishing-games__feature-grid,
  .page-game-lobby-fishing-games__game-grid,
  .page-game-lobby-fishing-games__guide-steps,
  .page-game-lobby-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-fishing-games__app-buttons {
      flex-direction: column;
      align-items: center;
  }
  .page-game-lobby-fishing-games__cta-button--app {
      width: 80%;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-game-lobby-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-fishing-games__feature-heading,
  .page-game-lobby-fishing-games__game-title,
  .page-game-lobby-fishing-games__step-heading,
  .page-game-lobby-fishing-games__tip-heading,
  .page-game-lobby-fishing-games__promo-title,
  .page-game-lobby-fishing-games__faq-question {
    font-size: 1.4em;
  }
  .page-game-lobby-fishing-games__cta-button {
      width: 90%;
      margin: 10px auto;
  }
}