/* style/lottery-ssc.css */
.page-lottery-ssc {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0F133F; /* Darker blue for overall background */
}

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

/* Hero Section */
.page-lottery-ssc__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0F133F 100%); /* Main brand color gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-lottery-ssc__hero-description {
  font-size: 1.4em;
  color: #B0BEC5; /* Light blue-grey for description */
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-lottery-ssc__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-lottery-ssc__btn--secondary {
  background-color: #1A237E; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-lottery-ssc__btn--secondary:hover {
  background-color: #2D3A8F;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.page-lottery-ssc__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-lottery-ssc__btn--tertiary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-lottery-ssc__introduction, 
.page-lottery-ssc__strategies, 
.page-lottery-ssc__tips, 
.page-lottery-ssc__conclusion {
  padding: 60px 0;
  background-color: #1A237E; /* Main brand color for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-lottery-ssc__introduction p, 
.page-lottery-ssc__strategies p, 
.page-lottery-ssc__tips p, 
.page-lottery-ssc__conclusion p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #CFD8DC; /* Light blue-grey for body text */
}

/* Images */
.page-lottery-ssc__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-ssc__image--large {
  max-width: 90%;
}

.page-lottery-ssc__image--small {
  max-width: 50%;
}

/* Strategy Items */
.page-lottery-ssc__strategy-item {
  background-color: #283593; /* Slightly lighter blue for strategy blocks */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-ssc__strategy-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for strategy titles */
  margin-bottom: 15px;
}

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

.page-lottery-ssc__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #B0BEC5;
}

.page-lottery-ssc__list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold bullet point */
  font-size: 0.8em;
  top: 5px;
}

.page-lottery-ssc__list--tips li::before {
  content: '✔';
  font-size: 1em;
  top: 3px;
}

/* CTA Banner */
.page-lottery-ssc__cta-banner {
  background-color: #0F133F; /* Dark blue for CTA banner */
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-lottery-ssc__cta-banner p {
  font-size: 1.5em;
  color: #FFD700; /* Gold text */
  margin-bottom: 30px;
  font-weight: bold;
}

/* Final CTA */
.page-lottery-ssc__final-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-lottery-ssc__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-lottery-ssc__cta-banner p {
    font-size: 1.2em;
  }

  .page-lottery-ssc__final-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-ssc__btn--tertiary {
    margin-left: 0;
  }

  .page-lottery-ssc__image--small {
    max-width: 80%;
  }
}

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

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

  .page-lottery-ssc__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-lottery-ssc__strategy-title {
    font-size: 1.3em;
  }

  .page-lottery-ssc__cta-banner p {
    font-size: 1em;
  }

  .page-lottery-ssc__introduction, 
  .page-lottery-ssc__strategies, 
  .page-lottery-ssc__tips, 
.page-lottery-ssc__conclusion {
    padding: 40px 0;
  }
}