/* style/game-lobby-lottery-games-details.css */
.page-game-lobby-lottery-games-details {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Deep blue primary color */
  line-height: 1.6;
}

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

.page-game-lobby-lottery-games-details__hero {
  background: linear-gradient(135deg, #1A1A2E, #33334d);
  padding: 100px 0 80px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-lottery-games-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-game-lobby-lottery-games-details__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D0D0D0;
}

.page-game-lobby-lottery-games-details__section {
  padding: 60px 0;
}

.page-game-lobby-lottery-games-details__section:nth-of-type(even) {
  background-color: #24243D; /* Slightly lighter dark blue for alternating sections */
}

.page-game-lobby-lottery-games-details__section-title {
  font-size: 2.5em;
  color: #E6B325; /* Gold secondary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-lobby-lottery-games-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #E6B325;
  border-radius: 2px;
}

.page-game-lobby-lottery-games-details__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-game-lobby-lottery-games-details__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-game-lobby-lottery-games-details__grid-2-cols--reverse {
  grid-template-columns: 1fr 1fr;
}

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

.page-game-lobby-lottery-games-details__image-wrapper {
  text-align: center;
}

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

.page-game-lobby-lottery-games-details__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-game-lobby-lottery-games-details__btn--primary {
  background-color: #E6B325; /* Gold */
  color: #1A1A2E; /* Deep blue for text on gold */
}

.page-game-lobby-lottery-games-details__btn--primary:hover {
  background-color: #FFD700; /* Slightly brighter gold */
  transform: translateY(-2px);
}

.page-game-lobby-lottery-games-details__btn--secondary {
  background-color: #3A3A5B; /* Darker blue */
  color: #E6B325; /* Gold text */
  border: 2px solid #E6B325;
}

.page-game-lobby-lottery-games-details__btn--secondary:hover {
  background-color: #4D4D7A;
  transform: translateY(-2px);
}

.page-game-lobby-lottery-games-details__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #E6B325;
  color: #1A1A2E;
}

.page-game-lobby-lottery-games-details__btn--small:hover {
  background-color: #FFD700;
  transform: translateY(-1px);
}

.page-game-lobby-lottery-games-details .highlight {
  color: #E6B325;
}

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

.page-game-lobby-lottery-games-details__game-card {
  background-color: #24243D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-lottery-games-details__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-game-lobby-lottery-games-details__game-card-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-game-lobby-lottery-games-details__game-card-description {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-game-lobby-lottery-games-details__step-card {
  background-color: #24243D;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-lottery-games-details__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #E6B325;
  margin-bottom: 15px;
  background-color: #3A3A5B;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.page-game-lobby-lottery-games-details__step-title {
  font-size: 1.5em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-game-lobby-lottery-games-details__step-card p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

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

.page-game-lobby-lottery-games-details__strategy-card {
  background-color: #24243D;
  border-left: 5px solid #E6B325;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-lottery-games-details__strategy-title {
  font-size: 1.6em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-game-lobby-lottery-games-details__strategy-card p {
  color: #C0C0C0;
}

.page-game-lobby-lottery-games-details__promo-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-lobby-lottery-games-details__promo-list li {
  background-color: #24243D;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 4px solid #E6B325;
  display: inline-block;
  width: fit-content;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-lottery-games-details__promo-list li strong {
  color: #E6B325;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-lottery-games-details__hero-title {
    font-size: 2.8em;
  }

  .page-game-lobby-lottery-games-details__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-game-lobby-lottery-games-details__grid-2-cols,
  .page-game-lobby-lottery-games-details__grid-2-cols--reverse {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-lottery-games-details__grid-2-cols--reverse .page-game-lobby-lottery-games-details__image-wrapper {
    order: -1;
  }

  .page-game-lobby-lottery-games-details__game-grid,
  .page-game-lobby-lottery-games-details__step-by-step,
  .page-game-lobby-lottery-games-details__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-lobby-lottery-games-details__hero {
    padding: 80px 0 60px;
  }

  .page-game-lobby-lottery-games-details__hero-title {
    font-size: 2.2em;
  }

  .page-game-lobby-lottery-games-details__hero-subtitle {
    font-size: 1em;
  }

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

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

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

@media (max-width: 480px) {
  .page-game-lobby-lottery-games-details__hero-title {
    font-size: 1.8em;
  }

  .page-game-lobby-lottery-games-details__hero-subtitle {
    font-size: 0.9em;
  }

  .page-game-lobby-lottery-games-details__section-title {
    font-size: 1.5em;
  }

  .page-game-lobby-lottery-games-details__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-game-lobby-lottery-games-details__game-grid,
  .page-game-lobby-lottery-games-details__step-by-step,
  .page-game-lobby-lottery-games-details__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-lottery-games-details__promo-list li {
    max-width: 100%;
  }
}