.page-game-lobby {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-game-lobby__section-title {
  font-size: 2.8em;
  color: #0056b3; /* Darker blue for contrast on light background */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-lobby__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-game-lobby__brand-highlight {
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-game-lobby__text-light {
  color: #e0e0e0;
}

.page-game-lobby__text-dark {
  color: #333333;
}

/* Buttons */
.page-game-lobby__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-game-lobby__btn--primary {
  background-color: #007BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.page-game-lobby__btn--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
}

.page-game-lobby__btn--secondary {
  background-color: #6c757d;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.page-game-lobby__btn--secondary:hover {
  background-color: #5a6268;
  box-shadow: 0 6px 12px rgba(108, 117, 125, 0.4);
}

.page-game-lobby__btn--outline {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-game-lobby__btn--outline:hover {
  background-color: #007BFF;
  color: #FFFFFF;
}

.page-game-lobby__btn--dark {
  background-color: #333333;
  color: #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__btn--dark:hover {
  background-color: #1a1a1a;
  color: #FFD700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-game-lobby__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

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

.page-game-lobby__btn--xl {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 300px;
}

.page-game-lobby__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-game-lobby__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Deeper blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #FFD700;
}

.page-game-lobby__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-game-lobby__hero-description {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
  opacity: 0.9;
}

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

/* About Hit Club Section */
.page-game-lobby__about-hitclub {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-game-lobby__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-game-lobby__about-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

/* Game Categories Section */
.page-game-lobby__game-categories {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.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: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  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(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-lobby__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
}

.page-game-lobby__category-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-game-lobby__category-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Features Section */
.page-game-lobby__features {
  padding: 80px 0;
  background-color: #007BFF; /* Main color as background */
  color: #FFFFFF;
}

.page-game-lobby__section-bg-dark .page-game-lobby__section-title {
  color: #FFFFFF;
}

.page-game-lobby__section-bg-dark .page-game-lobby__section-subtitle {
  color: #e0e0e0;
}

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

.page-game-lobby__feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-lobby__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-game-lobby__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-lobby__center-cta {
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-game-lobby__guide {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-game-lobby__step-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-game-lobby__step-item:hover {
  border-color: #007BFF;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1);
}

.page-game-lobby__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

/* Promotions Section */
.page-game-lobby__promotions {
  padding: 80px 0;
  background-color: #FFD700; /* Gold background */
  color: #333333;
}

.page-game-lobby__section-bg-gold .page-game-lobby__section-title {
  color: #0056b3; /* Dark blue for contrast */
}

.page-game-lobby__section-bg-gold .page-game-lobby__section-subtitle {
  color: #444444;
}

.page-game-lobby__promotions-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-game-lobby__promotions-content {
  flex: 1;
}

.page-game-lobby__promotions-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-lobby__promotions-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-game-lobby__promotions-content li {
  margin-bottom: 10px;
}

.page-game-lobby__promotions-image {
  flex: 1;
  text-align: center;
}

/* Safety Section */
.page-game-lobby__safety {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-game-lobby__safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-game-lobby__safety-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

/* Final CTA Section */
.page-game-lobby__cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #FFFFFF;
  text-align: center;
}

.page-game-lobby__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-game-lobby__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

/* Sticky CTA Button */
.page-game-lobby__sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-game-lobby__sticky-btn {
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-game-lobby__sticky-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-lobby__sticky-icon {
  font-size: 1.5em;
}

.page-game-lobby__sticky-arrow {
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby__hero-description {
    font-size: 1.2em;
  }
  .page-game-lobby__about-grid, .page-game-lobby__safety-grid, .page-game-lobby__promotions-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-game-lobby__about-image, .page-game-lobby__safety-image, .page-game-lobby__promotions-image {
    order: -1; /* Image first on mobile */
  }
  .page-game-lobby__section-title {
    font-size: 2.2em;
  }
  .page-game-lobby__section-subtitle {
    font-size: 1em;
  }
  .page-game-lobby__cta-title {
    font-size: 2.5em;
  }
  .page-game-lobby__cta-description {
    font-size: 1.1em;
  }
  .page-game-lobby__btn--xl {
    min-width: unset;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-game-lobby__hero {
    padding: 80px 0 60px;
  }
  .page-game-lobby__hero-title {
    font-size: 2.2em;
  }
  .page-game-lobby__hero-description {
    font-size: 1em;
  }
  .page-game-lobby__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby__hero-cta-group .page-game-lobby__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-lobby__category-grid, .page-game-lobby__features-grid, .page-game-lobby__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-game-lobby__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby__cta-title {
    font-size: 2em;
  }
  .page-game-lobby__sticky-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-game-lobby__sticky-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby__hero-title {
    font-size: 1.8em;
  }
  .page-game-lobby__section-title {
    font-size: 1.6em;
  }
  .page-game-lobby__cta-title {
    font-size: 1.8em;
  }
  .page-game-lobby__hero-cta-group .page-game-lobby__btn {
    width: 90%;
  }
  .page-game-lobby__btn--xl {
    width: 90%;
  }
  .page-game-lobby__container {
    padding: 0 15px;
  }
}