/* style/lottery-games-results-analysis.css */
.page-lottery-games-results-analysis {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

.page-lottery-games-results-analysis .highlight {
  color: #FFD700; /* Auxiliary gold color for emphasis */
}

.page-lottery-games-results-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-results-analysis__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a50 100%); /* Dark gradient for hero */
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-results-analysis__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-lottery-games-results-analysis__hero .page-lottery-games-results-analysis__container {
  position: relative;
  z-index: 1;
}

.page-lottery-games-results-analysis__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F8F8F8; /* Light text on dark background */
  font-weight: bold;
}

.page-lottery-games-results-analysis__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #B0B0B0; /* Slightly lighter gray for subtitle */
}

.page-lottery-games-results-analysis__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-lottery-games-results-analysis__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-lottery-games-results-analysis__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
}

.page-lottery-games-results-analysis__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-lottery-games-results-analysis__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text, dark background */
  border-color: #FFD700;
}

.page-lottery-games-results-analysis__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-lottery-games-results-analysis__btn--tertiary {
  background-color: #1A2E47; /* Darker blue for login */
  color: #F8F8F8;
  border-color: #1A2E47;
}

.page-lottery-games-results-analysis__btn--tertiary:hover {
  background-color: #2A3F5B;
  transform: translateY(-3px);
}

.page-lottery-games-results-analysis__section {
  padding: 80px 0;
  text-align: center;
}

.page-lottery-games-results-analysis__section:nth-of-type(even) {
  background-color: #0D203D; /* Slightly lighter dark background for alternating sections */
}

.page-lottery-games-results-analysis__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #F8F8F8;
  font-weight: bold;
}

.page-lottery-games-results-analysis__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #B0B0B0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-results-analysis__results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-games-results-analysis__result-card {
  background-color: #1A2E47; /* Dark blue card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-lottery-games-results-analysis__result-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-games-results-analysis__result-card p {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-lottery-games-results-analysis__link-text {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-lottery-games-results-analysis__link-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-lottery-games-results-analysis__more-info {
  margin-top: 40px;
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-lottery-games-results-analysis__data-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
  margin-top: 50px;
}

.page-lottery-games-results-analysis__data-content {
  flex: 1;
  min-width: 300px;
}

.page-lottery-games-results-analysis__data-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-lottery-games-results-analysis__data-content p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-results-analysis__data-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-lottery-games-results-analysis__tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-games-results-analysis__tool-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

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

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

.page-lottery-games-results-analysis__tool-item p {
  color: #E0E0E0;
}

.page-lottery-games-results-analysis__analysis-image {
  margin-top: 50px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-results-analysis__call-to-action {
  margin-top: 40px;
  font-size: 1.2em;
  color: #F8F8F8;
}

.page-lottery-games-results-analysis__strategy-flex {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 50px;
  text-align: left;
  margin-top: 50px;
}

.page-lottery-games-results-analysis__strategy-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-lottery-games-results-analysis__strategy-content {
  flex: 1;
  min-width: 300px;
}

.page-lottery-games-results-analysis__strategy-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-lottery-games-results-analysis__strategy-content p,
.page-lottery-games-results-analysis__strategy-content ul {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-results-analysis__strategy-content ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-lottery-games-results-analysis__strategy-content li {
  margin-bottom: 10px;
}

.page-lottery-games-results-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-games-results-analysis__feature-card {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-lottery-games-results-analysis__feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px #FFD700);
}

.page-lottery-games-results-analysis__feature-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games-results-analysis__feature-card p {
  color: #E0E0E0;
}

.page-lottery-games-results-analysis__why-vn58vip-image {
  margin-top: 50px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-results-analysis__responsible-gaming ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-lottery-games-results-analysis__responsible-gaming li {
  background-color: #1A2E47;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1.1em;
  border-left: 4px solid #FFD700;
}

.page-lottery-games-results-analysis__responsible-gaming p {
  color: #B0B0B0;
  margin-top: 20px;
}

.page-lottery-games-results-analysis__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.page-lottery-games-results-analysis__cta-image {
  margin-top: 50px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery-games-results-analysis__title {
    font-size: 2.8em;
  }

  .page-lottery-games-results-analysis__subtitle {
    font-size: 1.2em;
  }

  .page-lottery-games-results-analysis__section-title {
    font-size: 2.2em;
  }

  .page-lottery-games-results-analysis__data-flex,
  .page-lottery-games-results-analysis__strategy-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-lottery-games-results-analysis__data-content,
  .page-lottery-games-results-analysis__strategy-content {
    text-align: center;
  }

  .page-lottery-games-results-analysis__data-image,
  .page-lottery-games-results-analysis__strategy-image {
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-results-analysis__hero {
    padding: 80px 0 30px;
  }

  .page-lottery-games-results-analysis__title {
    font-size: 2.2em;
  }

  .page-lottery-games-results-analysis__subtitle {
    font-size: 1em;
  }

  .page-lottery-games-results-analysis__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-lottery-games-results-analysis__section {
    padding: 60px 0;
  }

  .page-lottery-games-results-analysis__section-title {
    font-size: 1.8em;
  }

  .page-lottery-games-results-analysis__section-description {
    font-size: 0.95em;
  }

  .page-lottery-games-results-analysis__results-grid,
  .page-lottery-games-results-analysis__tools-grid,
  .page-lottery-games-results-analysis__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-lottery-games-results-analysis__result-card,
  .page-lottery-games-results-analysis__tool-item,
  .page-lottery-games-results-analysis__feature-card {
    padding: 25px;
  }

  .page-lottery-games-results-analysis__tool-item h3,
  .page-lottery-games-results-analysis__feature-card h3 {
    font-size: 1.3em;
  }

  .page-lottery-games-results-analysis__strategy-content ul {
    padding-left: 0;
  }

  .page-lottery-games-results-analysis__strategy-content li {
    list-style: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-results-analysis__hero-actions,
  .page-lottery-games-results-analysis__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games-results-analysis__btn {
    width: 100%;
  }

  .page-lottery-games-results-analysis__title {
    font-size: 1.8em;
  }

  .page-lottery-games-results-analysis__section-title {
    font-size: 1.5em;
  }
}