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

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

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

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

.page-games-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-lottery__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-games-lottery__hero-image {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  z-index: 1;
}

.page-games-lottery__hero-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-games-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-games-lottery__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text on gold */
}

.page-games-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-games-lottery__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-games-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-games-lottery__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 250px;
  text-align: center;
}

.page-games-lottery__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-games-lottery__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-games-lottery__introduction,
.page-games-lottery__game-types,
.page-games-lottery__strategies,
.page-games-lottery__responsible-gambling,
.page-games-lottery__cta {
  padding: 60px 0;
}

.page-games-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-games-lottery__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #C0C0C0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-lottery__features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-games-lottery__features-list li {
  background-color: #1A2B4C;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.15em;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(50% - 15px);
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery__features-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-games-lottery__icon {
  font-size: 1.5em;
  color: #FFD700;
  /* Placeholder for actual icon styles */
}
.page-games-lottery__icon--secure::before { content: '🔒'; }
.page-games-lottery__icon--fast::before { content: '⚡'; }
.page-games-lottery__icon--diversity::before { content: '🎲'; }
.page-games-lottery__icon--support::before { content: '📞'; }

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

.page-games-lottery__game-card {
  background-color: #1A2B4C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-games-lottery__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
}

.page-games-lottery__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px 15px;
}

.page-games-lottery__game-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
  padding: 0 20px;
  flex-grow: 1;
}

.page-games-lottery__game-card .page-games-lottery__btn {
  margin-top: 25px;
}

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

.page-games-lottery__strategy-item {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

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

.page-games-lottery__strategy-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-games-lottery__responsible-gambling {
  background-color: #1A2B4C;
  padding: 80px 0;
  text-align: center;
}

.page-games-lottery__responsible-gambling .page-games-lottery__section-title {
  color: #FFD700;
}

.page-games-lottery__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-games-lottery__responsibility-list li {
  background-color: #0F1A2C;
  padding: 15px 25px;
  border-radius: 8px;
  color: #C0C0C0;
  font-size: 1.05em;
  border: 1px solid #3A4B6C;
}

.page-games-lottery__cta {
  background: url('[GALLERY:bg:lottery_pattern,okvip,abstract,dark_gold_lines]') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.page-games-lottery__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(26, 43, 76, 0.85); /* Overlay with main color */
  z-index: 0;
}

.page-games-lottery__cta > div {
  position: relative;
  z-index: 1;
}

.page-games-lottery__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
}

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

.page-games-lottery__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 50px;
}

.page-games-lottery__cta-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-games-lottery__hero-title {
    font-size: 3em;
  }
  .page-games-lottery__hero-description {
    font-size: 1.2em;
  }
  .page-games-lottery__section-title {
    font-size: 2.2em;
  }
  .page-games-lottery__features-list li {
    width: calc(100% - 15px);
    max-width: 450px;
  }
  .page-games-lottery__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-games-lottery__cta-title {
    font-size: 2.5em;
  }
  .page-games-lottery__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-games-lottery__hero {
    padding: 60px 15px;
  }
  .page-games-lottery__hero-title {
    font-size: 2.5em;
  }
  .page-games-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-games-lottery__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-lottery__hero-image {
    margin-top: 30px;
  }
  .page-games-lottery__introduction, .page-games-lottery__game-types, .page-games-lottery__strategies, .page-games-lottery__responsible-gambling, .page-games-lottery__cta {
    padding: 40px 0;
  }
  .page-games-lottery__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-games-lottery__text-content {
    font-size: 1em;
  }
  .page-games-lottery__features-list li {
    font-size: 1em;
    padding: 20px;
  }
  .page-games-lottery__game-title {
    font-size: 1.5em;
  }
  .page-games-lottery__strategy-title {
    font-size: 1.3em;
  }
  .page-games-lottery__cta-title {
    font-size: 2em;
  }
  .page-games-lottery__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-lottery__cta-image {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .page-games-lottery__hero-title {
    font-size: 2em;
  }
  .page-games-lottery__hero-description {
    font-size: 0.95em;
  }
  .page-games-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-lottery__section-title {
    font-size: 1.8em;
  }
  .page-games-lottery__game-card {
    padding-bottom: 20px;
  }
  .page-games-lottery__game-img {
    height: 160px;
  }
  .page-games-lottery__game-title {
    font-size: 1.3em;
  }
  .page-games-lottery__cta-title {
    font-size: 1.8em;
  }
  .page-games-lottery__cta-description {
    font-size: 0.95em;
  }
  .page-games-lottery__cta-image {
    max-width: 300px;
  }
}