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

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

.page-games-center-lottery-games__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5E 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-center-lottery-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-games-center-lottery-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.page-games-center-lottery-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for highlight */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-center-lottery-games__hero-subtitle {
  font-size: 1.5em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-games-center-lottery-games__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-games-center-lottery-games__hero-button:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

.page-games-center-lottery-games__hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.page-games-center-lottery-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-center-lottery-games__intro,
.page-games-center-lottery-games__game-types,
.page-games-center-lottery-games__guide,
.page-games-center-lottery-games__tips,
.page-games-center-lottery-games__promotions,
.page-games-center-lottery-games__security,
.page-games-center-lottery-games__faq,
.page-games-center-lottery-games__cta-final {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-games-center-lottery-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-center-lottery-games__intro p,
.page-games-center-lottery-games__guide p,
.page-games-center-lottery-games__tips p,
.page-games-center-lottery-games__promotions p,
.page-games-center-lottery-games__security p,
.page-games-center-lottery-games__faq p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-games-center-lottery-games__game-card {
  background-color: #1A2F4A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-games-center-lottery-games__game-card:hover {
  transform: translateY(-10px);
  background-color: #2A4F7A;
}

.page-games-center-lottery-games__game-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-center-lottery-games__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-center-lottery-games__game-card p {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-games-center-lottery-games__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-games-center-lottery-games__game-card-button:hover {
  background-color: #E0B800;
}

.page-games-center-lottery-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-games-center-lottery-games__guide-list li {
  background-color: #1A2F4A;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-games-center-lottery-games__guide-list li strong {
  color: #FFD700;
}

.page-games-center-lottery-games__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-games-center-lottery-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-games-center-lottery-games__cta-button:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

.page-games-center-lottery-games__cta-button--secondary {
  background-color: #1A2F4A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-center-lottery-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-games-center-lottery-games__tips-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.page-games-center-lottery-games__tips-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-center-lottery-games__tips-text {
  flex: 2 1 600px;
}

.page-games-center-lottery-games__tips-list {
  list-style: disc;
  margin-left: 25px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-games-center-lottery-games__tips-list li {
  margin-bottom: 10px;
}

.page-games-center-lottery-games__tips-list li strong {
  color: #FFD700;
}

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

.page-games-center-lottery-games__promo-card {
  background-color: #1A2F4A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-games-center-lottery-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-games-center-lottery-games__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-center-lottery-games__promo-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-center-lottery-games__promo-card p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-games-center-lottery-games__promo-footer {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #C0C0C0;
}

.page-games-center-lottery-games__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-games-center-lottery-games__security-list li {
  background-color: #1A2F4A;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-games-center-lottery-games__security-list li strong {
  color: #FFD700;
}

.page-games-center-lottery-games__security-image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-center-lottery-games__accordion {
  margin-top: 40px;
}

.page-games-center-lottery-games__accordion-item {
  background-color: #1A2F4A;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-games-center-lottery-games__accordion-header {
  background-color: #1A2F4A;
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-games-center-lottery-games__accordion-header:hover {
  background-color: #2A4F7A;
}

.page-games-center-lottery-games__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-games-center-lottery-games__accordion-header.active::after {
  content: '-';
}

.page-games-center-lottery-games__accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-games-center-lottery-games__accordion-body.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-games-center-lottery-games__faq-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-games-center-lottery-games__faq-button:hover {
  background-color: #E0B800;
}

.page-games-center-lottery-games__cta-final {
  text-align: center;
  background: linear-gradient(90deg, #0A192F 0%, #1A3A5E 100%);
  padding: 80px 0;
  border-top: 5px solid #FFD700;
}

.page-games-center-lottery-games__cta-final .page-games-center-lottery-games__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-games-center-lottery-games__cta-final p {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-center-lottery-games__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-games-center-lottery-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-center-lottery-games__hero-subtitle {
    font-size: 1.3em;
  }
  .page-games-center-lottery-games__section-title {
    font-size: 2.2em;
  }
  .page-games-center-lottery-games__tips-content {
    flex-direction: column;
  }
  .page-games-center-lottery-games__tips-image,
  .page-games-center-lottery-games__tips-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-games-center-lottery-games__hero {
    padding: 80px 20px;
  }
  .page-games-center-lottery-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-center-lottery-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-games-center-lottery-games__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-center-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-games-center-lottery-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-games-center-lottery-games__guide-list li,
  .page-games-center-lottery-games__tips p,
  .page-games-center-lottery-games__promotions p,
  .page-games-center-lottery-games__security p,
  .page-games-center-lottery-games__faq p {
    font-size: 1em;
  }
  .page-games-center-lottery-games__cta-button {
    margin-bottom: 15px;
  }
  .page-games-center-lottery-games__cta-group {
    flex-direction: column;
    display: flex;
  }
  .page-games-center-lottery-games__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-games-center-lottery-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-games-center-lottery-games__accordion-header::after {
    right: 20px;
  }
  .page-games-center-lottery-games__accordion-body.active {
    padding: 15px 20px;
  }
  .page-games-center-lottery-games__promo-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-games-center-lottery-games__hero-title {
    font-size: 1.8em;
  }
  .page-games-center-lottery-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-games-center-lottery-games__section-title {
    font-size: 1.5em;
  }
  .page-games-center-lottery-games__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-games-center-lottery-games__hero-image {
    height: 150px;
  }
  .page-games-center-lottery-games__game-image {
    height: 150px;
  }
  .page-games-center-lottery-games__promo-image {
    height: 150px;
  }
}