.page-live-dealer-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 40px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-dealer-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-live-dealer-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-live-dealer-games__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
  padding: 20px;
  background-color: #111111;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-top: -80px;
}

.page-live-dealer-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-live-dealer-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live-dealer-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-dealer-games__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-live-dealer-games__introduction-section,
.page-live-dealer-games__features-section,
.page-live-dealer-games__cta-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
  border-bottom: 1px solid #3A2A12;
}

.page-live-dealer-games__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-live-dealer-games__section-description {
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-live-dealer-games__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-dealer-games__game-card {
  background-color: #111111;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(242, 193, 78, 0.3);
}

.page-live-dealer-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-live-dealer-games__game-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-live-dealer-games__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-live-dealer-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-dealer-games__game-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

.page-live-dealer-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-dealer-games__feature-item {
  background-color: #111111;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__feature-icon {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live-dealer-games__feature-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-live-dealer-games__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-live-dealer-games__cta-description {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-live-dealer-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live-dealer-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-dealer-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

@media (max-width: 768px) {
  .page-live-dealer-games__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-live-dealer-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-live-dealer-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-live-dealer-games__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live-dealer-games__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-live-dealer-games__game-showcase,
  .page-live-dealer-games__features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-live-dealer-games__game-image,
  .page-live-dealer-games__feature-icon {
    height: 150px;
    min-width: 150px;
    min-height: 150px;
  }

  .page-live-dealer-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-dealer-games__cta-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-live-dealer-games__hero-image,
  .page-live-dealer-games__game-image,
  .page-live-dealer-games__feature-icon {
    max-width: 100%;
    height: auto;
  }

  .page-live-dealer-games__game-card img,
  .page-live-dealer-games__feature-item img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live-dealer-games__hero-content {
    margin-top: -40px;
  }

  .page-live-dealer-games__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-live-dealer-games__game-showcase,
  .page-live-dealer-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-live-dealer-games__game-image,
  .page-live-dealer-games__feature-icon {
    height: 200px;
  }

  .page-live-dealer-games__cta-button {
    width: 90%;
  }
}