.page-game-guides-lottery-introduction {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-game-guides-lottery-introduction__hero {
  background: linear-gradient(135deg, #004AAD 0%, #002880 100%); /* Deeper blue for hero background */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-game-guides-lottery-introduction__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-guides-lottery-introduction__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-game-guides-lottery-introduction__hero-title .highlight {
  color: #FFD700;
}

.page-game-guides-lottery-introduction__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-guides-lottery-introduction__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #004AAD;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-lottery-introduction__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-guides-lottery-introduction__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-game-guides-lottery-introduction__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-game-guides-lottery-introduction__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-lottery-introduction__section:nth-child(even) {
  background-color: #fcfcfc;
}

.page-game-guides-lottery-introduction__section-title {
  font-size: 2.5em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides-lottery-introduction__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.page-game-guides-lottery-introduction__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.page-game-guides-lottery-introduction__text-block {
  font-size: 1.05em;
  color: #444;
  text-align: justify;
  max-width: 900px;
}

.page-game-guides-lottery-introduction__text-block .keyword {
  font-weight: bold;
  color: #004AAD;
}

.page-game-guides-lottery-introduction__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

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

.page-game-guides-lottery-introduction__grid-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-lottery-introduction__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-lottery-introduction__item-title {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-guides-lottery-introduction__item-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-game-guides-lottery-introduction__grid-item p {
  font-size: 0.95em;
  color: #666;
}

.page-game-guides-lottery-introduction__list {
  list-style-type: decimal;
  padding-left: 25px;
  max-width: 900px;
  width: 100%;
  color: #444;
}

.page-game-guides-lottery-introduction__list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-game-guides-lottery-introduction__list li strong {
  color: #004AAD;
}

.page-game-guides-lottery-introduction__list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-lottery-introduction__list li a:hover {
  text-decoration: underline;
}

.page-game-guides-lottery-introduction__btn-primary,
.page-game-guides-lottery-introduction__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  text-align: center;
}

.page-game-guides-lottery-introduction__btn-primary {
  background-color: #004AAD;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 74, 173, 0.3);
}

.page-game-guides-lottery-introduction__btn-primary:hover {
  background-color: #003a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 74, 173, 0.4);
}

.page-game-guides-lottery-introduction__btn-secondary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-game-guides-lottery-introduction__btn-secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-lottery-introduction__cta {
  text-align: center;
  background-color: #004AAD;
  color: #fff;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.page-game-guides-lottery-introduction__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,blue_gold]') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides-lottery-introduction__cta-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-game-guides-lottery-introduction__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-game-guides-lottery-introduction__cta-buttons {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-game-guides-lottery-introduction__cta-image {
  max-width: 300px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-lottery-introduction__hero {
    padding: 80px 15px;
  }

  .page-game-guides-lottery-introduction__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-lottery-introduction__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-lottery-introduction__section {
    padding: 40px 15px;
  }

  .page-game-guides-lottery-introduction__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-game-guides-lottery-introduction__grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides-lottery-introduction__cta {
    padding: 60px 15px;
  }

  .page-game-guides-lottery-introduction__cta-title {
    font-size: 2.2em;
  }

  .page-game-guides-lottery-introduction__cta-description {
    font-size: 1em;
  }

  .page-game-guides-lottery-introduction__btn-primary,
  .page-game-guides-lottery-introduction__btn-secondary {
    width: 100%;
    margin: 10px 0;
  }

  .page-game-guides-lottery-introduction__list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-lottery-introduction__hero-title {
    font-size: 2em;
  }

  .page-game-guides-lottery-introduction__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-lottery-introduction__text-block,
  .page-game-guides-lottery-introduction__list li,
  .page-game-guides-lottery-introduction__grid-item p {
    font-size: 0.95em;
  }

  .page-game-guides-lottery-introduction__hero-btn,
  .page-game-guides-lottery-introduction__btn-primary,
  .page-game-guides-lottery-introduction__btn-secondary {
    font-size: 0.95em;
    padding: 12px 25px;
  }
}