/* style/lottery-games-strategy-tips.css */
.page-lottery-games-strategy-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-lottery-games-strategy-tips__hero {
  position: relative;
  background-color: #0A1931; /* Dark blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-lottery-games-strategy-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-lottery-games-strategy-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-strategy-tips__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-lottery-games-strategy-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-lottery-games-strategy-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-lottery-games-strategy-tips__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
}

.page-lottery-games-strategy-tips__button--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-lottery-games-strategy-tips__section {
  padding: 60px 0;
}

.page-lottery-games-strategy-tips__section:nth-of-type(odd) {
  background-color: #f0f0f0;
}

.page-lottery-games-strategy-tips__section-title {
  font-size: 2.5em;
  color: #0A1931; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-lottery-games-strategy-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-lottery-games-strategy-tips__section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-lottery-games-strategy-tips__section ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-lottery-games-strategy-tips__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
}

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

.page-lottery-games-strategy-tips__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-lottery-games-strategy-tips__item-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-lottery-games-strategy-tips__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-lottery-games-strategy-tips__strategy-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.page-lottery-games-strategy-tips__strategy-item:last-child {
  margin-bottom: 0;
}

.page-lottery-games-strategy-tips__link {
  color: #0A1931;
  text-decoration: underline;
  font-weight: bold;
}

.page-lottery-games-strategy-tips__link:hover {
  color: #FFD700;
}

.page-lottery-games-strategy-tips__image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-strategy-tips__cta-text {
  font-size: 1.5em;
  text-align: center;
  margin: 40px 0;
  font-weight: bold;
  color: #0A1931;
}

.page-lottery-games-strategy-tips__section--faq {
  background-color: #0A1931; /* Dark blue background */
  color: #e0e0e0; /* Light text for contrast */
}

.page-lottery-games-strategy-tips__section--faq .page-lottery-games-strategy-tips__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-lottery-games-strategy-tips__section--faq .page-lottery-games-strategy-tips__section-title::after {
  background-color: #e0e0e0;
}

.page-lottery-games-strategy-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
}

.page-lottery-games-strategy-tips__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for questions */
  margin-bottom: 10px;
}

.page-lottery-games-strategy-tips__faq-answer {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-strategy-tips__hero-title {
    font-size: 2.8em;
  }

  .page-lottery-games-strategy-tips__hero-subtitle {
    font-size: 1.3em;
  }

  .page-lottery-games-strategy-tips__section-title {
    font-size: 2em;
  }

  .page-lottery-games-strategy-tips__grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-lottery-games-strategy-tips__hero-title {
    font-size: 2.2em;
  }

  .page-lottery-games-strategy-tips__hero-subtitle {
    font-size: 1.1em;
  }

  .page-lottery-games-strategy-tips__section {
    padding: 40px 0;
  }

  .page-lottery-games-strategy-tips__section-title {
    font-size: 1.8em;
  }

  .page-lottery-games-strategy-tips__item-title {
    font-size: 1.5em;
  }

  .page-lottery-games-strategy-tips__section p,
  .page-lottery-games-strategy-tips__section li,
  .page-lottery-games-strategy-tips__faq-question,
  .page-lottery-games-strategy-tips__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-strategy-tips__hero-title {
    font-size: 1.8em;
  }

  .page-lottery-games-strategy-tips__hero-subtitle {
    font-size: 1em;
  }

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

  .page-lottery-games-strategy-tips__section-title {
    font-size: 1.5em;
  }

  .page-lottery-games-strategy-tips__item-title {
    font-size: 1.3em;
  }

  .page-lottery-games-strategy-tips__faq-item {
    padding: 15px;
  }
}