.page-live-platform-features {
  color: #000000; /* Dark text for light background */
}

.page-live-platform-features__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding-bottom: 60px;
}

.page-live-platform-features__hero-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.page-live-platform-features__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.2;
}

.page-live-platform-features__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 30px;
}

.page-live-platform-features__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live-platform-features__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-platform-features__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-live-platform-features__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-live-platform-features__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live-platform-features__button--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-live-platform-features__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 12px;
}

.page-live-platform-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-platform-features__overview-section,
.page-live-platform-features__benefits-section,
.page-live-platform-features__how-to-start-section,
.page-live-platform-features__responsible-gaming-section,
.page-live-platform-features__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live-platform-features__overview-section {
  background-color: #f8f8f8;
}

.page-live-platform-features__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
}

.page-live-platform-features__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-live-platform-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live-platform-features__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-platform-features__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-live-platform-features__feature-icon {
  width: 100%;
  max-width: 400px; /* Ensures image is not too wide */
  height: auto;
  margin: 0 auto 25px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-live-platform-features__feature-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-platform-features__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-live-platform-features__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-live-platform-features__benefit-item {
  background-color: #fefefe;
  border-left: 5px solid #FCBC45;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-live-platform-features__benefit-heading {
  font-size: 1.6em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-platform-features__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-live-platform-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-platform-features__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-platform-features__step-title {
  font-size: 1.7em;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-platform-features__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-live-platform-features__button--register-small,
.page-live-platform-features__button--deposit-small,
.page-live-platform-features__button--play-small {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-live-platform-features__button--register-small:hover,
.page-live-platform-features__button--deposit-small:hover,
.page-live-platform-features__button--play-small:hover {
  background-color: #e0a538;
}

.page-live-platform-features__responsible-gaming-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-live-platform-features__cta-section {
  text-align: center;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
}

.page-live-platform-features__cta-section .page-live-platform-features__section-title,
.page-live-platform-features__cta-section .page-live-platform-features__section-intro {
  color: #FFFFFF;
}

.page-live-platform-features__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}