.page-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-lottery__hero {
  background: linear-gradient(135deg, #0A1931 0%, #20355A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-lottery__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-lottery__hero-description {
  font-size: 1.3em;
  color: #B0B0B0; /* Lighter gray for description */
  margin-bottom: 40px;
}

.page-lottery__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-lottery__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-lottery__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.page-lottery__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.page-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-lottery__paragraph {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-lottery__introduction,
.page-lottery__game-types,
.page-lottery__how-to-play,
.page-lottery__results-analysis,
.page-lottery__strategy-tips,
.page-lottery__promotions,
.page-lottery__detail-pages,
.page-lottery__cta-final,
.page-lottery__responsible-gambling {
  padding: 60px 0;
}

.page-lottery__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-lottery__feature-item {
  background-color: #1A2B47; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-lottery__feature-item:hover {
  transform: translateY(-10px);
}

.page-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-lottery__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-lottery__feature-item p {
  color: #B0B0B0;
  font-size: 1em;
  text-align: center;
}

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

.page-lottery__game-item {
  background-color: #1A2B47;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-lottery__game-item:hover {
  transform: translateY(-10px);
}

.page-lottery__game-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery__game-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-lottery__game-item p {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 25px;
  text-align: center;
}

.page-lottery__button-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 10px 25px;
  border: 2px solid #FFD700;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-lottery__button-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-lottery__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-lottery__steps li {
  background-color: #1A2B47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-lottery__steps h4 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-lottery__steps p {
  color: #B0B0B0;
  font-size: 0.95em;
  text-align: center;
}

.page-lottery__cta-buttons {
  text-align: center;
  margin-top: 60px;
}

.page-lottery__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 15px;
}

.page-lottery__button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-lottery__cta-buttons .page-lottery__button-secondary {
  margin: 0 15px;
  padding: 13px 38px; /* Adjust padding to align with primary button */
}

.page-lottery__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-lottery__text-content {
  flex: 1;
  min-width: 300px;
}

.page-lottery__text-content .page-lottery__paragraph {
  text-align: left;
  margin-bottom: 30px;
  max-width: none;
}

.page-lottery__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-lottery__list li {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-lottery__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-lottery__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-lottery__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-lottery__strategy-item {
  background-color: #1A2B47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery__strategy-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-lottery__strategy-item p {
  color: #B0B0B0;
  font-size: 1em;
  text-align: center;
}

.page-lottery__promotions .page-lottery__paragraph {
  margin-bottom: 50px;
}

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

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

.page-lottery__promo-item:hover {
  transform: translateY(-10px);
}

.page-lottery__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery__promo-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-lottery__promo-item p {
  color: #B0B0B0;
  font-size: 1em;
  text-align: center;
}

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

.page-lottery__detail-item {
  background-color: #1A2B47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-lottery__detail-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-lottery__detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-lottery__detail-item h3 a:hover {
  color: #e6c200;
}

.page-lottery__detail-item p {
  color: #B0B0B0;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-lottery__button-text {
  display: inline-flex;
  align-items: center;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-lottery__button-text:hover {
  color: #e6c200;
}

.page-lottery__button-text span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-lottery__button-text:hover span {
  transform: translateX(5px);
}

.page-lottery__cta-final {
  background: linear-gradient(90deg, #0A1931, #20355A);
  padding: 80px 0;
  text-align: center;
}

.page-lottery__final-buttons {
  margin-top: 40px;
}

.page-lottery__final-buttons .page-lottery__button {
  margin: 0 15px;
}

.page-lottery__final-buttons .page-lottery__button-secondary {
  margin: 0 15px;
  padding: 13px 38px;
}

.page-lottery__responsible-gambling {
  text-align: center;
  padding-bottom: 80px;
}

.page-lottery__responsible-image {
  max-width: 150px;
  height: auto;
  margin-top: 30px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-lottery__section-title {
    font-size: 2em;
  }
  .page-lottery__paragraph {
    font-size: 1em;
  }
  .page-lottery__content-wrapper {
    flex-direction: column;
  }
  .page-lottery__image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-lottery__text-content .page-lottery__paragraph {
    text-align: center;
  }
  .page-lottery__list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 768px) {
  .page-lottery__hero {
    padding: 80px 0;
  }
  .page-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-lottery__hero-description {
    font-size: 1em;
  }
  .page-lottery__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-lottery__section-title {
    font-size: 1.8em;
  }
  .page-lottery__features,
  .page-lottery__game-grid,
  .page-lottery__steps,
  .page-lottery__strategy-grid,
  .page-lottery__promo-grid,
  .page-lottery__detail-list {
    grid-template-columns: 1fr;
  }
  .page-lottery__cta-buttons .page-lottery__button,
  .page-lottery__cta-buttons .page-lottery__button-secondary,
  .page-lottery__final-buttons .page-lottery__button,
  .page-lottery__final-buttons .page-lottery__button-secondary {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }
  .page-lottery__list li {
    padding-left: 0;
    text-align: center;
  }
  .page-lottery__list li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-lottery__section-title {
    font-size: 1.6em;
  }
  .page-lottery__hero-image-wrapper {
    display: none; /* Hide hero image on very small screens to save space */
  }
}