.page-resources-zowin-lottery-game-details {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A2B3C; /* Main dark background */
}

.page-resources-zowin-lottery-game-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-zowin-lottery-game-details__hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #3a4c5e 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-zowin-lottery-game-details__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-resources-zowin-lottery-game-details__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-zowin-lottery-game-details__hero-image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-zowin-lottery-game-details__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-resources-zowin-lottery-game-details__section {
  padding: 60px 0;
  background-color: #1A2B3C;
}

.page-resources-zowin-lottery-game-details__section:nth-of-type(even) {
  background-color: #25384D; /* Slightly lighter dark background for contrast */
}

.page-resources-zowin-lottery-game-details__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-zowin-lottery-game-details__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-zowin-lottery-game-details__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

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

.page-resources-zowin-lottery-game-details__game-card {
  background-color: #2F4154; /* Darker card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-zowin-lottery-game-details__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-zowin-lottery-game-details__game-card-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-resources-zowin-lottery-game-details__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-zowin-lottery-game-details__game-card-text {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-resources-zowin-lottery-game-details__article {
  background-color: #2F4154;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-zowin-lottery-game-details__article-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources-zowin-lottery-game-details__sub-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-zowin-lottery-game-details__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-zowin-lottery-game-details__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-zowin-lottery-game-details__list strong {
  color: #FFD700;
}

.page-resources-zowin-lottery-game-details__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD700;
}

.page-resources-zowin-lottery-game-details__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-resources-zowin-lottery-game-details__btn--primary {
  background-color: #FFD700; /* Accent gold for primary buttons */
  color: #1A2B3C; /* Dark text on gold */
}

.page-resources-zowin-lottery-game-details__btn--primary:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-resources-zowin-lottery-game-details__btn--secondary {
  background-color: #2F4154; /* Darker background for secondary buttons */
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-resources-zowin-lottery-game-details__btn--secondary:hover {
  background-color: #3a4c5e;
  transform: translateY(-3px);
  color: #FFFFFF;
}

.page-resources-zowin-lottery-game-details__cta-register {
  background-color: #25384D;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.page-resources-zowin-lottery-game-details__cta-content {
  flex: 1 1 50%;
  padding-right: 30px;
  text-align: left;
}

.page-resources-zowin-lottery-game-details__cta-image-wrapper {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-zowin-lottery-game-details__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-resources-zowin-lottery-game-details__btn-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-resources-zowin-lottery-game-details__faq-item {
  background-color: #2F4154;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-zowin-lottery-game-details__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-zowin-lottery-game-details__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.7;
}

.page-resources-zowin-lottery-game-details__conclusion .page-resources-zowin-lottery-game-details__text {
  text-align: center;
}

.page-resources-zowin-lottery-game-details__conclusion .page-resources-zowin-lottery-game-details__btn {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-zowin-lottery-game-details__hero-title {
    font-size: 2.8em;
  }

  .page-resources-zowin-lottery-game-details__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-zowin-lottery-game-details__section-title {
    font-size: 2em;
  }

  .page-resources-zowin-lottery-game-details__game-card-title {
    font-size: 1.6em;
  }

  .page-resources-zowin-lottery-game-details__article-title {
    font-size: 1.8em;
  }

  .page-resources-zowin-lottery-game-details__sub-title {
    font-size: 1.3em;
  }

  .page-resources-zowin-lottery-game-details__cta-content {
    padding-right: 15px;
  }

  .page-resources-zowin-lottery-game-details__cta-register {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-resources-zowin-lottery-game-details__hero {
    padding: 60px 0 30px;
  }

  .page-resources-zowin-lottery-game-details__hero-title {
    font-size: 2.2em;
  }

  .page-resources-zowin-lottery-game-details__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-zowin-lottery-game-details__section {
    padding: 40px 0;
  }

  .page-resources-zowin-lottery-game-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-zowin-lottery-game-details__text, .page-resources-zowin-lottery-game-details__list li, .page-resources-zowin-lottery-game-details__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-zowin-lottery-game-details__game-card {
    padding: 20px;
  }

  .page-resources-zowin-lottery-game-details__game-card-title {
    font-size: 1.4em;
  }

  .page-resources-zowin-lottery-game-details__article {
    padding: 20px;
  }

  .page-resources-zowin-lottery-game-details__article-title {
    font-size: 1.6em;
  }

  .page-resources-zowin-lottery-game-details__sub-title {
    font-size: 1.2em;
  }

  .page-resources-zowin-lottery-game-details__btn-group {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .page-resources-zowin-lottery-game-details__btn {
    width: 80%;
  }

  .page-resources-zowin-lottery-game-details__cta-register {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-resources-zowin-lottery-game-details__cta-content {
    padding-right: 0;
    padding-top: 30px;
    text-align: center;
  }

  .page-resources-zowin-lottery-game-details__cta-image-wrapper {
    width: 90%;
  }

  .page-resources-zowin-lottery-game-details__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-zowin-lottery-game-details__hero-title {
    font-size: 1.8em;
  }

  .page-resources-zowin-lottery-game-details__section-title {
    font-size: 1.5em;
  }

  .page-resources-zowin-lottery-game-details__btn {
    font-size: 1em;
    padding: 10px 20px;
    width: 90%;
  }

  .page-resources-zowin-lottery-game-details__btn-group {
    gap: 10px;
  }

  .page-resources-zowin-lottery-game-details__game-card-img {
    height: 150px;
  }
}