.page-game-introduction-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Midnight Blue */
}

.page-game-introduction-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-introduction-lottery__hero {
  background: linear-gradient(135deg, #0A1931 0%, #2A3B5B 100%); /* Gradient for hero */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-introduction-lottery__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-game-introduction-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-introduction-lottery__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-game-introduction-lottery__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-game-introduction-lottery__btn.primary-btn {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Midnight Blue */
  border: 2px solid #FFD700;
}

.page-game-introduction-lottery__btn.primary-btn:hover {
  background-color: #E0B500; /* Darker Gold */
  border-color: #E0B500;
}

.page-game-introduction-lottery__btn.secondary-btn {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-introduction-lottery__btn.secondary-btn:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-game-introduction-lottery__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}

.page-game-introduction-lottery__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  filter: grayscale(20%);
}

.page-game-introduction-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-game-introduction-lottery__intro-section,
.page-game-introduction-lottery__game-types,
.page-game-introduction-lottery__how-to-play,
.page-game-introduction-lottery__tips-strategies,
.page-game-introduction-lottery__security,
.page-game-introduction-lottery__why-choose,
.page-game-introduction-lottery__faq {
  padding: 80px 0;
}

.page-game-introduction-lottery__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-game-introduction-lottery__text-content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-introduction-lottery__text-content a:hover {
  color: #E0B500;
}

.page-game-introduction-lottery__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-lottery__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-introduction-lottery__game-card {
  background-color: #1A2A47; /* Darker blue */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introduction-lottery__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-introduction-lottery__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-introduction-lottery__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-introduction-lottery__game-desc {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-game-introduction-lottery__btn.small-btn {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-introduction-lottery__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-introduction-lottery__steps-list li {
  background-color: #1A2A47;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-lottery__step-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-game-introduction-lottery__step-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-game-introduction-lottery__steps-list li p {
  margin: 0;
  color: #E0E0E0;
  font-size: 1em;
}

.page-game-introduction-lottery__steps-list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-introduction-lottery__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-introduction-lottery__tip-card {
  background-color: #1A2A47;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-lottery__tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-introduction-lottery__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-introduction-lottery__tip-desc {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0;
}

.page-game-introduction-lottery__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-introduction-lottery__security-list li {
  background-color: #1A2A47;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-lottery__list-icon {
  font-size: 1.5em;
  color: #32CD32; /* Lime Green for checkmark */
  margin-right: 15px;
  flex-shrink: 0;
}

.page-game-introduction-lottery__list-item {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-game-introduction-lottery__reason-card {
  background-color: #1A2A47;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-lottery__reason-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-introduction-lottery__reason-desc {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0;
}

.page-game-introduction-lottery__cta-banner {
  background: linear-gradient(90deg, #FFD700 0%, #E0B500 100%); /* Gold gradient */
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-lottery__cta-title {
  font-size: 2.2em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-game-introduction-lottery__cta-desc {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
}

.page-game-introduction-lottery__btn.large-btn {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #0A1931;
}

.page-game-introduction-lottery__btn.large-btn:hover {
  background-color: #1A2A47;
  color: #FFD700;
  border-color: #1A2A47;
}

.page-game-introduction-lottery__accordion {
  margin-top: 40px;
}

.page-game-introduction-lottery__accordion-item {
  background-color: #1A2A47;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-lottery__accordion-header {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-game-introduction-lottery__accordion-header:hover {
  background-color: #2A3B5B;
}

.page-game-introduction-lottery__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-introduction-lottery__accordion-item.active .page-game-introduction-lottery__accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-introduction-lottery__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-introduction-lottery__accordion-item.active .page-game-introduction-lottery__accordion-content {
  max-height: 200px; /* Adjust based on content height */
  padding-bottom: 20px;
}

.page-game-introduction-lottery__accordion-content p {
  color: #C0C0C0;
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

.page-game-introduction-lottery__accordion-content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-introduction-lottery__accordion-content a:hover {
  color: #E0B500;
}

.highlight-text {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-introduction-lottery__hero {
    flex-direction: column;
    padding: 80px 0;
  }

  .page-game-introduction-lottery__hero-image-wrapper {
    position: relative;
    width: 80%;
    height: auto;
    margin-top: 40px;
    justify-content: center;
  }

  .page-game-introduction-lottery__hero-image {
    opacity: 1;
    filter: none;
  }

  .page-game-introduction-lottery__hero-title {
    font-size: 2.8em;
  }

  .page-game-introduction-lottery__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-introduction-lottery__section-title {
    font-size: 2em;
  }

  .page-game-introduction-lottery__grid-3-cols, .page-game-introduction-lottery__grid-2-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-introduction-lottery__hero {
    padding: 60px 0;
  }

  .page-game-introduction-lottery__hero-title {
    font-size: 2.2em;
  }

  .page-game-introduction-lottery__hero-subtitle {
    font-size: 1em;
  }

  .page-game-introduction-lottery__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-introduction-lottery__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-game-introduction-lottery__section-title {
    font-size: 1.8em;
  }

  .page-game-introduction-lottery__intro-section,
  .page-game-introduction-lottery__game-types,
  .page-game-introduction-lottery__how-to-play,
  .page-game-introduction-lottery__tips-strategies,
  .page-game-introduction-lottery__security,
  .page-game-introduction-lottery__why-choose,
  .page-game-introduction-lottery__faq {
    padding: 60px 0;
  }

  .page-game-introduction-lottery__steps-list li,
  .page-game-introduction-lottery__security-list li {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .page-game-introduction-lottery__step-number,
  .page-game-introduction-lottery__list-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-game-introduction-lottery__step-title,
  .page-game-introduction-lottery__list-item {
    text-align: center;
  }

  .page-game-introduction-lottery__cta-title {
    font-size: 1.8em;
  }

  .page-game-introduction-lottery__cta-desc {
    font-size: 1em;
  }

  .page-game-introduction-lottery__btn.large-btn {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-game-introduction-lottery__hero-title {
    font-size: 1.8em;
  }

  .page-game-introduction-lottery__hero-subtitle {
    font-size: 0.9em;
  }

  .page-game-introduction-lottery__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-game-introduction-lottery__section-title {
    font-size: 1.5em;
  }

  .page-game-introduction-lottery__text-content,
  .page-game-introduction-lottery__game-desc,
  .page-game-introduction-lottery__tip-desc,
  .page-game-introduction-lottery__reason-desc,
  .page-game-introduction-lottery__list-item,
  .page-game-introduction-lottery__accordion-content p {
    font-size: 0.9em;
  }

  .page-game-introduction-lottery__game-title,
  .page-game-introduction-lottery__tip-title,
  .page-game-introduction-lottery__reason-title {
    font-size: 1.3em;
  }

  .page-game-introduction-lottery__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}