/* style/game-lobby.css */
.page-game-lobby {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main brand color */
}

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

.page-game-lobby__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4c 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-lobby__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,gaming_pattern,subtle]') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.page-game-lobby__hero-section > div {
  position: relative;
  z-index: 1;
}

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

.page-game-lobby__brand-name {
  color: #FFD700;
  font-weight: bold;
}

.page-game-lobby__hero-description {
  font-size: 1.3em;
  color: #CBD5E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-lobby__btn--primary {
  background-color: #FFD700; /* Auxiliary brand color */
  color: #1A202C; /* Main brand color */
}

.page-game-lobby__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-lobby__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-lobby__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-game-lobby__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-game-lobby__section-description {
  font-size: 1.1em;
  color: #A0AEC0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.page-game-lobby__overview-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby__game-categories {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-lobby__category-card {
  background-color: #2D3748; /* Slightly lighter dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-game-lobby__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  filter: brightness(0.9);
}

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

.page-game-lobby__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-lobby__card-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-game-lobby__card-description {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-lobby__card-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-game-lobby__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-lobby__btn--outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-game-lobby__why-choose-us-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-lobby__feature-item {
  background-color: #2D3748;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

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

.page-game-lobby__feature-description {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
}

.page-game-lobby__get-started-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-game-lobby__step-item {
  background-color: #2D3748;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.page-game-lobby__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-lobby__step-description {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
}

.page-game-lobby__cta-bottom {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-lobby__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-lobby__faq-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-lobby__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-game-lobby__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-lobby__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-lobby__faq-answer {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-game-lobby__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 10px;
}

.page-game-lobby__cta-final {
  padding: 80px 0 100px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-game-lobby__btn--hero {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-lobby__hero-title {
    font-size: 3em;
  }
  .page-game-lobby__section-title {
    font-size: 2.4em;
  }
  .page-game-lobby__category-grid,
  .page-game-lobby__features-grid,
  .page-game-lobby__steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-lobby__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby__hero-description {
    font-size: 1.1em;
  }
  .page-game-lobby__section-title {
    font-size: 2em;
  }
  .page-game-lobby__hero-cta-group,
  .page-game-lobby__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-lobby__btn--large {
    width: 90%;
  }
  .page-game-lobby__category-card,
  .page-game-lobby__feature-item,
  .page-game-lobby__step-item {
    padding: 25px;
  }
  .page-game-lobby__card-title {
    font-size: 1.6em;
  }
  .page-game-lobby__feature-title,
  .page-game-lobby__step-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby__hero-title {
    font-size: 2em;
  }
  .page-game-lobby__hero-description {
    font-size: 1em;
  }
  .page-game-lobby__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 95%;
  }
  .page-game-lobby__btn--large {
    font-size: 1.1em;
  }
  .page-game-lobby__category-card,
  .page-game-lobby__feature-item,
  .page-game-lobby__step-item {
    padding: 20px;
  }
  .page-game-lobby__card-title {
    font-size: 1.4em;
  }
  .page-game-lobby__feature-title,
  .page-game-lobby__step-title {
    font-size: 1.2em;
  }
}