.page-game-types-lottery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray text for dark background */
  background-color: #0A1931; /* Main dark blue background */
}

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

.page-game-types-lottery__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a44 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-game-types-lottery__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Gold accent for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-types-lottery__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

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

.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;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-types-lottery__btn--primary {
  background-color: #E0B400; /* Gold */
  color: #0A1931; /* Dark blue text */
}

.page-game-types-lottery__btn--primary:hover {
  background-color: #f0c52d; /* Lighter gold on hover */
  transform: translateY(-2px);
}

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

.page-game-types-lottery__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-game-types-lottery__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-game-types-lottery__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-game-types-lottery__section {
  padding: 80px 0;
  text-align: center;
}

.page-game-types-lottery__section:nth-of-type(even) {
  background-color: #1a2a44; /* Slightly lighter dark blue for alternating sections */
}

.page-game-types-lottery__section-title {
  font-size: 2.8em;
  color: #E0B400; /* Gold */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-types-lottery__section-intro {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #c0c0c0;
}

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

.page-game-types-lottery__card {
  background-color: #0A1931; /* Dark blue */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.3);
}

.page-game-types-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types-lottery__card-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-game-types-lottery__card-title {
  font-size: 1.8em;
  color: #E0B400; /* Gold */
  margin-bottom: 15px;
}

.page-game-types-lottery__card-description {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-game-types-lottery__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-game-types-lottery__steps li {
  background-color: #0A1931;
  border: 1px solid rgba(224, 180, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 90px;
}

.page-game-types-lottery__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #E0B400;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-game-types-lottery__step-title {
  font-size: 1.6em;
  color: #E0B400; /* Gold */
  margin-bottom: 10px;
}

.page-game-types-lottery__steps p {
  color: #c0c0c0;
  font-size: 1em;
}

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

.page-game-types-lottery__list li {
  background-color: #1a2a44;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-game-types-lottery__list-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-game-types-lottery__list p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-game-types-lottery__list p strong {
  color: #E0B400;
}

.page-game-types-lottery__grid--benefits {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-game-types-lottery__benefit-item {
  background-color: #0A1931;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(224, 180, 0, 0.3);
}

.page-game-types-lottery__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-types-lottery__benefit-title {
  font-size: 1.7em;
  color: #E0B400; /* Gold */
  margin-bottom: 15px;
}

.page-game-types-lottery__benefit-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-game-types-lottery__section--cta {
  background-color: #1a2a44;
  padding: 100px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-game-types-lottery__section-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery__grid,
  .page-game-types-lottery__grid--benefits {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-types-lottery__steps li {
    padding-left: 70px;
  }
  .page-game-types-lottery__steps li::before {
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery__hero {
    padding: 80px 0;
  }
  .page-game-types-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-lottery__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-types-lottery__section {
    padding: 60px 0;
  }
  .page-game-types-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-game-types-lottery__card {
    padding: 25px;
  }
  .page-game-types-lottery__card-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery__list {
    grid-template-columns: 1fr;
  }
  .page-game-types-lottery__list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-game-types-lottery__list-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery__hero {
    padding: 60px 0;
  }
  .page-game-types-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery__hero-description {
    font-size: 0.9em;
  }
  .page-game-types-lottery__section-title {
    font-size: 1.6em;
  }
  .page-game-types-lottery__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-types-lottery__steps li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-game-types-lottery__steps li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-game-types-lottery__step-title {
    font-size: 1.4em;
  }
}