/* style/game-guides-lottery-analysis.css */
.page-game-guides-lottery-analysis {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for general text on light backgrounds */
  line-height: 1.6;
}

.page-game-guides-lottery-analysis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-lottery-analysis-section {
  padding: 60px 0;
}

.page-game-guides-lottery-analysis-section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-game-guides-lottery-analysis-section__title {
  font-size: 2.5em;
  color: #000080; /* Deep blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-lottery-analysis-section__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-game-guides-lottery-analysis-hero {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #FFFFFF; /* White text on dark background */
  padding: 100px 0;
  text-align: center;
}

.page-game-guides-lottery-analysis-hero__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for hero title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-lottery-analysis-hero__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-game-guides-lottery-analysis-hero__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-guides-lottery-analysis-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Deep blue text */
}

.page-game-guides-lottery-analysis-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides-lottery-analysis-button--secondary {
  background-color: #000080; /* Deep blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-game-guides-lottery-analysis-button--secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-game-guides-lottery-analysis-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-guides-lottery-analysis-button--outline {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-game-guides-lottery-analysis-button--outline:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-game-guides-lottery-analysis-intro p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.page-game-guides-lottery-analysis-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides-lottery-analysis-feature-item {
  text-align: center;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-guides-lottery-analysis-feature-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-lottery-analysis-feature-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5));
}

.page-game-guides-lottery-analysis-feature-item h3 {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-game-guides-lottery-analysis-game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.page-game-guides-lottery-analysis-game-card:last-child {
  margin-bottom: 0;
}

.page-game-guides-lottery-analysis-game-card--reversed {
  flex-direction: row-reverse;
}

.page-game-guides-lottery-analysis-game-card__image {
  width: 40%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-lottery-analysis-game-card__content {
  width: 60%;
}

.page-game-guides-lottery-analysis-game-card__content h3 {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

.page-game-guides-lottery-analysis-game-card__content h4 {
  font-size: 1.3em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-game-guides-lottery-analysis-game-card__content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-game-guides-lottery-analysis-game-card__content ul li {
  margin-bottom: 8px;
}

.page-game-guides-lottery-analysis-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-game-guides-lottery-analysis-steps li {
  background-color: #FFFFFF;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
}

.page-game-guides-lottery-analysis-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFD700; /* Gold step number */
  color: #000080; /* Deep blue text */
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-guides-lottery-analysis-steps li h3 {
  font-size: 1.5em;
  color: #000080;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides-lottery-analysis-steps li p {
  margin-bottom: 0;
}

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

.page-game-guides-lottery-analysis-strategy-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-guides-lottery-analysis-strategy-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-lottery-analysis-strategy-item__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 128, 0.4));
}

.page-game-guides-lottery-analysis-strategy-item h3 {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

.page-game-guides-lottery-analysis-strategy-item ul {
  list-style: circle;
  margin-left: 20px;
}

.page-game-guides-lottery-analysis-strategy-item ul li {
  margin-bottom: 5px;
}

.page-game-guides-lottery-analysis-safety {
  background-color: #000080; /* Deep blue background */
  color: #FFFFFF; /* White text */
}

.page-game-guides-lottery-analysis-safety .page-game-guides-lottery-analysis-section__title {
  color: #FFD700; /* Gold title on deep blue background */
}

.page-game-guides-lottery-analysis-safety .page-game-guides-lottery-analysis-section__title::after {
  background-color: #FFFFFF;
}

.page-game-guides-lottery-analysis-safety p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-game-guides-lottery-analysis-safety-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.page-game-guides-lottery-analysis-safety-points p {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1.1em;
  max-width: none;
  margin: 0;
}

.page-game-guides-lottery-analysis-safety-icon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(300deg) brightness(1.2); /* Make icons gold */
}

.page-game-guides-lottery-analysis-app-download {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-game-guides-lottery-analysis-app-download__content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-game-guides-lottery-analysis-app-download__text {
  flex: 1;
}

.page-game-guides-lottery-analysis-app-download__text .page-game-guides-lottery-analysis-section__title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-game-guides-lottery-analysis-app-download__text .page-game-guides-lottery-analysis-section__title::after {
  left: 0;
  transform: translateX(0);
}

.page-game-guides-lottery-analysis-app-download__text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: left;
}

.page-game-guides-lottery-analysis-app-download__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-guides-lottery-analysis-app-download__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-game-guides-lottery-analysis-cta {
  background-color: #000080; /* Deep blue background */
  color: #FFFFFF; /* White text */
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-lottery-analysis-cta .page-game-guides-lottery-analysis-section__title {
  color: #FFD700; /* Gold title */
}

.page-game-guides-lottery-analysis-cta .page-game-guides-lottery-analysis-section__title::after {
  background-color: #FFFFFF;
}

.page-game-guides-lottery-analysis-cta__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-guides-lottery-analysis-cta__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-lottery-analysis-hero__title {
    font-size: 2.8em;
  }

  .page-game-guides-lottery-analysis-section__title {
    font-size: 2em;
  }

  .page-game-guides-lottery-analysis-game-card {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides-lottery-analysis-game-card--reversed {
    flex-direction: column;
  }

  .page-game-guides-lottery-analysis-game-card__image,
  .page-game-guides-lottery-analysis-game-card__content {
    width: 100%;
  }

  .page-game-guides-lottery-analysis-app-download__content {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides-lottery-analysis-app-download__text .page-game-guides-lottery-analysis-section__title,
  .page-game-guides-lottery-analysis-app-download__text p {
    text-align: center;
  }

  .page-game-guides-lottery-analysis-app-download__text .page-game-guides-lottery-analysis-section__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-game-guides-lottery-analysis-hero {
    padding: 80px 0;
  }

  .page-game-guides-lottery-analysis-hero__title {
    font-size: 2.2em;
  }

  .page-game-guides-lottery-analysis-hero__subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-lottery-analysis-hero__cta-group,
  .page-game-guides-lottery-analysis-cta__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-guides-lottery-analysis-button {
    width: 100%;
    max-width: 300px;
  }

  .page-game-guides-lottery-analysis-section {
    padding: 40px 0;
  }

  .page-game-guides-lottery-analysis-section__title {
    font-size: 1.8em;
  }

  .page-game-guides-lottery-analysis-steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-game-guides-lottery-analysis-steps li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-game-guides-lottery-analysis-safety-points p {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides-lottery-analysis-safety-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-lottery-analysis-hero__title {
    font-size: 1.8em;
  }

  .page-game-guides-lottery-analysis-section__title {
    font-size: 1.5em;
  }

  .page-game-guides-lottery-analysis-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-guides-lottery-analysis-feature-item h3,
  .page-game-guides-lottery-analysis-game-card__content h3,
  .page-game-guides-lottery-analysis-steps li h3,
  .page-game-guides-lottery-analysis-strategy-item h3 {
    font-size: 1.2em;
  }
}