/* style/lottery-games.css */
.page-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark backgrounds */
  background-color: #0F0F1A; /* Slightly lighter than main for body */
}

.page-lottery-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
  position: relative;
  overflow: hidden;
}

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

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

.page-lottery-games__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games__subtitle {
  font-size: 1.4em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-lottery-games__button {
  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-lottery-games__button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-lottery-games__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-lottery-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-lottery-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.page-lottery-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  z-index: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.page-lottery-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-padding {
  padding: 60px 0;
}

.section-bg-dark {
  background-color: #1A1A2E;
}

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

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

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

.page-lottery-games__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-lottery-games__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-lottery-games__text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery-games__text a:hover {
  text-decoration: underline;
}

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

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

.page-lottery-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-lottery-games__card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-games__card-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-lottery-games__button--card {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-lottery-games__button--card:hover {
  background-color: #e6c200;
}

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

.page-lottery-games__list li {
  background-color: #2A2A3E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery-games__list li strong {
  color: #FFD700;
}

.page-lottery-games__list--icon li .page-lottery-games__icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 3px;
  min-width: 25px;
}

.page-lottery-games__grid--2-col {
  grid-template-columns: 1fr 1fr;
}

.page-lottery-games__content-block, .page-lottery-games__image-block {
  padding: 20px;
}

.page-lottery-games__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__text-center {
  text-align: center;
}

.page-lottery-games__mt-40 {
  margin-top: 40px;
}

.page-lottery-games__flex-center {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-lottery-games__detail-card {
  background-color: #0F0F1A;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-lottery-games__detail-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-lottery-games__detail-title a:hover {
  text-decoration: underline;
}

.page-lottery-games__detail-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-lottery-games__button--detail {
  padding: 10px 15px;
  font-size: 0.85em;
  background-color: #FFD700;
  color: #1A1A2E;
  align-self: flex-start;
}

.page-lottery-games__button--detail:hover {
  background-color: #e6c200;
}

.page-lottery-games__cta {
  background: linear-gradient(45deg, #1A1A2E, #0A0A15);
  padding: 80px 20px;
  text-align: center;
}

.page-lottery-games__cta-content {
  max-width: 800px;
}

.page-lottery-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games__title {
    font-size: 2.8em;
  }
  .page-lottery-games__subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games__section-title {
    font-size: 2em;
  }
  .page-lottery-games__grid--2-col {
    grid-template-columns: 1fr;
  }
  .page-lottery-games__hero-image-wrapper {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games__hero {
    padding: 60px 15px;
  }
  .page-lottery-games__title {
    font-size: 2.2em;
  }
  .page-lottery-games__subtitle {
    font-size: 1em;
  }
  .page-lottery-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games__grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-games__flex-center {
    flex-direction: column;
  }
  .page-lottery-games__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-lottery-games__title {
    font-size: 1.8em;
  }
  .page-lottery-games__subtitle {
    font-size: 0.9em;
  }
  .page-lottery-games__section-title {
    font-size: 1.5em;
  }
  .page-lottery-games__text {
    font-size: 0.95em;
  }
  .page-lottery-games__list li {
    font-size: 1em;
  }
  .page-lottery-games__card-title {
    font-size: 1.3em;
  }
  .page-lottery-games__detail-title {
    font-size: 1.2em;
  }
}