/* style/lottery-games-types.css */
.page-lottery-games-types {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1C33; /* Darker background for contrast with main color */
}

.page-lottery-games-types__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1C33 100%);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-lottery-games-types__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-lottery-games-types__title {
  font-size: 3.2em;
  color: #F0B90B; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-lottery-games-types__subtitle {
  font-size: 1.4em;
  color: #CCCCCC; /* Slightly lighter gray for subtitle */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-types__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-lottery-games-types__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateX(10%) translateY(10%);
}

.page-lottery-games-types__section {
  padding: 60px 20px;
  background-color: #1A2B4C; /* Main color for sections */
  margin-bottom: 20px;
}

.page-lottery-games-types__section:nth-of-type(even) {
  background-color: #0F1C33; /* Alternate dark background */
}

.page-lottery-games-types__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-lottery-games-types__section-title {
  font-size: 2.5em;
  color: #F0B90B; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-lottery-games-types__intro p {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #E0E0E0;
}

.page-lottery-games-types__game-list {
  background-color: #0F1C33;
}

.page-lottery-games-types__game-card {
  display: flex;
  background-color: #1A2B4C;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  align-items: center;
  padding: 20px;
}

.page-lottery-games-types__game-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-lottery-games-types__game-image-wrapper {
  flex: 0 0 40%;
  padding: 20px;
}

.page-lottery-games-types__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 250px;
}

.page-lottery-games-types__game-content {
  flex: 1;
  padding: 20px;
}

.page-lottery-games-types__game-title {
  font-size: 1.8em;
  color: #F0B90B; /* Auxiliary color for game titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-lottery-games-types__game-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-lottery-games-types__features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-lottery-games-types__features-list li {
  margin-bottom: 8px;
  font-size: 1em;
  color: #CCCCCC;
  display: flex;
  align-items: center;
}

.page-lottery-games-types__features-list li .icon-check {
  color: #F0B90B;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-lottery-games-types__btn {
  display: inline-block;
  background-color: #F0B90B; /* Auxiliary color for buttons */
  color: #1A2B4C; /* Main color for button text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-lottery-games-types__btn:hover {
  background-color: #FFD700; /* Lighter gold on hover */
  transform: translateY(-2px);
}

.page-lottery-games-types__btn--primary {
  background-color: #F0B90B;
  color: #1A2B4C;
  padding: 15px 30px;
  font-size: 1.2em;
  margin: 10px;
}

.page-lottery-games-types__btn--primary:hover {
  background-color: #FFD700;
}

.page-lottery-games-types__btn--secondary {
  background-color: transparent;
  color: #F0B90B;
  border: 2px solid #F0B90B;
  padding: 15px 30px;
  font-size: 1.2em;
  margin: 10px;
}

.page-lottery-games-types__btn--secondary:hover {
  background-color: #F0B90B;
  color: #1A2B4C;
}

.page-lottery-games-types__btn--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-lottery-games-types__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-lottery-games-types__advantages {
  background-color: #1A2B4C;
}

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

.page-lottery-games-types__advantage-item {
  background-color: #0F1C33;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-lottery-games-types__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(240, 185, 11, 0.5));
}

.page-lottery-games-types__advantage-title {
  font-size: 1.5em;
  color: #F0B90B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-lottery-games-types__advantage-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-lottery-games-types__cta-banner {
  background: linear-gradient(90deg, #1A2B4C, #0F1C33);
  padding: 80px 20px;
  text-align: center;
}

.page-lottery-games-types__cta-content {
  max-width: 1000px;
}

.page-lottery-games-types__cta-title {
  font-size: 2.8em;
  color: #F0B90B;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-lottery-games-types__cta-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.highlight {
  color: #F0B90B;
}

/* Icons (simple checkmark for list) */
.icon-check::before {
  content: '\2713'; /* Unicode checkmark */
  display: inline-block;
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-types__hero-image-wrapper {
    width: 70%;
    right: -10%;
  }
  .page-lottery-games-types__title {
    font-size: 2.5em;
  }
  .page-lottery-games-types__subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games-types__section-title {
    font-size: 2em;
  }
  .page-lottery-games-types__game-card {
    flex-direction: column;
  }
  .page-lottery-games-types__game-card:nth-child(even) {
    flex-direction: column;
  }
  .page-lottery-games-types__game-image-wrapper {
    flex: none;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .page-lottery-games-types__game-image {
    max-height: 200px;
  }
  .page-lottery-games-types__game-content {
    padding: 0;
    text-align: center;
  }
  .page-lottery-games-types__features-list {
    text-align: left;
    display: inline-block;
  }
  .page-lottery-games-types__cta-title {
    font-size: 2.2em;
  }
  .page-lottery-games-types__cta-text {
    font-size: 1.1em;
  }
  .page-lottery-games-types__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-types__hero {
    padding: 60px 15px;
  }
  .page-lottery-games-types__hero-image-wrapper {
    width: 80%;
    right: -20%;
    transform: translateY(50px);
  }
  .page-lottery-games-types__title {
    font-size: 2em;
  }
  .page-lottery-games-types__subtitle {
    font-size: 1em;
  }
  .page-lottery-games-types__section {
    padding: 40px 15px;
  }
  .page-lottery-games-types__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-types__game-title {
    font-size: 1.5em;
  }
  .page-lottery-games-types__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-games-types__cta-title {
    font-size: 1.8em;
  }
  .page-lottery-games-types__cta-text {
    font-size: 1em;
  }
  .page-lottery-games-types__btn--primary, .page-lottery-games-types__btn--secondary {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-types__hero {
    min-height: 350px;
  }
  .page-lottery-games-types__hero-image-wrapper {
    display: none;
  }
  .page-lottery-games-types__title {
    font-size: 1.8em;
  }
  .page-lottery-games-types__subtitle {
    font-size: 0.9em;
  }
  .page-lottery-games-types__game-card {
    padding: 15px;
  }
  .page-lottery-games-types__game-image {
    max-height: 150px;
  }
  .page-lottery-games-types__cta-banner {
    padding: 50px 15px;
  }
  .page-lottery-games-types__cta-title {
    font-size: 1.5em;
  }
  .page-lottery-games-types__btn--large {
    font-size: 1em;
    padding: 12px 20px;
  }
}