/* style/game-lobby-lottery.css */
.page-game-lobby-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #121212; /* Slightly darker background than main color for contrast */
}

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

.page-game-lobby-lottery__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #303947 100%); /* Gradient with main color */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-lobby-lottery__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-lobby-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  position: relative;
  z-index: 1;
}

.page-game-lobby-lottery__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for text on auxiliary background */
  border: 2px solid #FFD700;
}

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

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

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

.page-game-lobby-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
  position: relative;
}

.page-game-lobby-lottery__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-lobby-lottery__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: -40px auto 60px;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-game-lobby-lottery__about-nohu78, .page-game-lobby-lottery__game-types, .page-game-lobby-lottery__how-to-play, .page-game-lobby-lottery__tips-strategy, .page-game-lobby-lottery__advantages, .page-game-lobby-lottery__responsible-gambling, .page-game-lobby-lottery__faq, .page-game-lobby-lottery__final-cta {
  padding: 40px 0;
}

.page-game-lobby-lottery__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.page-game-lobby-lottery__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-lobby-lottery__image-wrapper {
  text-align: center;
}

.page-game-lobby-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-lottery__btn--full-width {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-game-lobby-lottery__game-card {
  background-color: #1A202C; /* Main color as card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-lottery__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

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

.page-game-lobby-lottery__game-card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
}

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

.page-game-lobby-lottery__step-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-lottery__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-game-lobby-lottery__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-lobby-lottery__image--step {
  margin-top: 20px;
  max-height: 200px;
  object-fit: contain;
}

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

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

.page-game-lobby-lottery__list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #E0E0E0;
}

.page-game-lobby-lottery__list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-game-lobby-lottery__list li strong {
  color: #FFD700;
}

.page-game-lobby-lottery__cta-banner {
  background-color: #1A202C;
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.page-game-lobby-lottery__cta-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.page-game-lobby-lottery__cta-content {
  flex-grow: 1;
}

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

.page-game-lobby-lottery__cta-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #B0B0B0;
  margin-bottom: 25px;
}

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

.page-game-lobby-lottery__advantage-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-lobby-lottery__advantage-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__content-grid {
  grid-template-columns: 2fr 3fr; /* Adjust for image on left, text on right */
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__image {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.page-game-lobby-lottery__faq-item {
  background-color: #1A202C;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-game-lobby-lottery__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
}

.page-game-lobby-lottery__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
  padding-top: 5px;
}

.page-game-lobby-lottery__final-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A202C;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-top: 60px;
}

.page-game-lobby-lottery__btn--large {
  padding: 20px 45px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby-lottery__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 2.2em;
  }
  .page-game-lobby-lottery__section-description {
    font-size: 1.1em;
  }
  .page-game-lobby-lottery__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-game-lobby-lottery__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }
  .page-game-lobby-lottery__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-game-lobby-lottery__cta-image {
    margin-bottom: 20px;
  }
  .page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-game-lobby-lottery__hero-subtitle {
    font-size: 1em;
  }
  .page-game-lobby-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-lottery__section-description {
    font-size: 1em;
  }
  .page-game-lobby-lottery__game-card, .page-game-lobby-lottery__step-card, .page-game-lobby-lottery__advantage-card {
    padding: 20px;
  }
  .page-game-lobby-lottery__game-card-title, .page-game-lobby-lottery__step-title, .page-game-lobby-lottery__advantage-title {
    font-size: 1.3em;
  }
  .page-game-lobby-lottery__cta-title {
    font-size: 1.6em;
  }
  .page-game-lobby-lottery__btn--full-width, .page-game-lobby-lottery__btn--large {
    width: 90%;
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-game-lobby-lottery__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-lobby-lottery__btn {
    display: block;
    margin: 10px auto;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 1.5em;
    margin-bottom: 40px;
  }
  .page-game-lobby-lottery__section-description {
    margin-bottom: 40px;
  }
  .page-game-lobby-lottery__cta-banner {
    padding: 20px;
  }
  .page-game-lobby-lottery__cta-image {
    max-width: 120px;
  }
  .page-game-lobby-lottery__cta-title {
    font-size: 1.4em;
  }
  .page-game-lobby-lottery__faq-question {
    font-size: 1.1em;
  }
  .page-game-lobby-lottery__list li {
    font-size: 1em;
  }
}