/* 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 .highlight {
  color: #FFD700;
}

.page-game-types-lottery__hero {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-game-types-lottery__hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 40px;
  }
  .page-game-types-lottery__hero-content {
    max-width: 50%;
  }
  .page-game-types-lottery__hero-image-wrapper {
    max-width: 40%;
  }
}

.page-game-types-lottery__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

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

.page-game-types-lottery__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-types-lottery__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.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__section-subtitle,
.page-game-types-lottery__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.page-game-types-lottery__game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-game-types-lottery__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.page-game-types-lottery__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery__game-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5));
}

.page-game-types-lottery__game-card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

.page-game-types-lottery__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-game-types-lottery__steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-game-types-lottery__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-game-types-lottery__step-number {
  font-size: 2.5em;
  color: #0A2463;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-game-types-lottery__step-description {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-game-types-lottery__strategy-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-game-types-lottery__strategy-list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-game-types-lottery__strategy-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-lottery__strategy-item-title {
  color: #0A2463;
  font-size: 1.25em;
  margin-bottom: 10px;
}

.page-game-types-lottery__strategy-list li p {
  color: #666;
  font-size: 1em;
}

.page-game-types-lottery__offers {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .page-game-types-lottery__offers {
    flex-direction: row;
    text-align: left;
    justify-content: space-around;
    padding: 80px 40px;
  }
  .page-game-types-lottery__offers-content {
    max-width: 55%;
  }
  .page-game-types-lottery__offers-image-wrapper {
    max-width: 35%;
  }
}

.page-game-types-lottery__offers-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

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

.page-game-types-lottery__offers-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-game-types-lottery__why-bj38 {
  background-color: #f0f2f5;
  padding: 80px 20px;
}

.page-game-types-lottery__benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-game-types-lottery__benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-game-types-lottery__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-game-types-lottery__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(10, 36, 99, 0.3));
}

.page-game-types-lottery__benefit-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-game-types-lottery__benefit-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-types-lottery__responsible-gambling {
  padding: 60px 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.page-game-types-lottery__cta-final {
  background-color: #0A2463;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.page-game-types-lottery__cta-final .page-game-types-lottery__section-title {
  color: #FFD700;
}

.page-game-types-lottery__cta-final .page-game-types-lottery__section-description {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-types-lottery__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .page-game-types-lottery__cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.page-game-types-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-game-types-lottery__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-game-types-lottery__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-types-lottery__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
}

.page-game-types-lottery__btn--secondary:hover {
  background-color: #1a3c7e;
  border-color: #1a3c7e;
  transform: translateY(-2px);
}

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

.page-game-types-lottery__btn--outline:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-game-types-lottery__btn--link {
  background-color: transparent;
  color: #0A2463;
  border: none;
  padding: 10px 0;
  font-size: 1em;
  font-weight: normal;
  text-decoration: underline;
}

.page-game-types-lottery__btn--link:hover {
  color: #FFD700;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-game-types-lottery__hero-title {
    font-size: 2em;
  }
  .page-game-types-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery__offers-title {
    font-size: 2em;
  }
  .page-game-types-lottery__offers-description,
  .page-game-types-lottery__hero-description {
    font-size: 1em;
  }
}