.page-game-types-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

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

.page-game-types-lottery__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a40 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-lottery__hero-subtitle {
  font-size: 1.4em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-types-lottery__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-game-types-lottery__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__cta-button--secondary {
  background-color: #1A2A40; /* Darker blue button */
  color: #FFD700; /* Gold text on darker blue */
  border: 1px solid #FFD700;
}

.page-game-types-lottery__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__cta-button--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-game-types-lottery__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery__intro-section,
.page-game-types-lottery__games-overview,
.page-game-types-lottery__how-to-play,
.page-game-types-lottery__tips-section,
.page-game-types-lottery__faq-section,
.page-game-types-lottery__final-cta {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-lottery__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-types-lottery__text-content {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.page-game-types-lottery__feature-item {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-types-lottery__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-lottery__feature-description {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-game-types-lottery__games-overview .page-game-types-lottery__game-card {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-types-lottery__game-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-game-types-lottery__game-description {
  font-size: 1.05em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-game-types-lottery__how-to-play ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 0 auto;
}

.page-game-types-lottery__how-to-play li {
  background-color: #1A2A40;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-left: 90px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__how-to-play li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #FFD700;
  color: #0A192F;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 1.1em;
}

.page-game-types-lottery__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-lottery__step-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-game-types-lottery__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-game-types-lottery__tips-list li {
  background-color: #1A2A40;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.page-game-types-lottery__tips-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

.page-game-types-lottery__tip-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-game-types-lottery__faq-item {
  background-color: #1A2A40;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-types-lottery__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-types-lottery__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-game-types-lottery__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  margin-top: 15px;
}

.page-game-types-lottery__final-cta {
  background: linear-gradient(135deg, #1A2A40, #0A192F);
  padding: 80px 0;
}

.page-game-types-lottery__final-cta .page-game-types-lottery__section-title {
  color: #FFD700;
}

.page-game-types-lottery__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: page-game-types-lottery-pulse 2s infinite;
}

.page-game-types-lottery__floating-button {
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-lottery__floating-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-lottery__floating-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@keyframes page-game-types-lottery-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-lottery__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-types-lottery__section-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery__how-to-play li::before {
    left: 15px;
    top: 15px;
    padding: 6px 10px;
    font-size: 1em;
  }
  .page-game-types-lottery__how-to-play li {
    padding-left: 70px;
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types-lottery__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery__text-content,
  .page-game-types-lottery__feature-description,
  .page-game-types-lottery__game-description,
  .page-game-types-lottery__step-description,
  .page-game-types-lottery__tips-list li,
  .page-game-types-lottery__faq-answer {
    font-size: 0.95em;
  }
  .page-game-types-lottery__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-lottery__game-card {
    text-align: center;
    align-items: center;
  }
  .page-game-types-lottery__floating-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-types-lottery__floating-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-types-lottery__section-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery__how-to-play li::before {
    position: static;
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }
  .page-game-types-lottery__how-to-play li {
    padding-left: 30px;
  }
  .page-game-types-lottery__floating-cta {
    bottom: 10px;
    right: 10px;
  }
  .page-game-types-lottery__floating-text {
    display: none;
  }
  .page-game-types-lottery__floating-button {
    padding: 10px;
    border-radius: 50%;
  }
  .page-game-types-lottery__floating-icon {
    margin-right: 0;
  }
}