.page-sc88 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-sc88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-sc88__section-title {
  font-size: 2.2em;
  color: #2563eb;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-sc88__subsection-title {
  font-size: 1.8em;
  color: #2563eb;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-sc88__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444444;
}

/* Hero Section */
.page-sc88__hero-section {
  padding-top: 10px; /* Small decorative padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #64748b);
  color: #ffffff;
}

.page-sc88__hero-image-wrapper {
  margin-bottom: 20px;
}

.page-sc88__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-sc88__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-sc88__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-sc88__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e7ff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sc88__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-sc88__btn-primary,
.page-sc88__btn-secondary,
.page-sc88__btn-game,
.page-sc88__btn-step {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}

.page-sc88__btn-primary {
  background-color: #f0ad4e; /* Brighter orange for primary CTA */
  color: #ffffff;
  border: 2px solid #f0ad4e;
  box-shadow: 0 4px 10px rgba(240, 173, 78, 0.4);
}

.page-sc88__btn-primary:hover {
  background-color: #ec971f;
  border-color: #ec971f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(240, 173, 78, 0.6);
}