.page-casino-live-dealer-games {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
  overflow-x: hidden;
}

.page-casino-live-dealer-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-casino-live-dealer-games__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile-first, adjusted for desktop */
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
}

.page-casino-live-dealer-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-casino-live-dealer-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-casino-live-dealer-games__hero-content {
  padding: 20px;
  max-width: 900px;
}

.page-casino-live-dealer-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

.page-casino-live-dealer-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  min-height: 44px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.page-casino-live-dealer-games__hero-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

/* Intro Section */
.page-casino-live-dealer-games__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-casino-live-dealer-games__intro-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__intro-text {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__intro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-casino-live-dealer-games__feature-item {
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  text-align: center;
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.page-casino-live-dealer-games__feature-icon {
  width: 100%; /* Ensure images fill their container */
  max-width: 400px; /* Limit max width of feature icons */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-casino-live-dealer-games__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Games Section */
.page-casino-live-dealer-games__games-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-casino-live-dealer-games__games-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__games-description {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-casino-live-dealer-games__game-tile {
  display: block;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-live-dealer-games__game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-casino-live-dealer-games__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-live-dealer-games__view-all-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  min-height: 44px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.page-casino-live-dealer-games__view-all-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

/* Providers Section */
.page-casino-live-dealer-games__providers-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-casino-live-dealer-games__providers-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__providers-description {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.page-casino-live-dealer-games__provider-logos img {
  max-width: 200px; /* Ensure max-width adheres to the 200px minimum if it's a content image */
  height: 200px; /* Enforce 200x200 for content images */
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-live-dealer-games__provider-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA Section */
.page-casino-live-dealer-games__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  margin-top: 40px;
}

.page-casino-live-dealer-games__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-casino-live-dealer-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  min-height: 44px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.page-casino-live-dealer-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

/* FAQ Section */
.page-casino-live-dealer-games__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-casino-live-dealer-games__faq-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-casino-live-dealer-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-casino-live-dealer-games__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2F6BFF;
  cursor: pointer; /* Implies expand/collapse functionality */
}

.page-casino-live-dealer-games__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
}

/* Responsive adjustments */
@media (min-width: 850px) {
  .page-casino-live-dealer-games__hero-section {
    flex-direction: row; /* Desktop: image left, content right */
    text-align: left;
    padding: 0;
  }

  .page-casino-live-dealer-games__hero-image-wrapper {
    flex: 1;
    max-width: 60%; /* Image takes more space */
  }

  .page-casino-live-dealer-games__hero-content {
    flex: 1;
    max-width: 40%; /* Content takes less space */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .page-casino-live-dealer-games__hero-title {
    font-size: 3em;
  }

  .page-casino-live-dealer-games__hero-description {
    font-size: 1.2em;
  }

  .page-casino-live-dealer-games__intro-features {
    justify-content: space-between;
  }

  .page-casino-live-dealer-games__feature-item {
    flex: 0 1 calc(33% - 20px);
  }

  .page-casino-live-dealer-games__game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Provider logos already adjusted to 200x200 */
}

@media (max-width: 849px) {
  .page-casino-live-dealer-games__hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem);
  }

  .page-casino-live-dealer-games__intro-title,
  .page-casino-live-dealer-games__games-title,
  .page-casino-live-dealer-games__providers-title,
  .page-casino-live-dealer-games__cta-title,
  .page-casino-live-dealer-games__faq-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-casino-live-dealer-games__feature-item {
    flex: 1 1 100%;
  }

  .page-casino-live-dealer-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

@media (max-width: 549px) {
  .page-casino-live-dealer-games__container {
    padding: 15px;
  }

  .page-casino-live-dealer-games__hero-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .page-casino-live-dealer-games__intro-title,
  .page-casino-live-dealer-games__games-title,
  .page-casino-live-dealer-games__providers-title,
  .page-casino-live-dealer-games__cta-title,
  .page-casino-live-dealer-games__faq-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .page-casino-live-dealer-games__game-grid {
    grid-template-columns: 1fr;
  }
}

/* Global content image minimum size enforcement */
.page-casino-live-dealer-games img {
  min-width: 200px;
  min-height: 200px;
}