/* style/game-lobby-poker.css */
.page-game-lobby-poker {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-game-lobby-poker__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3A4750 100%); /* Dark gradient for depth */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-poker__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-lobby-poker__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-poker__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

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

.page-game-lobby-poker__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  z-index: 0;
}

.page-game-lobby-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

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

.page-game-lobby-poker__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

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

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

.page-game-lobby-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

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

/* Section Titles */
.page-game-lobby-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-lobby-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* General Text */
.page-game-lobby-poker__text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  text-align: justify;
}

/* Intro Section */
.page-game-lobby-poker__intro {
  padding: 60px 0;
  background-color: #242B38;
}

/* Games List Section */
.page-game-lobby-poker__games-list {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-game-lobby-poker__game-card {
  background-color: #242B38;
  border-radius: 12px;
  overflow: hidden;
  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;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-game-lobby-poker__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-game-lobby-poker__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-game-lobby-poker__game-card-description {
  font-size: 0.95em;
  color: #A0A0A0;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Section */
.page-game-lobby-poker__features {
  padding: 80px 0;
  background-color: #242B38;
}

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

.page-game-lobby-poker__feature-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-game-lobby-poker__feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

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

.page-game-lobby-poker__feature-description {
  font-size: 0.95em;
  color: #A0A0A0;
}

/* How to Start Section */
.page-game-lobby-poker__how-to-start {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-game-lobby-poker__step-item {
  background-color: #242B38;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-poker__step-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 25px auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

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

.page-game-lobby-poker__step-description {
  font-size: 1em;
  color: #A0A0A0;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Strategy Section */
.page-game-lobby-poker__strategy {
  padding: 80px 0;
  background-color: #242B38;
}

.page-game-lobby-poker__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-lobby-poker__strategy-list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.05em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-poker__strategy-list li strong {
  color: #FFD700;
}

/* FAQ Section */
.page-game-lobby-poker__faq {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-game-lobby-poker__faq-item {
  background-color: #242B38;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-poker__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-game-lobby-poker__faq-answer {
  font-size: 1em;
  color: #A0A0A0;
  display: block; /* Ensure visibility */
}

/* Call to Action Section */
.page-game-lobby-poker__cta {
  padding: 80px 0;
  background-color: #3A4750; /* Slightly lighter dark background */
  text-align: center;
}

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

.page-game-lobby-poker__cta-description {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-poker__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby-poker__section-title {
    font-size: 2.2em;
  }
  .page-game-lobby-poker__game-grid, 
  .page-game-lobby-poker__feature-grid, 
  .page-game-lobby-poker__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-lobby-poker__hero {
    padding: 60px 15px;
  }
  .page-game-lobby-poker__hero-title {
    font-size: 2.2em;
  }
  .page-game-lobby-poker__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-lobby-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby-poker__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-game-lobby-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-lobby-poker__cta-title {
    font-size: 2.2em;
  }
  .page-game-lobby-poker__cta-description {
    font-size: 1em;
  }
  .page-game-lobby-poker__game-card, 
  .page-game-lobby-poker__feature-item, 
  .page-game-lobby-poker__step-item {
    padding: 20px;
  }
  .page-game-lobby-poker__game-card-title, 
  .page-game-lobby-poker__feature-title, 
  .page-game-lobby-poker__step-title {
    font-size: 1.5em;
  }
  .page-game-lobby-poker__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-poker__hero-title {
    font-size: 1.8em;
  }
  .page-game-lobby-poker__hero-subtitle {
    font-size: 0.95em;
  }
  .page-game-lobby-poker__section-title {
    font-size: 1.6em;
  }
  .page-game-lobby-poker__cta-title {
    font-size: 1.8em;
  }
}