.page-game-lobby-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text on dark background for good contrast */
  background-color: #0A2342;
  line-height: 1.6;
  font-size: 16px;
}

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

.page-game-lobby-lottery-games__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-lottery-games__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-lottery-games__hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap-reverse;
  min-height: 500px;
  z-index: 1;
  position: relative;
}

.page-game-lobby-lottery-games__hero-content {
  flex: 1;
  min-width: 300px;
  z-index: 1;
}

.page-game-lobby-lottery-games__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery-games__hero-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-game-lobby-lottery-games__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-lobby-lottery-games__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;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.page-game-lobby-lottery-games__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery-games__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby-lottery-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-lottery-games__btn--play {
  background-color: #FFD700;
  color: #0A2342;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: auto; /* Push button to bottom */
}

.page-game-lobby-lottery-games__btn--play:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-game-lobby-lottery-games__btn--action {
  background-color: #FFD700;
  color: #0A2342;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-game-lobby-lottery-games__btn--action:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-game-lobby-lottery-games__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

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

.page-game-lobby-lottery-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-lottery-games__section--why-choose {
  background-color: #1A3F6C;
}

.page-game-lobby-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-games__section-intro {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-lobby-lottery-games__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-lobby-lottery-games__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

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

.page-game-lobby-lottery-games__game-card {
  background-color: #1A3F6C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery-games__game-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-lobby-lottery-games__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-lottery-games__game-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-game-lobby-lottery-games__guide-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-game-lobby-lottery-games__guide-list li {
  background-color: #1A3F6C;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-games__guide-step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-lottery-games__guide-list p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-lobby-lottery-games__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-game-lobby-lottery-games__tips-list li {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-games__tips-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-lottery-games__tips-list p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-lobby-lottery-games__section--app-download {
  background-color: #1A3F6C;
  padding: 80px 0;
}

.page-game-lobby-lottery-games__app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
}

.page-game-lobby-lottery-games__app-content {
  flex: 1;
  min-width: 300px;
}

.page-game-lobby-lottery-games__app-content .page-game-lobby-lottery-games__section-title {
  text-align: left;
}

.page-game-lobby-lottery-games__app-content p {
  color: #E0E0E0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-lobby-lottery-games__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

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

.page-game-lobby-lottery-games__section--cta {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-game-lobby-lottery-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-lobby-lottery-games__hero-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-game-lobby-lottery-games__hero-content {
    align-items: center;
    text-align: center;
  }

  .page-game-lobby-lottery-games__hero-actions {
    justify-content: center;
  }

  .page-game-lobby-lottery-games__hero-title {
    font-size: 2.5em;
  }

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

  .page-game-lobby-lottery-games__app-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-game-lobby-lottery-games__app-content .page-game-lobby-lottery-games__section-title {
    text-align: center;
  }

  .page-game-lobby-lottery-games__app-content .page-game-lobby-lottery-games__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-game-lobby-lottery-games__app-content .page-game-lobby-lottery-games__btn:last-child {
    margin-bottom: 0;
  }
}

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

  .page-game-lobby-lottery-games__hero-description {
    font-size: 1em;
  }

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

  .page-game-lobby-lottery-games__section {
    padding: 40px 0;
  }

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

  .page-game-lobby-lottery-games__feature-item,
  .page-game-lobby-lottery-games__game-card {
    padding: 20px;
  }

  .page-game-lobby-lottery-games__guide-list li,
  .page-game-lobby-lottery-games__tips-list li {
    padding: 20px;
  }

  .page-game-lobby-lottery-games__tips-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-lottery-games__hero-actions {
    flex-direction: column;
  }
  .page-game-lobby-lottery-games__btn {
    width: 100%;
  }
  .page-game-lobby-lottery-games__features-grid,
  .page-game-lobby-lottery-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-lottery-games__tips-list {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-lottery-games__guide-step-title {
    font-size: 1.5em;
  }
  .page-game-lobby-lottery-games__section-title {
    font-size: 1.5em;
  }
}