/* style/game-lobby.css */
.page-game-lobby {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary 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; /* Auxiliary gold for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.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-description {
  font-size: 1.1em;
  text-align: center;
  color: #B0B0B0;
  margin-bottom: 60px;
  line-height: 1.6;
}

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

.page-game-lobby__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-game-lobby__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

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

.page-game-lobby__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  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;
  color: #0A192F;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-game-lobby__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-game-lobby__btn--small {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 25px;
}

/* Introduction Section */
.page-game-lobby__introduction {
  padding: 80px 0;
  background-color: #050f1d; /* Slightly lighter dark blue */
}

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

.page-game-lobby__intro-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby__intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-game-lobby__intro-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby__intro-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby__intro-item p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

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

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

.page-game-lobby__category-card {
  background-color: #1a2c40; /* Slightly lighter than main background */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

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

.page-game-lobby__category-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 10px;
}

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

.page-game-lobby__category-card .page-game-lobby__btn {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions CTA Section */
.page-game-lobby__promotions-cta {
  padding: 80px 0;
  background-color: #050f1d;
  text-align: center;
}

.page-game-lobby__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 60px;
}

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

/* App Download Section */
.page-game-lobby__app-download {
  padding: 80px 0;
  background-color: #0A192F;
  text-align: center;
}

.page-game-lobby__app-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-game-lobby__btn--download {
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby__btn--download:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby__btn--download img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.page-game-lobby__app-mockup {
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Responsible Gambling Section */
.page-game-lobby__responsible-gambling {
  padding: 80px 0;
  background-color: #050f1d;
  text-align: center;
}

/* FAQ Section */
.page-game-lobby__faq {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-game-lobby__faq-item {
  background-color: #1a2c40;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 5px 15px 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: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-game-lobby__faq-answer.active {
  max-height: 300px; /* Adjust based on expected content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby__hero-title {
    font-size: 3em;
  }
  .page-game-lobby__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-lobby__section-title {
    font-size: 2.2em;
  }
  .page-game-lobby__categories-grid,
  .page-game-lobby__intro-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-lobby__hero-section {
    padding: 80px 0;
  }
  .page-game-lobby__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-lobby__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-lobby__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby__section-description {
    font-size: 0.95em;
  }
  .page-game-lobby__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-lobby__btn--download {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-game-lobby__hero-section {
    padding: 60px 0;
  }
  .page-game-lobby__hero-title {
    font-size: 2em;
  }
  .page-game-lobby__hero-subtitle {
    font-size: 0.95em;
  }
  .page-game-lobby__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-lobby__section-title {
    font-size: 1.5em;
  }
  .page-game-lobby__section-description {
    font-size: 0.9em;
  }
  .page-game-lobby__intro-item h3,
  .page-game-lobby__category-card h3 {
    font-size: 1.5em;
  }
  .page-game-lobby__intro-icon {
    width: 60px;
    height: 60px;
  }
  .page-game-lobby__faq-question {
    font-size: 1.2em;
  }
}