:root {
  --page-bg: #08160F; /* Background */
  --card-bg: #11271B; /* Card BG */
  --text-main: #F2FFF6; /* Text Main */
  --text-secondary: #A7D9B8; /* Text Secondary */
  --border-color: #2E7A4E; /* Border */
  --glow-color: #57E38D; /* Glow */
  --gold-color: #F2C14E; /* Gold */
  --divider-color: #1E3A2A; /* Divider */
  --deep-green: #0A4B2C; /* Deep Green */
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  --btn-gradient-hover: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Button gradient hover */
  --primary-color: #11A84E; /* Main color */
  --secondary-color: #22C768; /* Auxiliary color */
}

.page-blog-3bet-app-features {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main); /* Main text color, chosen for dark background */
  background-color: var(--page-bg); /* Page background from custom palette */
  line-height: 1.6;
}

/* Hero Section */
.page-blog-3bet-app-features__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
  background: var(--page-bg); /* Ensure hero background matches page */
}

.page-blog-3bet-app-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-3bet-app-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

.page-blog-3bet-app-features__hero-content {
  max-width: 900px;
  padding: 40px 20px 0;
  z-index: 1;
  position: relative; /* Ensure content is above any potential background elements */
}