/* style/game-lobby-lottery-games.css */
.page-game-lobby-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1D2E; /* Slightly lighter dark blue for overall background */
}

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

.page-game-lobby-lottery-games__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-game-lobby-lottery-games__container--flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

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

.page-game-lobby-lottery-games__section--dark {
  background-color: #2A2E43; /* Main brand dark blue */
}

.page-game-lobby-lottery-games__section--promo,
.page-game-lobby-lottery-games__section--cta {
  background-color: #1A1D2E; /* Dark background for sections with gold accents */
}

.page-game-lobby-lottery-games__hero-section {
  background: linear-gradient(135deg, #2A2E43 0%, #1A1D2E 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-game-lobby-lottery-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-game-lobby-lottery-games__hero-section .page-game-lobby-lottery-games__container {
  position: relative;
  z-index: 1;
}

.page-game-lobby-lottery-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

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

.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: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-game-lobby-lottery-games__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #2A2E43; /* Dark blue for text on gold */
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.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: #2A2E43;
  transform: translateY(-3px);
}

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

.page-game-lobby-lottery-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-lobby-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-lobby-lottery-games__section-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.page-game-lobby-lottery-games__grid-text {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-game-lobby-lottery-games__link-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-lobby-lottery-games__link-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-game-lobby-lottery-games__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
}

.page-game-lobby-lottery-games__full-width-image--small {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-lobby-lottery-games__step-item {
  background-color: #2A2E43;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-games__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-game-lobby-lottery-games__step-text {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-game-lobby-lottery-games__promo-content,
.page-game-lobby-lottery-games__app-content {
  flex: 1;
  text-align: left;
}

.page-game-lobby-lottery-games__promo-image,
.page-game-lobby-lottery-games__app-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.page-game-lobby-lottery-games__promo-title,
.page-game-lobby-lottery-games__app-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-lobby-lottery-games__promo-text,
.page-game-lobby-lottery-games__app-text {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: left;
}

.page-game-lobby-lottery-games__promo-list,
.page-game-lobby-lottery-games__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-game-lobby-lottery-games__promo-list li,
.page-game-lobby-lottery-games__app-benefits li {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-game-lobby-lottery-games__promo-list li::before,
.page-game-lobby-lottery-games__app-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.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: #1A1D2E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-game-lobby-lottery-games__feature-text {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
}

.page-game-lobby-lottery-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-lottery-games__tips-list li {
  background-color: #1A1D2E;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.7;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.page-game-lobby-lottery-games__tips-list li strong {
  color: #FFD700;
}

.page-game-lobby-lottery-games__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-lobby-lottery-games__cta-text {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

  .page-game-lobby-lottery-games__promo-content,
  .page-game-lobby-lottery-games__app-content {
    text-align: center;
  }

  .page-game-lobby-lottery-games__promo-image,
  .page-game-lobby-lottery-games__app-image {
    max-width: 80%;
    margin-top: 40px;
  }

  .page-game-lobby-lottery-games__promo-list,
  .page-game-lobby-lottery-games__app-benefits {
    text-align: center;
    padding-left: 0;
  }

  .page-game-lobby-lottery-games__promo-list li,
  .page-game-lobby-lottery-games__app-benefits li {
    padding-left: 0;
    margin-bottom: 15px;
  }

  .page-game-lobby-lottery-games__promo-list li::before,
  .page-game-lobby-lottery-games__app-benefits li::before {
    position: static;
    margin-right: 5px;
  }
}

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

  .page-game-lobby-lottery-games__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-lobby-lottery-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-lobby-lottery-games__btn {
    width: 100%;
    max-width: 280px;
  }

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

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

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

  .page-game-lobby-lottery-games__grid,
  .page-game-lobby-lottery-games__steps-grid,
  .page-game-lobby-lottery-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-lottery-games__promo-title,
  .page-game-lobby-lottery-games__app-title {
    font-size: 1.8em;
  }

  .page-game-lobby-lottery-games__promo-text,
  .page-game-lobby-lottery-games__app-text {
    font-size: 1em;
  }

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

  .page-game-lobby-lottery-games__cta-text {
    font-size: 1.1em;
  }
}

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

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

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

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

  .page-game-lobby-lottery-games__cta-text {
    font-size: 1em;
  }
}