.page-game-lobby-lottery {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-game-lobby-lottery .highlight {
  color: #0056B3;
  font-weight: bold;
}

.page-game-lobby-lottery .highlight-bold {
  font-weight: bold;
  color: #0056B3;
}

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

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

.page-game-lobby-lottery__section-title {
  font-size: 2.5em;
  color: #0056B3;
  margin-bottom: 30px;
  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: #FFC107;
  border-radius: 2px;
}

.page-game-lobby-lottery__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-game-lobby-lottery__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  margin: 5px;
}

.page-game-lobby-lottery__btn--primary {
  background-color: #0056B3;
  color: #fff;
}

.page-game-lobby-lottery__btn--primary:hover {
  background-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__btn--secondary {
  background-color: #FFC107;
  color: #333;
}

.page-game-lobby-lottery__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-game-lobby-lottery__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-game-lobby-lottery__hero-section {
  background: linear-gradient(135deg, #0056B3 0%, #004085 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-lottery__hero-content {
  max-width: 600px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.page-game-lobby-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-lobby-lottery__hero-title .highlight {
  color: #FFC107;
}

.page-game-lobby-lottery__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-lobby-lottery__hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: 40px;
}

.page-game-lobby-lottery__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__overview {
  background-color: #fff;
}

.page-game-lobby-lottery__image-full-width {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-lottery__image-margin-top {
    margin-top: 60px;
}

.page-game-lobby-lottery__game-types {
  background-color: #f0f4f7;
}

.page-game-lobby-lottery__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-lottery__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-lobby-lottery__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-lobby-lottery__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

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

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

.page-game-lobby-lottery__advantages {
  background-color: #fff;
}

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

.page-game-lobby-lottery__feature-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #0056B3;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-lottery__feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-game-lobby-lottery__list-title {
  font-size: 1.3em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__guide {
  background-color: #f0f4f7;
}

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

.page-game-lobby-lottery__step {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-game-lobby-lottery__step-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFC107;
  color: #0056B3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-lobby-lottery__promotions {
  background-color: #fff;
}

.page-game-lobby-lottery__promo-card {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
}

.page-game-lobby-lottery__promo-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-game-lobby-lottery__promo-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-game-lobby-lottery__promo-title {
  font-size: 1.3em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__promo-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
}

.page-game-lobby-lottery__tips {
  background-color: #f0f4f7;
}

.page-game-lobby-lottery__bullet-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-game-lobby-lottery__bullet-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 50px;
  font-size: 1.05em;
  color: #444;
}

.page-game-lobby-lottery__bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFC107;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-lobby-lottery__responsible-gambling {
  background-color: #0056B3;
  color: #fff;
  padding: 80px 0;
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__section-title {
  color: #FFC107;
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__text-content {
  color: #e0e0e0;
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__btn--primary {
  background-color: #FFC107;
  color: #0056B3;
}

.page-game-lobby-lottery__responsible-gambling .page-game-lobby-lottery__btn--primary:hover {
  background-color: #e0a800;
  color: #004085;
}

.page-game-lobby-lottery__faq {
  background-color: #fff;
}

.page-game-lobby-lottery__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-lottery__faq-question {
  font-size: 1.2em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-game-lobby-lottery__call-to-action {
  background: linear-gradient(45deg, #FFC107 0%, #e0a800 100%);
  color: #0056B3;
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-lottery__call-to-action-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-lobby-lottery__call-to-action-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-game-lobby-lottery__call-to-action .page-game-lobby-lottery__btn--primary {
  background-color: #0056B3;
  color: #fff;
}

.page-game-lobby-lottery__call-to-action .page-game-lobby-lottery__btn--primary:hover {
  background-color: #004085;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-lobby-lottery__hero-section {
    flex-direction: column;
    text-align: center;
  }

  .page-game-lobby-lottery__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .page-game-lobby-lottery__hero-image-wrapper {
    margin-left: 0;
  }

  .page-game-lobby-lottery__hero-title {
    font-size: 3em;
  }

  .page-game-lobby-lottery__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .page-game-lobby-lottery__promo-card {
    flex-direction: column;
    text-align: center;
  }
  .page-game-lobby-lottery__promo-image {
    width: 100%;
    height: 200px;
  }
}

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

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

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

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

  .page-game-lobby-lottery__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-lobby-lottery__grid--2-cols {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-lottery__promo-card {
    flex-direction: row; /* Revert for smaller cards if needed, or keep column */
    text-align: left;
  }
  .page-game-lobby-lottery__promo-image {
    width: 150px;
    height: 150px;
  }
  .page-game-lobby-lottery__call-to-action-title {
    font-size: 2.2em;
  }
}

@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__text-content,
  .page-game-lobby-lottery__hero-description {
    font-size: 0.95em;
  }

  .page-game-lobby-lottery__grid,
  .page-game-lobby-lottery__feature-list,
  .page-game-lobby-lottery__step-by-step {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-lottery__promo-card {
    flex-direction: column;
    text-align: center;
  }
  .page-game-lobby-lottery__promo-image {
    width: 100%;
    height: 180px;
  }
  .page-game-lobby-lottery__promo-content {
    padding: 15px;
  }
  .page-game-lobby-lottery__call-to-action-title {
    font-size: 1.8em;
  }
}