.page-blog-y88-game-features {
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Background for main content area */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-y88-game-features__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
}

.page-blog-y88-game-features__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 600px; /* Limit height to prevent excessive scroll */
  overflow: hidden;
}

.page-blog-y88-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop to fill space */
}

.page-blog-y88-game-features__hero-content {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-y88-game-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #FFD36B; /* Glow color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-y88-game-features__description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-y88-game-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-blog-y88-game-features__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-y88-game-features__btn-primary,
.page-blog-y88-game-features__btn-secondary,
.page-blog-y88-game-features__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-y88-game-features__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-blog-y88-game-features__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-blog-y88-game-features__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Main Text */
  border: 2px solid #3A2A12; /* Border */
}

.page-blog-y88-game-features__btn-secondary:hover {
  background: #222222;
  border-color: #F2C14E;
  color: #F2C14E;
}

.page-blog-y88-game-features__btn-link {
  background: none;
  border: none;
  color: #FFD36B;
  padding: 5px 0;
  text-align: left;
  display: block;
  margin-top: 15px;
  font-size: 1rem;
}

.page-blog-y88-game-features__btn-link::after {
  content: ' →';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-blog-y88-game-features__btn-link:hover {
  color: #F2C14E;
}

.page-blog-y88-game-features__btn-link:hover::after {
  margin-left: 10px;
}

/* General Sections */
.page-blog-y88-game-features__section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Consistent background */
}

.page-blog-y88-game-features__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-blog-y88-game-features p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-blog-y88-game-features__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Cards */
.page-blog-y88-game-features__features-grid,
.page-blog-y88-game-features__promo-grid,
.page-blog-y88-game-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-y88-game-features__feature-card,
.page-blog-y88-game-features__promo-card,
.page-blog-y88-game-features__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; /* Align text to left */
}