/* style/games-lottery.css */
.page-games-lottery {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

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

.page-games-lottery__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark gradient */
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-lottery__hero-content {
  max-width: 800px;
  z-index: 10;
}

.page-games-lottery__hero-title {
  font-size: 3.5em;
  color: #E6B325; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-games-lottery__hero-description {
  font-size: 1.3em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

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

.page-games-lottery__btn {
  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-games-lottery__btn--primary {
  background-color: #E6B325;
  color: #0A1931;
}

.page-games-lottery__btn--primary:hover {
  background-color: #f5c754;
  transform: translateY(-3px);
}

.page-games-lottery__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-games-lottery__btn--secondary:hover {
  background-color: #E6B325;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-games-lottery__hero-image {
  margin-top: 40px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.page-games-lottery__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-games-lottery__section {
  padding: 60px 0;
  background-color: #122340; /* Slightly lighter dark background */
  margin-bottom: 20px;
}

.page-games-lottery__section:nth-of-type(even) {
  background-color: #0A1931;
}

.page-games-lottery__section-title {
  font-size: 2.8em;
  color: #E6B325;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-games-lottery__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F5F5F5;
}

.page-games-lottery__text-center {
  text-align: center;
  margin-top: 30px;
}

.page-games-lottery__btn--full-width {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #E6B325;
  color: #0A1931;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-games-lottery__btn--full-width:hover {
  background-color: #f5c754;
  transform: translateY(-3px);
}

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

.page-games-lottery__card {
  background-color: #0A1931;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-games-lottery__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-games-lottery__card-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-games-lottery__card-text {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-games-lottery__btn--card {
  background-color: #E6B325;
  color: #0A1931;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-games-lottery__btn--card:hover {
  background-color: #f5c754;
  transform: translateY(-2px);
}

.page-games-lottery__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-lottery__step {
  background-color: #0A1931;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-lottery__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #E6B325;
  color: #0A1931;
  font-size: 2.5em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}

.page-games-lottery__step-title {
  font-size: 1.6em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-games-lottery__step p {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-games-lottery__btn--small {
  background-color: #E6B325;
  color: #0A1931;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-games-lottery__btn--small:hover {
  background-color: #f5c754;
  transform: translateY(-1px);
}

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

.page-games-lottery__advantage-item {
  background-color: #1a2a47;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-games-lottery__advantage-item:hover {
  transform: translateY(-5px);
}

.page-games-lottery__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect on icons */
}

.page-games-lottery__advantage-item h3 {
  font-size: 1.5em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-games-lottery__advantage-item p {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 0;
}

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

.page-games-lottery__list li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #F5F5F5;
  position: relative;
  padding-left: 40px;
}

.page-games-lottery__list li::before {
  content: '✔️';
  position: absolute;
  left: 15px;
  color: #E6B325;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

.page-games-lottery__faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-games-lottery__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-games-lottery__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

.page-games-lottery__cta {
  background: linear-gradient(90deg, #E6B325 0%, #f5c754 100%); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #0A1931;
}

.page-games-lottery__cta-title {
  font-size: 3em;
  color: #0A1931;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-games-lottery__cta-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-lottery__btn--cta {
  background-color: #0A1931;
  color: #E6B325;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-games-lottery__btn--cta:hover {
  background-color: #1a2a47;
  color: #f5c754;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-games-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-games-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-games-lottery__section-title {
    font-size: 2.2em;
  }
  .page-games-lottery__cta-title {
    font-size: 2.5em;
  }
  .page-games-lottery__grid,
  .page-games-lottery__guide-steps,
  .page-games-lottery__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-games-lottery__hero {
    padding: 60px 0 40px;
  }
  .page-games-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-games-lottery__hero-description {
    font-size: 1em;
  }
  .page-games-lottery__hero-actions {
    flex-direction: column;
  }
  .page-games-lottery__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-games-lottery__section {
    padding: 40px 0;
  }
  .page-games-lottery__section-title {
    font-size: 1.8em;
  }
  .page-games-lottery__card-title {
    font-size: 1.5em;
  }
  .page-games-lottery__step-title {
    font-size: 1.4em;
  }
  .page-games-lottery__cta-title {
    font-size: 2em;
  }
  .page-games-lottery__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-games-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-games-lottery__section-title {
    font-size: 1.6em;
  }
  .page-games-lottery__cta-title {
    font-size: 1.6em;
  }
  .page-games-lottery__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-games-lottery__card-title {
    font-size: 1.3em;
  }
  .page-games-lottery__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }
  .page-games-lottery__list li {
    font-size: 0.95em;
    padding-left: 35px;
  }
  .page-games-lottery__list li::before {
    left: 10px;
  }
  .page-games-lottery__faq-question {
    font-size: 1.2em;
  }
}