/* style/lottery-games-ssc-betting-tips.css */
.page-lottery-games-ssc-betting-tips {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #1a0033; /* Darker variant of main color */
}

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

.page-lottery-games-ssc-betting-tips__hero {
  background: linear-gradient(135deg, #4B0082 0%, #2e0057 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Gold text for hero title */
}

.page-lottery-games-ssc-betting-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-lottery-games-ssc-betting-tips__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-lottery-games-ssc-betting-tips__btn--primary {
  background-color: #FFD700;
  color: #4B0082; /* Dark text on gold button */
}

.page-lottery-games-ssc-betting-tips__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-lottery-games-ssc-betting-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082;
  transform: translateY(-3px);
}

.page-lottery-games-ssc-betting-tips__btn--tertiary {
  background-color: #6a0dad; /* A slightly lighter purple */
  color: #FFFFFF;
}

.page-lottery-games-ssc-betting-tips__btn--tertiary:hover {
  background-color: #550a8c;
  transform: translateY(-3px);
}

.page-lottery-games-ssc-betting-tips__section {
  padding: 60px 0;
  text-align: left;
}

.page-lottery-games-ssc-betting-tips__section--alt-bg {
  background-color: #2e0057; /* Slightly lighter purple for alternating sections */
}

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

.page-lottery-games-ssc-betting-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
}

.page-lottery-games-ssc-betting-tips__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-lottery-games-ssc-betting-tips__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.page-lottery-games-ssc-betting-tips__content-block:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text layout */
}

.page-lottery-games-ssc-betting-tips__content-block p,
.page-lottery-games-ssc-betting-tips__content-block ul {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-lottery-games-ssc-betting-tips__content-block ul {
  list-style-type: disc;
  margin-left: 40px;
}

.page-lottery-games-ssc-betting-tips__content-block li {
  margin-bottom: 10px;
}

.page-lottery-games-ssc-betting-tips__image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-lottery-games-ssc-betting-tips__image--left {
  margin-right: 20px;
}

.page-lottery-games-ssc-betting-tips__image--right {
  margin-left: 20px;
}

.page-lottery-games-ssc-betting-tips__cta-section {
  background: linear-gradient(45deg, #4B0082, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #4B0082;
}

.page-lottery-games-ssc-betting-tips__cta-title {
  font-size: 2.8em;
  color: #4B0082; /* Dark text on lighter background */
  margin-bottom: 20px;
}

.page-lottery-games-ssc-betting-tips__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #330066; /* Darker shade for better contrast */
}

.page-lottery-games-ssc-betting-tips__cta-buttons {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-ssc-betting-tips__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-games-ssc-betting-tips__hero-subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games-ssc-betting-tips__section-title {
    font-size: 2em;
  }
  .page-lottery-games-ssc-betting-tips__subsection-title {
    font-size: 1.5em;
  }
  .page-lottery-games-ssc-betting-tips__content-block {
    flex-direction: column;
  }
  .page-lottery-games-ssc-betting-tips__content-block:nth-child(even) {
    flex-direction: column;
  }
  .page-lottery-games-ssc-betting-tips__image {
    max-width: 80%;
    margin: 20px 0 !important;
  }
  .page-lottery-games-ssc-betting-tips__content-block p,
  .page-lottery-games-ssc-betting-tips__content-block ul {
    padding: 0;
  }
  .page-lottery-games-ssc-betting-tips__cta-title {
    font-size: 2.2em;
  }
  .page-lottery-games-ssc-betting-tips__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-ssc-betting-tips__hero {
    padding: 80px 0;
  }
  .page-lottery-games-ssc-betting-tips__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-games-ssc-betting-tips__hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-games-ssc-betting-tips__section {
    padding: 40px 0;
  }
  .page-lottery-games-ssc-betting-tips__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-ssc-betting-tips__subsection-title {
    font-size: 1.3em;
  }
  .page-lottery-games-ssc-betting-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-lottery-games-ssc-betting-tips__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-ssc-betting-tips__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-games-ssc-betting-tips__section-title {
    font-size: 1.5em;
  }
  .page-lottery-games-ssc-betting-tips__subsection-title {
    font-size: 1.2em;
  }
  .page-lottery-games-ssc-betting-tips__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-lottery-games-ssc-betting-tips__cta-title {
    font-size: 1.5em;
  }
}