/* style/lottery-games-k3-strategy.css */
.page-lottery-games-k3-strategy {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color on dark backgrounds */
  background-color: #1a0033; /* Darker variant of primary for overall background */
}

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

.page-lottery-games-k3-strategy__hero {
  background: linear-gradient(135deg, #4B0082, #814da8);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-k3-strategy__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-lottery-games-k3-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: grayscale(50%);
  z-index: 0;
}

.page-lottery-games-k3-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-lottery-games-k3-strategy__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-k3-strategy__subtitle {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-lottery-games-k3-strategy__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery-games-k3-strategy__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-lottery-games-k3-strategy__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-k3-strategy__section {
  padding: 60px 0;
  background-color: #2e005c; /* Slightly lighter dark purple for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-k3-strategy__section:nth-of-type(even) {
  background-color: #4B0082; /* Primary color for alternating sections */
}

.page-lottery-games-k3-strategy__list,
.page-lottery-games-k3-strategy__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-k3-strategy__numbered-list {
  list-style-type: decimal;
}

.page-lottery-games-k3-strategy__list li,
.page-lottery-games-k3-strategy__numbered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.1em;
}

.page-lottery-games-k3-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-k3-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin: 10px;
}

.page-lottery-games-k3-strategy__btn--primary {
  background-color: #FFD700;
  color: #4B0082;
  border: 2px solid #FFD700;
}

.page-lottery-games-k3-strategy__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-k3-strategy__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-lottery-games-k3-strategy__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-k3-strategy__btn--tertiary {
  background-color: #6a00a8; /* A darker purple variant */
  color: #FFD700;
  border: 2px solid #6a00a8;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 25px;
}

.page-lottery-games-k3-strategy__btn--tertiary:hover {
  background-color: #814da8;
  border-color: #814da8;
  transform: translateY(-2px);
}

.page-lottery-games-k3-strategy__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-lottery-games-k3-strategy__advantage-item {
  background-color: #2e005c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-lottery-games-k3-strategy__advantage-item:hover {
  transform: translateY(-5px);
}

.page-lottery-games-k3-strategy__advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-lottery-games-k3-strategy__advantage-item .page-lottery-games-k3-strategy__sub-heading {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  border-left: none;
  padding-left: 0;
}

.page-lottery-games-k3-strategy__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

  .page-lottery-games-k3-strategy__subtitle {
    font-size: 1.2em;
  }

  .page-lottery-games-k3-strategy__heading {
    font-size: 2em;
  }

  .page-lottery-games-k3-strategy__sub-heading {
    font-size: 1.6em;
  }

  .page-lottery-games-k3-strategy__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-k3-strategy__title {
    font-size: 2.2em;
  }

  .page-lottery-games-k3-strategy__subtitle {
    font-size: 1em;
  }

  .page-lottery-games-k3-strategy__heading {
    font-size: 1.8em;
  }

  .page-lottery-games-k3-strategy__sub-heading {
    font-size: 1.4em;
  }

  .page-lottery-games-k3-strategy__paragraph,
  .page-lottery-games-k3-strategy__list li,
  .page-lottery-games-k3-strategy__numbered-list li {
    font-size: 0.95em;
  }

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

  .page-lottery-games-k3-strategy__hero {
    padding: 60px 15px;
  }

  .page-lottery-games-k3-strategy__container {
    padding: 15px;
  }
}

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

  .page-lottery-games-k3-strategy__subtitle {
    font-size: 0.9em;
  }

  .page-lottery-games-k3-strategy__heading {
    font-size: 1.5em;
  }

  .page-lottery-games-k3-strategy__sub-heading {
    font-size: 1.2em;
  }

  .page-lottery-games-k3-strategy__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-lottery-games-k3-strategy__grid {
    grid-template-columns: 1fr;
  }

  .page-lottery-games-k3-strategy__advantage-icon {
    width: 60px;
    height: 60px;
  }
}