.page-games-introduction-lottery {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50; /* Dark blue/charcoal for main text */
  background-color: #f8f8f8;
}

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

.page-games-introduction-lottery-hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #2C3E50 100%); /* Gold to Orange to Dark Blue */
  color: #FFFFFF; /* White for hero text */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-introduction-lottery-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: page-games-introduction-lottery-float1 10s infinite ease-in-out;
}

.page-games-introduction-lottery-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,165,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: page-games-introduction-lottery-float2 12s infinite ease-in-out reverse;
}

@keyframes page-games-introduction-lottery-float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes page-games-introduction-lottery-float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(-10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.page-games-introduction-lottery-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFFFFF; /* White for main title */
}

.page-games-introduction-lottery-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-games-introduction-lottery-btn {
  display: inline-block;
  background-color: #E74C3C; /* High contrast red for CTA */
  color: #FFFFFF; /* White text on red button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-games-introduction-lottery-btn:hover {
  background-color: #c0392b; /* Darker red on hover */
  transform: translateY(-2px);
}

.page-games-introduction-lottery-btn--primary {
  background-color: #FFD700; /* Gold for primary CTA */
  color: #2C3E50; /* Dark text on gold button */
}

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

.page-games-introduction-lottery-section {
  padding: 60px 0;
}

.page-games-introduction-lottery-section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-games-introduction-lottery-heading {
  font-size: 2.5em;
  color: #2C3E50; /* Dark blue/charcoal for headings */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-introduction-lottery-intro p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-games-introduction-lottery-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-games-introduction-lottery-list li {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 1.05em;
}

.page-games-introduction-lottery-list li strong {
  color: #2C3E50;
}

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

.page-games-introduction-lottery-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-introduction-lottery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-games-introduction-lottery-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-games-introduction-lottery-card-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin: 20px 15px 10px;
}

.page-games-introduction-lottery-card-text {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px 20px;
}

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

.page-games-introduction-lottery-step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
}

.page-games-introduction-lottery-step p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
}

.page-games-introduction-lottery-img-fullwidth {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-games-introduction-lottery-faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-games-introduction-lottery-faq-question {
  font-size: 1.2em;
  color: #2C3E50;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #fdfdfd;
  position: relative;
}

.page-games-introduction-lottery-faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-games-introduction-lottery-faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-games-introduction-lottery-faq-answer {
  font-size: 1.0em;
  color: #555;
  padding: 0 20px 20px;
  margin: 0;
  display: none;
}

.page-games-introduction-lottery-faq-answer.active {
  display: block;
}

.page-games-introduction-lottery-cta-final {
  background: linear-gradient(90deg, #2C3E50, #4A6380); /* Dark blue gradient */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-games-introduction-lottery-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-games-introduction-lottery-cta-img {
  max-width: 250px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-games-introduction-lottery-cta-heading {
  color: #FFD700; /* Gold for CTA heading */
  font-size: 2.8em;
  margin-bottom: 15px;
}

.page-games-introduction-lottery-cta-final p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-introduction-lottery-title {
    font-size: 2.8em;
  }
  .page-games-introduction-lottery-heading {
    font-size: 2em;
  }
  .page-games-introduction-lottery-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-games-introduction-lottery-hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .page-games-introduction-lottery-title {
    font-size: 2.2em;
  }
  .page-games-introduction-lottery-subtitle {
    font-size: 1.2em;
  }
  .page-games-introduction-lottery-heading {
    font-size: 1.8em;
  }
  .page-games-introduction-lottery-hero {
    padding: 60px 0;
  }
  .page-games-introduction-lottery-section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .page-games-introduction-lottery-title {
    font-size: 1.8em;
  }
  .page-games-introduction-lottery-subtitle {
    font-size: 1em;
  }
  .page-games-introduction-lottery-heading {
    font-size: 1.5em;
  }
  .page-games-introduction-lottery-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-introduction-lottery-list li, .page-games-introduction-lottery-step p, .page-games-introduction-lottery-card-text {
    font-size: 0.9em;
  }
  .page-games-introduction-lottery-card-title {
    font-size: 1.3em;
  }
  .page-games-introduction-lottery-step-title {
    font-size: 1.5em;
  }
  .page-games-introduction-lottery-faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-games-introduction-lottery-faq-question::after {
    right: 15px;
  }
  .page-games-introduction-lottery-faq-answer {
    padding: 0 15px 15px;
  }
  .page-games-introduction-lottery-cta-heading {
    font-size: 2em;
  }
  .page-games-introduction-lottery-cta-final p {
    font-size: 1em;
  }
  .page-games-introduction-lottery-cta-img {
    max-width: 180px;
  }
}