:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --card-bg: #10233F;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B; /* This is the body background color from shared.css */
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
}

.page-blog-newest-sic-bo-game-features {
  color: var(--text-main); /* Body is deep-navy (dark), so text is light */
  background-color: var(--deep-navy); /* Ensure consistency, though body handles this */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

.page-blog-newest-sic-bo-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HERO Section */
.page-blog-newest-sic-bo-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* Fixed header spacing: body handles padding-top, this section only needs a small top margin */
  padding-top: 10px; 
  background-color: var(--deep-navy); /* Consistent with body */
  overflow: hidden; /* Prevent image overflow */
}

.page-blog-newest-sic-bo-game-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-blog-newest-sic-bo-game-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-newest-sic-bo-game-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-newest-sic-bo-game-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-newest-sic-bo-game-features__hero-content h1 {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Use clamp for H1 as per instructions */
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-newest-sic-bo-game-features__hero-content p {
  font-size: 1.1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-newest-sic-bo-game-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none; /* No border for gradient buttons */
  cursor: pointer;
  white-space: normal; /* Allow text wrap for buttons */
  word-wrap: break-word; /* Allow text wrap for buttons */
  max-width: 100%; /* Ensure button adapts to container width */
  box-sizing: border-box; /* Include padding/border in width */
}

.page-blog-newest-sic-bo-game-features__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* General Section Styling */
.page-blog-newest-sic-bo-game-features__section {
  padding: 60px 0;
  background-color: var(--deep-navy);
  border-bottom: 1px solid var(--divider-color);
  box-sizing: border-box; /* Ensure padding/border in width */
}

.page-blog-newest-sic-bo-game-features__section:last-of-type {
  border-bottom: none;
}

.page-blog-newest-sic-bo-game-features__section-title {
  font-size: 2.5em;
  color: var(--glow-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(79, 168, 255, 0.3);
}

.page-blog-newest-sic-bo-game-features__section-description {
  font-size: 1em;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Card Styling */
.page-blog-newest-sic-bo-game-features__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in a grid have equal height */
  display: flex;
  flex-direction: column;
}

.page-blog-newest-sic-bo-game-features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-newest-sic-bo-game-features__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-newest-sic-bo-game-features__card p {
  font-size: 0.95em;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* Grid Layouts */
.page-blog-newest-sic-bo-game-features__features-grid,
.page-blog-newest-sic-bo-game-features__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Feature Items */
.page-blog-newest-sic-bo-game-features__feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-newest-sic-bo-game-features__feature-item--reverse {
  flex-direction: row-reverse;
}

.page-blog-newest-sic-bo-game-features__feature-image {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
}

.page-blog-newest-sic-bo-game-features__feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-newest-sic-bo-game-features__feature-content {
  flex: 1;
  color: var(--text-secondary);
}

.page-blog-newest-sic-bo-game-features__feature-content h3 {
  font-size: 1.8em;
  color: var(--glow-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-newest-sic-bo-game-features__feature-content p {
  margin-bottom: 20px;
  font-size: 1em;
}

.page-blog-newest-sic-bo-game-features__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-newest-sic-bo-game-features__feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.page-blog-newest-sic-bo-game-features__feature-list li::before {
  content: '✓';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Download Guide Steps */
.page-blog-newest-sic-bo-game-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-newest-sic-bo-game-features__step-card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  height: 100%;
}

.page-blog-newest-sic-bo-game-features__step-card:hover {
  transform: translateY(-5px);
}

.page-blog-newest-sic-bo-game-features__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-main);
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid var(--gold-color);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-blog-newest-sic-bo-game-features__step-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}