.page-blog-understanding-live-dealer-games {
  padding-top: 10px;
}
.page-blog-understanding-live-dealer-games__hero-section {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  background-color: #1a1a1a;
}
.page-blog-understanding-live-dealer-games__hero-image-wrapper {
  position: relative;
  z-index: 0;
}
.page-blog-understanding-live-dealer-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}
.page-blog-understanding-live-dealer-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.page-blog-understanding-live-dealer-games__main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFD700;
  letter-spacing: 1px;
}
.page-blog-understanding-live-dealer-games__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 25px;
  line-height: 1.6;
  color: #e5e5e5;
}
.page-blog-understanding-live-dealer-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.page-blog-understanding-live-dealer-games__cta-button:hover {
  background-color: #e0b000;
  transform: translateY(-2px);
}
.page-blog-understanding-live-dealer-games__introduction-section,
.page-blog-understanding-live-dealer-games__game-types-section,
.page-blog-understanding-live-dealer-games__benefits-section,
.page-blog-understanding-live-dealer-games__getting-started-section,
.page-blog-understanding-live-dealer-games__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0d0d0d;
  color: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 30px;
}
.page-blog-understanding-live-dealer-games__section-title {
  font-size: 2.2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.page-blog-understanding-live-dealer-games__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e5e5e5;
}
.page-blog-understanding-live-dealer-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.page-blog-understanding-live-dealer-games__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.page-blog-understanding-live-dealer-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.page-blog-understanding-live-dealer-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}
.page-blog-understanding-live-dealer-games__game-card-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}
.page-blog-understanding-live-dealer-games__game-card-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  padding: 0 15px;
  flex-grow: 1;
}
.page-blog-understanding-live-dealer-games__game-card-button {
  display: inline-block;
  background-color: #800080;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
.page-blog-understanding-live-dealer-games__game-card-button:hover {
  background-color: #6a006a;
}
.page-blog-understanding-live-dealer-games__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.page-blog-understanding-live-dealer-games__benefit-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.page-blog-understanding-live-dealer-games__benefit-title {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 10px;
}
.page-blog-understanding-live-dealer-games__benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e5e5;
}
.page-blog-understanding-live-dealer-games__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}
.page-blog-understanding-live-dealer-games__step-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.page-blog-understanding-live-dealer-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #800080;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.page-blog-understanding-live-dealer-games__step-title {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 5px;
}
.page-blog-understanding-live-dealer-games__step-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}
.page-blog-understanding-live-dealer-games__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}
.page-blog-understanding-live-dealer-games__secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #800080;
  color: #800080;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page-blog-understanding-live-dealer-games__secondary-cta-button:hover {
  background-color: #800080;
  color: #fff;
}
.page-blog-understanding-live-dealer-games__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.page-blog-understanding-live-dealer-games__faq-question {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 10px;
}
.page-blog-understanding-live-dealer-games__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e5e5;
}

@media (max-width: 768px) {
  .page-blog-understanding-live-dealer-games__hero-section {
    padding: 30px 15px;
  }
  .page-blog-understanding-live-dealer-games__hero-content {
    padding: 15px;
  }
  .page-blog-understanding-live-dealer-games__main-title {
    font-size: 2rem;
  }
  .page-blog-understanding-live-dealer-games__hero-description {
    font-size: 1rem;
  }
  .page-blog-understanding-live-dealer-games__section-title {
    font-size: 1.8rem;
  }
  .page-blog-understanding-live-dealer-games__introduction-section,
  .page-blog-understanding-live-dealer-games__game-types-section,
  .page-blog-understanding-live-dealer-games__benefits-section,
  .page-blog-understanding-live-dealer-games__getting-started-section,
  .page-blog-understanding-live-dealer-games__faq-section {
    padding: 30px 15px;
  }
  .page-blog-understanding-live-dealer-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-understanding-live-dealer-games__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-blog-understanding-live-dealer-games__secondary-cta-button {
    margin-top: 15px;
    margin-left: 0;
  }
  .page-blog-understanding-live-dealer-games__cta-button {
    margin-bottom: 15px;
  }
  .page-blog-understanding-live-dealer-games__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-blog-understanding-live-dealer-games__hero-section img,
  .page-blog-understanding-live-dealer-games__introduction-section img,
  .page-blog-understanding-live-dealer-games__game-types-section img,
  .page-blog-understanding-live-dealer-games__benefits-section img,
  .page-blog-understanding-live-dealer-games__getting-started-section img,
  .page-blog-understanding-live-dealer-games__faq-section img {
    max-width: 100%;
    height: auto;
  }
}