/* style/game-types-lottery.css */
.page-game-types-lottery {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-game-types-lottery__hero {
  background: linear-gradient(135deg, #0A2463, #3a5c96);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

.page-game-types-lottery__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-lottery__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-lottery__hero-description a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

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

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

.page-game-types-lottery__button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-game-types-lottery__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-lottery__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  z-index: 0;
}

.page-game-types-lottery__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  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__introduction,
.page-game-types-lottery__game-types,
.page-game-types-lottery__benefits,
.page-game-types-lottery__guide,
.page-game-types-lottery__mobile-app,
.page-game-types-lottery__responsible-gaming,
.page-game-types-lottery__faq {
  padding: 60px 0;
}

.page-game-types-lottery__introduction p,
.page-game-types-lottery__responsible-gaming p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #555;
}

.page-game-types-lottery__introduction a,
.page-game-types-lottery__responsible-gaming a {
  color: #0A2463;
  font-weight: bold;
}

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

.page-game-types-lottery__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-types-lottery__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-types-lottery__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types-lottery__card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-types-lottery__card a {
  color: #0A2463;
  font-weight: bold;
}

.page-game-types-lottery__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #FFD700;
  color: #0A2463;
}

.page-game-types-lottery__button--small:hover {
  background-color: #e6c200;
}

.page-game-types-lottery__benefits {
  background-color: #e9ecef;
}

.page-game-types-lottery__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-game-types-lottery__benefit-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-types-lottery__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-types-lottery__benefit-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types-lottery__benefit-item p {
  color: #666;
  font-size: 1em;
}

.page-game-types-lottery__benefit-item a {
  color: #0A2463;
  font-weight: bold;
}

.page-game-types-lottery__guide ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin: 40px 0;
}

.page-game-types-lottery__guide li {
  counter-increment: guide-counter;
  background-color: #fff;
  padding: 25px 30px 25px 80px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-game-types-lottery__guide li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0A2463;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-types-lottery__guide li strong {
  color: #0A2463;
}

.page-game-types-lottery__guide li a {
  color: #0A2463;
  font-weight: bold;
}

.page-game-types-lottery__button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-game-types-lottery__mobile-app {
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
}

.page-game-types-lottery__mobile-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-game-types-lottery__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-game-types-lottery__mobile-app-text .page-game-types-lottery__section-title {
  color: #FFD700;
  text-align: left;
}

.page-game-types-lottery__mobile-app-text .page-game-types-lottery__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-game-types-lottery__mobile-app-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-types-lottery__mobile-app-text a {
  color: #FFD700;
  font-weight: bold;
}

.page-game-types-lottery__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.page-game-types-lottery__mobile-app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery__faq-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  padding: 25px 30px;
}

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

.page-game-types-lottery__faq-question a {
  color: #0A2463;
  font-weight: bold;
}

.page-game-types-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  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: 1.05em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: none;
}

.page-game-types-lottery__faq-answer.active {
  display: block;
}

.page-game-types-lottery__faq-answer a {
  color: #0A2463;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery__hero {
    padding: 60px 20px;
  }

  .page-game-types-lottery__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-lottery__hero-description {
    font-size: 1.1em;
  }

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

  .page-game-types-lottery__game-types .page-game-types-lottery__cards-grid,
  .page-game-types-lottery__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .page-game-types-lottery__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-game-types-lottery__mobile-app-text .page-game-types-lottery__section-title {
    text-align: center;
  }

  .page-game-types-lottery__mobile-app-text .page-game-types-lottery__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery__hero {
    padding: 50px 15px;
  }

  .page-game-types-lottery__hero-title {
    font-size: 2em;
  }

  .page-game-types-lottery__hero-description {
    font-size: 1em;
  }

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

  .page-game-types-lottery__button {
    width: 80%;
    max-width: 300px;
  }

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

  .page-game-types-lottery__introduction p,
  .page-game-types-lottery__responsible-gaming p,
  .page-game-types-lottery__mobile-app-text p {
    font-size: 0.95em;
  }

  .page-game-types-lottery__card-title {
    font-size: 1.3em;
  }

  .page-game-types-lottery__guide li {
    font-size: 1em;
    padding: 20px 25px 20px 70px;
  }

  .page-game-types-lottery__guide li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 20px;
  }

  .page-game-types-lottery__faq-question {
    font-size: 1.1em;
  }

  .page-game-types-lottery__faq-answer {
    font-size: 0.95em;
  }
}

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

  .page-game-types-lottery__hero-description {
    font-size: 0.9em;
  }

  .page-game-types-lottery__section-title {
    font-size: 1.6em;
  }

  .page-game-types-lottery__card,
  .page-game-types-lottery__benefit-item {
    padding: 20px;
  }

  .page-game-types-lottery__card-title {
    font-size: 1.2em;
  }

  .page-game-types-lottery__benefit-title {
    font-size: 1.2em;
  }

  .page-game-types-lottery__mobile-app-image {
    max-width: 300px;
  }
}