.page-gambling-games-lottery {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-gambling-games-lottery__section {
  padding: 80px 0;
  text-align: center;
}

.page-gambling-games-lottery__section:nth-of-type(even) {
  background-color: #0d213a; /* Slightly lighter dark for contrast */
}

.page-gambling-games-lottery__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1f375e 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-gambling-games-lottery__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-gambling-games-lottery__hero-title {
  font-size: 3.5em;
  color: #E0B92B; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gambling-games-lottery__hero-subtitle {
  font-size: 1.3em;
  color: #E6E6E6;
  margin-bottom: 30px;
}

.page-gambling-games-lottery__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  overflow: hidden;
}

.page-gambling-games-lottery__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.05);
}

.page-gambling-games-lottery__section-title {
  font-size: 2.8em;
  color: #E0B92B;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gambling-games-lottery__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-gambling-games-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;
  margin: 10px;
  white-space: nowrap;
}

.page-gambling-games-lottery__btn--primary {
  background-color: #E0B92B;
  color: #0A192F;
  border: 2px solid #E0B92B;
}

.page-gambling-games-lottery__btn--primary:hover {
  background-color: #c7a426;
  border-color: #c7a426;
  transform: translateY(-3px);
}

.page-gambling-games-lottery__btn--secondary {
  background-color: transparent;
  color: #E0B92B;
  border: 2px solid #E0B92B;
}

.page-gambling-games-lottery__btn--secondary:hover {
  background-color: #E0B92B;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-gambling-games-lottery__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-gambling-games-lottery__feature-item {
  background-color: #1a2d4b; /* Darker variant of main color */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gambling-games-lottery__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2a4168;
}

.page-gambling-games-lottery__feature-icon {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 5px rgba(224, 185, 43, 0.5));
}

.page-gambling-games-lottery__feature-heading {
  font-size: 1.8em;
  color: #E0B92B;
  margin-bottom: 15px;
}

.page-gambling-games-lottery__feature-text {
  color: #D0D0D0;
  font-size: 1em;
}

.page-gambling-games-lottery__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-gambling-games-lottery__guide-list li {
  background-color: #1a2d4b;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-gambling-games-lottery__guide-heading {
  font-size: 1.6em;
  color: #E0B92B;
  margin-bottom: 10px;
}

.page-gambling-games-lottery__guide-list p {
  color: #D0D0D0;
}

.page-gambling-games-lottery__link {
  color: #E0B92B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gambling-games-lottery__link:hover {
  color: #c7a426;
  text-decoration: underline;
}

.page-gambling-games-lottery__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-gambling-games-lottery__promo-list li {
  background-color: #1a2d4b;
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.1em;
  color: #D0D0D0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  max-width: 500px;
}

.page-gambling-games-lottery__promo-list li strong {
  color: #E0B92B;
}

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

.page-gambling-games-lottery__safety-item {
  background-color: #1a2d4b;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-gambling-games-lottery__safety-heading {
  font-size: 1.7em;
  color: #E0B92B;
  margin-bottom: 15px;
}

.page-gambling-games-lottery__safety-item p {
  color: #D0D0D0;
}

.page-gambling-games-lottery__app-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
  flex-wrap: wrap;
}

.page-gambling-games-lottery__app-content {
  flex: 1;
  min-width: 400px;
}

.page-gambling-games-lottery__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gambling-games-lottery__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-gambling-games-lottery__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gambling-games-lottery__app-features li {
  color: #D0D0D0;
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gambling-games-lottery__app-features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #E0B92B;
}

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

.page-gambling-games-lottery__tip-item {
  background-color: #1a2d4b;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-games-lottery__tip-heading {
  font-size: 1.5em;
  color: #E0B92B;
  margin-bottom: 10px;
}

.page-gambling-games-lottery__tip-item p {
  color: #D0D0D0;
}

.page-gambling-games-lottery__faq-item {
  background-color: #1a2d4b;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gambling-games-lottery__faq-question {
  font-size: 1.4em;
  color: #E0B92B;
  margin-bottom: 10px;
}

.page-gambling-games-lottery__faq-answer {
  color: #D0D0D0;
}

.page-gambling-games-lottery__cta {
  background-color: #E0B92B;
  padding: 80px 0;
  color: #0A192F;
}

.page-gambling-games-lottery__cta-title {
  font-size: 3em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-gambling-games-lottery__cta-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gambling-games-lottery__cta .page-gambling-games-lottery__btn--primary {
  background-color: #0A192F;
  color: #E0B92B;
  border-color: #0A192F;
}

.page-gambling-games-lottery__cta .page-gambling-games-lottery__btn--primary:hover {
  background-color: #23457a;
  border-color: #23457a;
  color: #FFFFFF;
}

.page-gambling-games-lottery__cta .page-gambling-games-lottery__btn--secondary {
  background-color: transparent;
  color: #0A192F;
  border-color: #0A192F;
}

.page-gambling-games-lottery__cta .page-gambling-games-lottery__btn--secondary:hover {
  background-color: #0A192F;
  color: #E0B92B;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-games-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-gambling-games-lottery__section-title {
    font-size: 2.2em;
  }
  .page-gambling-games-lottery__app-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-gambling-games-lottery__app-content, .page-gambling-games-lottery__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-gambling-games-lottery__app-features {
    text-align: left;
    margin: 30px auto;
    max-width: 500px;
  }
  .page-gambling-games-lottery__app-features li {
    padding-left: 0;
  }
  .page-gambling-games-lottery__app-features li::before {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .page-gambling-games-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-gambling-games-lottery__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gambling-games-lottery__section {
    padding: 60px 0;
  }
  .page-gambling-games-lottery__section-title {
    font-size: 1.8em;
  }
  .page-gambling-games-lottery__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-gambling-games-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gambling-games-lottery__feature-item, .page-gambling-games-lottery__safety-item, .page-gambling-games-lottery__tip-item, .page-gambling-games-lottery__faq-item {
    padding: 20px;
  }
  .page-gambling-games-lottery__feature-heading, .page-gambling-games-lottery__guide-heading, .page-gambling-games-lottery__safety-heading, .page-gambling-games-lottery__tip-heading, .page-gambling-games-lottery__faq-question {
    font-size: 1.4em;
  }
  .page-gambling-games-lottery__cta-title {
    font-size: 2.2em;
  }
  .page-gambling-games-lottery__cta-description {
    font-size: 1em;
  }
  .page-gambling-games-lottery__promo-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gambling-games-lottery__hero {
    padding: 80px 0 40px;
    min-height: 450px;
  }
  .page-gambling-games-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-gambling-games-lottery__hero-subtitle {
    font-size: 0.9em;
  }
  .page-gambling-games-lottery__section-title {
    font-size: 1.5em;
  }
  .page-gambling-games-lottery__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-gambling-games-lottery__cta-title {
    font-size: 1.8em;
  }
}