.page-lottery-games-ssc {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1A2B; /* Main dark background */
  line-height: 1.6;
}

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

.page-lottery-games-ssc__section {
  padding: 80px 0;
  text-align: center;
}

.page-lottery-games-ssc__section--about,
.page-lottery-games-ssc__section--strategies,
.page-lottery-games-ssc__section--faq {
  background-color: #1a273b; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games-ssc__hero {
  background: linear-gradient(135deg, #0F1A2B 0%, #2a3a52 100%);
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-ssc__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
}

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

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

.page-lottery-games-ssc__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-lottery-games-ssc__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-lottery-games-ssc__hero-image-wrapper {
  z-index: 1;
}

.page-lottery-games-ssc__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

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

.page-lottery-games-ssc__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery-games-ssc__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-lottery-games-ssc__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

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

.page-lottery-games-ssc__text-block {
  flex: 1;
}

.page-lottery-games-ssc__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-lottery-games-ssc__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-ssc__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-lottery-games-ssc__benefits-list li {
  background-color: #2a3a52;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-lottery-games-ssc__benefits-list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

.page-lottery-games-ssc__benefits-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  line-height: 1;
  margin-top: -5px;
}

.page-lottery-games-ssc__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #CCCCCC;
}

.page-lottery-games-ssc__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-lottery-games-ssc__steps-list li {
  background-color: #2a3a52;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-ssc__step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.page-lottery-games-ssc__step-number {
  background-color: #FFD700;
  color: #0F1A2B;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-lottery-games-ssc__steps-list h3 {
  color: #FFD700;
  margin: 0;
  font-size: 1.6em;
}

.page-lottery-games-ssc__steps-list p {
  margin-bottom: 15px;
}

.page-lottery-games-ssc__steps-list a {
  color: #FFD700;
  text-decoration: underline;
}

.page-lottery-games-ssc__steps-list a:hover {
  color: #f7e070;
}

.page-lottery-games-ssc__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-ssc__cta-bottom {
  margin-top: 60px;
}

.page-lottery-games-ssc__faq-item {
  background-color: #2a3a52;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-ssc__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-lottery-games-ssc__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-lottery-games-ssc__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-lottery-games-ssc__faq-answer {
  color: #CCCCCC;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 10px;
}

.page-lottery-games-ssc__faq-answer.active {
  display: block;
}

.page-lottery-games-ssc__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-lottery-games-ssc__faq-answer a:hover {
  color: #f7e070;
}

.page-lottery-games-ssc__section--call-to-action {
  background: linear-gradient(45deg, #FFD700, #b39700);
  padding: 100px 0;
  color: #0F1A2B; /* Dark text on light background */
}

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

.page-lottery-games-ssc__cta-title {
  font-size: 3em;
  color: #0F1A2B;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-ssc__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
}

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

.page-lottery-games-ssc__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0F1A2B; /* Dark text */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

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

.page-lottery-games-ssc__btn--secondary:hover {
  background-color: #FFD700;
  color: #0F1A2B;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.page-lottery-games-ssc__btn--huge {
  padding: 20px 40px;
  font-size: 1.5em;
  background-color: #0F1A2B;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-ssc__btn--huge:hover {
  background-color: #2a3a52;
  color: #f7e070;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-ssc__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-lottery-games-ssc__hero-content {
    max-width: 100%;
  }

  .page-lottery-games-ssc__hero-title {
    font-size: 2.8em;
  }

  .page-lottery-games-ssc__hero-description {
    font-size: 1.1em;
  }

  .page-lottery-games-ssc__hero-actions {
    justify-content: center;
  }

  .page-lottery-games-ssc__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-lottery-games-ssc__content-grid:nth-child(even) {
    flex-direction: column;
  }

  .page-lottery-games-ssc__section-title {
    font-size: 2.2em;
  }

  .page-lottery-games-ssc__subsection-title {
    font-size: 1.5em;
  }

  .page-lottery-games-ssc__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

@media (max-width: 768px) {
  .page-lottery-games-ssc__hero {
    padding: 60px 15px;
  }

  .page-lottery-games-ssc__hero-title {
    font-size: 2.2em;
  }

  .page-lottery-games-ssc__hero-description {
    font-size: 1em;
  }

  .page-lottery-games-ssc__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games-ssc__section {
    padding: 60px 0;
  }

  .page-lottery-games-ssc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-lottery-games-ssc__steps-list li,
  .page-lottery-games-ssc__benefits-list li,
  .page-lottery-games-ssc__faq-item {
    padding: 20px;
  }

  .page-lottery-games-ssc__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-lottery-games-ssc__steps-list h3 {
    font-size: 1.4em;
  }

  .page-lottery-games-ssc__faq-question {
    font-size: 1.2em;
  }

  .page-lottery-games-ssc__cta-title {
    font-size: 2.2em;
  }

  .page-lottery-games-ssc__cta-description {
    font-size: 1em;
  }

  .page-lottery-games-ssc__btn--huge {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-ssc__hero-title {
    font-size: 1.8em;
  }

  .page-lottery-games-ssc__section-title {
    font-size: 1.6em;
  }

  .page-lottery-games-ssc__cta-title {
    font-size: 1.8em;
  }
}