/* style/game-lobby-poker.css */
.page-game-lobby-poker {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

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

.page-game-lobby-poker__section--dark-bg {
  background-color: #001f4d; /* Darker shade of primary blue */
  color: #fff;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__section-title,
.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__subsection-title,
.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__text {
  color: #fff;
}

.page-game-lobby-poker__section--gold-bg {
  background-color: #FFD700; /* Auxiliary color */
  color: #001f4d; /* Dark text for contrast */
}

.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__section-title,
.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__subsection-title,
.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__text {
  color: #001f4d;
}

.page-game-lobby-poker__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-lobby-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.page-game-lobby-poker__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-lobby-poker__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #007BFF;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__section-title {
  color: #FFD700; /* Gold title on dark blue */
}

.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__section-title {
  color: #001f4d; /* Dark blue title on gold */
}

.page-game-lobby-poker__subsection-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #007BFF;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__subsection-title {
  color: #FFD700;
}

.page-game-lobby-poker__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__text {
  color: #ccc;
}

.page-game-lobby-poker__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-game-lobby-poker__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23007BFF"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__list li {
  color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
}

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

.page-game-lobby-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-game-lobby-poker__btn--primary {
  background-color: #007BFF; /* Primary blue */
  color: #fff;
  border: 2px solid #007BFF;
}

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

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

.page-game-lobby-poker__btn--secondary:hover {
  background-color: #007BFF;
  color: #fff;
  transform: translateY(-2px);
}

.page-game-lobby-poker__btn--gold {
  background-color: #FFD700; /* Auxiliary gold */
  color: #001f4d; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

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

.page-game-lobby-poker__brand-highlight {
  color: #FFD700; /* Gold highlight for brand name */
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__brand-highlight {
  color: #FFD700;
}

.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__brand-highlight {
  color: #001f4d;
}

.page-game-lobby-poker__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-poker__image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-game-lobby-poker__game-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__game-card {
  background-color: #0a2d5c; /* Slightly lighter dark blue */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-poker__game-card-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-lobby-poker__section--dark-bg .page-game-lobby-poker__game-card-title {
  color: #FFD700;
}

.page-game-lobby-poker__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-game-lobby-poker__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-game-lobby-poker__feature-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__feature-item {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.page-game-lobby-poker__section--gold-bg .page-game-lobby-poker__feature-title {
  color: #001f4d;
}

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

.page-game-lobby-poker__step-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-game-lobby-poker__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #001f4d;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.page-game-lobby-poker__cta-section {
  background: linear-gradient(135deg, #0056b3, #007BFF);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.page-game-lobby-poker__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* 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__subsection-title {
    font-size: 1.8em;
  }

  .page-game-lobby-poker__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-poker__hero-title {
    font-size: 2.2em;
  }

  .page-game-lobby-poker__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-lobby-poker__section-title {
    font-size: 1.8em;
  }

  .page-game-lobby-poker__subsection-title {
    font-size: 1.5em;
  }

  .page-game-lobby-poker__text {
    font-size: 1em;
  }

  .page-game-lobby-poker__list li {
    font-size: 1em;
  }

  .page-game-lobby-poker__game-types,
  .page-game-lobby-poker__features,
  .page-game-lobby-poker__steps {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-poker__cta-title {
    font-size: 2em;
  }

  .page-game-lobby-poker__cta-text {
    font-size: 1.1em;
  }
}

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

  .page-game-lobby-poker__hero-subtitle {
    font-size: 1em;
  }

  .page-game-lobby-poker__section-title {
    font-size: 1.5em;
  }

  .page-game-lobby-poker__subsection-title {
    font-size: 1.3em;
  }

  .page-game-lobby-poker__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-poker__cta-title {
    font-size: 1.8em;
  }
}