/* style/game-lobby-lottery.css */
.page-game-lobby-lottery {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark backgrounds */
  background-color: #1A2B3C; /* Main dark background */
  line-height: 1.6;
}

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

.page-game-lobby-lottery__hero-section {
  background: linear-gradient(135deg, #1A2B3C 0%, #3a5c7e 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

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

.page-game-lobby-lottery__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-game-lobby-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-lobby-lottery__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-game-lobby-lottery__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__section {
  padding: 60px 0;
}

.page-game-lobby-lottery__section--intro {
  background-color: #2a3b4c;
}

.page-game-lobby-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-lobby-lottery__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-lottery__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-lobby-lottery__text-link:hover {
  text-decoration: underline;
  color: #ffe066;
}

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

.page-game-lobby-lottery__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B3C;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby-lottery__btn--secondary {
  background-color: #1A2B3C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-3px);
}

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

.page-game-lobby-lottery__game-card {
  background-color: #2a3b4c;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery__game-card:hover {
  transform: translateY(-10px);
}

.page-game-lobby-lottery__game-card-img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-game-lobby-lottery__game-card p {
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-game-lobby-lottery__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-game-lobby-lottery__steps-list li {
  background-color: #2a3b4c;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-game-lobby-lottery__steps-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  font-size: 1.2em;
  font-weight: bold;
  color: #1A2B3C;
  background-color: #FFD700;
  border-radius: 50px;
  padding: 8px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

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

.page-game-lobby-lottery__steps-list p {
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto 20px;
}

.page-game-lobby-lottery__steps-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-game-lobby-lottery__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #3a4b5c;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__cta-block p {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #fff;
}

.page-game-lobby-lottery__cta-block--center {
  margin-top: 40px;
  padding: 30px;
}

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

.page-game-lobby-lottery__list li {
  background-color: #2a3b4c;
  border-left: 5px solid #FFD700;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page-game-lobby-lottery__list p {
  color: #c0c0c0;
}

.page-game-lobby-lottery__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

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

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

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

.page-game-lobby-lottery__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.page-game-lobby-lottery__feature-item p {
  color: #c0c0c0;
}

.page-game-lobby-lottery__faq-accordion {
  margin-top: 40px;
}

.page-game-lobby-lottery__faq-item {
  background-color: #2a3b4c;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-lottery__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-lobby-lottery__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery__faq-item.active .page-game-lobby-lottery__faq-question::after {
  transform: rotate(45deg);
}

.page-game-lobby-lottery__faq-answer {
  padding: 0 30px 20px;
  color: #c0c0c0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-game-lobby-lottery__faq-item.active .page-game-lobby-lottery__faq-answer {
  max-height: 200px; /* Adjust based on content */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-game-lobby-lottery__game-grid,
  .page-game-lobby-lottery__features-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-lottery__steps-list li {
    padding: 20px;
  }

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

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

  .page-game-lobby-lottery__cta-block p {
    font-size: 1.2em;
  }

  .page-game-lobby-lottery__faq-question {
    font-size: 1.3em;
    padding: 15px 20px;
  }
}

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

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

  .page-game-lobby-lottery__game-card-title,
  .page-game-lobby-lottery__feature-title {
    font-size: 1.5em;
  }

  .page-game-lobby-lottery__faq-question {
    font-size: 1.1em;
  }

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