.page-game-lobby {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #2A2E43; /* Main dark blue background */
}

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

.page-game-lobby__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-game-lobby__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #2A2E43; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-game-lobby__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

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

.page-game-lobby__btn--outline:hover {
  background-color: #FFD700;
  color: #2A2E43;
}

.page-game-lobby__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #2A2E43;
  border: none;
}

.page-game-lobby__btn--small:hover {
  background-color: #e6c200;
}

.page-game-lobby__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: none;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-game-lobby__btn--link:hover {
  color: #e6c200;
}

.page-game-lobby__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Hero Section */
.page-game-lobby__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2A2E43 0%, #4a506e 100%); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-game-lobby__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  font-weight: 700;
  line-height: 1.2;
}

.page-game-lobby__hero-description {
  font-size: 1.3em;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-game-lobby__hero-image-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.page-game-lobby__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Why Choose Section */
.page-game-lobby__why-choose {
  padding: 80px 0;
  background-color: #2A2E43;
}

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

.page-game-lobby__feature-item {
  background-color: #3b4257; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.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: #3b4257;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-game-lobby__category-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-game-lobby__category-description {
  font-size: 0.95em;
  color: #c0c0c0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

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

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

.page-game-lobby__step-item {
  background-color: #3b4257;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-game-lobby__safety-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-game-lobby__safety-text {
  max-width: 800px;
  text-align: center;
}

.page-game-lobby__safety-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-lobby__safety-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-game-lobby__safety-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-game-lobby__cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(45deg, #2A2E43, #4a506e);
  border-top: 5px solid #FFD700;
  border-bottom: 5px solid #FFD700;
}

.page-game-lobby__cta-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-lobby__cta-description {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-lobby__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 120px 40px;
  }

  .page-game-lobby__hero-content {
    max-width: 50%;
    padding-right: 40px;
  }

  .page-game-lobby__hero-image-wrapper {
    max-width: 45%;
    margin-top: 0;
  }

  .page-game-lobby__hero-title {
    font-size: 4.5em;
  }

  .page-game-lobby__hero-description {
    font-size: 1.4em;
  }

  .page-game-lobby__hero-actions {
    justify-content: flex-start;
  }

  .page-game-lobby__safety-content {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .page-game-lobby__safety-text {
    max-width: 60%;
    text-align: left;
    padding-right: 40px;
  }

  .page-game-lobby__safety-image-wrapper {
    max-width: 40%;
  }

  .page-game-lobby__cta-title {
    font-size: 3.8em;
  }
}

@media (max-width: 767px) {
  .page-game-lobby__hero-title {
    font-size: 2.8em;
  }

  .page-game-lobby__hero-description {
    font-size: 1.1em;
  }

  .page-game-lobby__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-lobby__btn--secondary {
    margin-left: 0;
  }

  .page-game-lobby__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-game-lobby__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

  .page-game-lobby__cta-description {
    font-size: 1.1em;
  }
}