.page-game-types-lottery {
  font-family: 'Arial', sans-serif;
  color: #1A2E44; /* Dark blue/purple for text */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for readability */
}

.page-game-types-lottery__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c81 100%); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  gap: 30px;
}

.page-game-types-lottery__hero-content {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-game-types-lottery__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-game-types-lottery__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-lottery__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-game-types-lottery__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-types-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-game-types-lottery__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #1A2E44; /* Dark blue/purple text for contrast */
}

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

.page-game-types-lottery__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-game-types-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A2E44;
}

.page-game-types-lottery__btn--small:hover {
  background-color: #e6c200;
}

.page-game-types-lottery__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-types-lottery__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-types-lottery__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-lottery__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-game-types-lottery__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-lottery__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-game-types-lottery__card-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types-lottery__card-text {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-game-types-lottery__step {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-game-types-lottery__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2E44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-lottery__step-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types-lottery__step-text {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-types-lottery__section--bonus {
  background-color: #1A2E44; /* Dark background for bonus section */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-game-types-lottery__section--bonus .page-game-types-lottery__section-title {
  color: #ffffff;
}

.page-game-types-lottery__section--bonus .page-game-types-lottery__section-description {
  color: #e0e0e0;
}

.page-game-types-lottery__bonus-content {
  text-align: center;
  max-width: 800px;
}

.page-game-types-lottery__bonus-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-game-types-lottery__bonus-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
  max-width: 600px;
}

.page-game-types-lottery__list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  color: #e0e0e0;
}

.page-game-types-lottery__icon-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-color: #FFD700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 0.8em;
  color: #1A2E44;
  font-weight: bold;
  position: relative;
  top: 3px;
}

.page-game-types-lottery__icon-check::before {
  content: '✓';
}

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

.page-game-types-lottery__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-types-lottery__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-types-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-game-types-lottery__feature-title {
  font-size: 1.4em;
  color: #1A2E44;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-types-lottery__feature-text {
  color: #555;
  font-size: 0.95em;
}

.page-game-types-lottery__section--cta {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #1A2E44; /* Dark text for contrast */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}

.page-game-types-lottery__cta-content {
  text-align: center;
  max-width: 800px;
}

.page-game-types-lottery__cta-title {
  font-size: 2.8em;
  color: #1A2E44;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-types-lottery__cta-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
}

.page-game-types-lottery__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__btn--final-cta {
  background-color: #1A2E44;
  color: #FFD700;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-game-types-lottery__btn--final-cta:hover {
  background-color: #0f1c2a;
  color: #fff;
}

.page-game-types-lottery__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-game-types-lottery__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-types-lottery__faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-game-types-lottery__faq-answer {
  font-size: 1em;
  color: #555;
  line-height: 1.7;
}

.page-game-types-lottery__section--conclusion {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  .page-game-types-lottery__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

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

  .page-game-types-lottery__hero-title {
    font-size: 3.5em;
  }

  .page-game-types-lottery__section--bonus {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-game-types-lottery__bonus-content {
    margin-right: 40px;
    text-align: left;
  }

  .page-game-types-lottery__list {
    margin-left: 0;
    display: block;
  }

  .page-game-types-lottery__section--cta {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-game-types-lottery__cta-content {
    margin-right: 40px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-game-types-lottery__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-lottery__section-title {
    font-size: 2em;
  }
  .page-game-types-lottery__cta-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery__hero-actions {
    flex-direction: column;
  }
  .page-game-types-lottery__list {
    text-align: center;
  }
}