/* style/lottery-games-ssc.css */

/* Base styles for the page content */
.page-lottery-games-ssc {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

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

/* Hero Section */
.page-lottery-games-ssc__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-ssc__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffc107; /* Highlight title with auxiliary color */
}

.page-lottery-games-ssc__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
  opacity: 0.9;
}

.page-lottery-games-ssc__btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-lottery-games-ssc__btn--primary {
  background-color: #ffc107; /* Auxiliary color for primary action */
  color: #0056b3; /* Darker blue for text on auxiliary color */
  border: 2px solid #ffc107;
}

.page-lottery-games-ssc__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-lottery-games-ssc__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-lottery-games-ssc__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Sections */
.page-lottery-games-ssc__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-ssc__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-lottery-games-ssc__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-lottery-games-ssc__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-lottery-games-ssc__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

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

.page-lottery-games-ssc__list li {
  background-color: #e6f2ff; /* Light blue background for list items */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-lottery-games-ssc__list li:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-ssc__list li strong {
  color: #0056b3;
}

.page-lottery-games-ssc__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-lottery-games-ssc__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-lottery-games-ssc__image:hover {
  transform: scale(1.02);
}

.page-lottery-games-ssc__image-caption {
  font-style: italic;
  color: #777;
  margin-top: 15px;
  font-size: 0.95em;
}

/* Call to Action Section */
.page-lottery-games-ssc__cta {
  background: linear-gradient(to right, #007bff, #0056b3); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-ssc__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for CTA title */
}

.page-lottery-games-ssc__cta-text {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-lottery-games-ssc__cta-buttons .page-lottery-games-ssc__btn {
  background-color: #ffc107;
  color: #0056b3;
  border: 2px solid #ffc107;
}

.page-lottery-games-ssc__cta-buttons .page-lottery-games-ssc__btn:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* App Download Section */
.page-lottery-games-ssc__app-download {
  text-align: center;
}

.page-lottery-games-ssc__app-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.page-lottery-games-ssc__btn--app {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 1.1em;
}

.page-lottery-games-ssc__btn--app:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-lottery-games-ssc__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Make icons white */
}

.page-lottery-games-ssc__app-screenshot {
  margin-top: 60px;
}

.page-lottery-games-ssc__responsible-gaming .page-lottery-games-ssc__btn--tertiary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  margin-top: 30px;
}

.page-lottery-games-ssc__responsible-gaming .page-lottery-games-ssc__btn--tertiary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-ssc__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-games-ssc__hero-subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games-ssc__section-title {
    font-size: 2em;
  }
  .page-lottery-games-ssc__cta-title {
    font-size: 2.2em;
  }
  .page-lottery-games-ssc__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-ssc__hero-section {
    padding: 80px 0;
  }
  .page-lottery-games-ssc__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-games-ssc__hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-games-ssc__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games-ssc__section {
    padding: 40px 0;
  }
  .page-lottery-games-ssc__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-ssc__section p,
  .page-lottery-games-ssc__list li {
    font-size: 1em;
  }
  .page-lottery-games-ssc__cta {
    padding: 60px 0;
  }
  .page-lottery-games-ssc__cta-title {
    font-size: 1.8em;
  }
  .page-lottery-games-ssc__cta-text {
    font-size: 1em;
  }
  .page-lottery-games-ssc__app-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-ssc__hero-section {
    padding: 60px 0;
  }
  .page-lottery-games-ssc__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-games-ssc__hero-subtitle {
    font-size: 0.9em;
  }
  .page-lottery-games-ssc__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-lottery-games-ssc__section-title {
    font-size: 1.5em;
  }
  .page-lottery-games-ssc__cta-title {
    font-size: 1.6em;
  }
  .page-lottery-games-ssc__cta-text {
    font-size: 0.9em;
  }
}