/* style/casino-live-dealer-games.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-casino-live-dealer-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-casino-live-dealer-games__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-live-dealer-games__section-title--white {
  color: #ffffff;
}

.page-casino-live-dealer-games__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-casino-live-dealer-games__section-description--white {
  color: #ffffff;
}

.page-casino-live-dealer-games .highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Hero Section */
.page-casino-live-dealer-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

.page-casino-live-dealer-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-casino-live-dealer-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-casino-live-dealer-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 50px; /* Push content down to ensure it's not on the image's face */
}

.page-casino-live-dealer-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-live-dealer-games__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-live-dealer-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-casino-live-dealer-games__btn-primary,
.page-casino-live-dealer-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-casino-live-dealer-games__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-casino-live-dealer-games__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-casino-live-dealer-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-casino-live-dealer-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino-live-dealer-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* About Section */
.page-casino-live-dealer-games__about-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for this section */
  color: #333333; /* Dark text for light background */
}

.page-casino-live-dealer-games__about-section .highlight {
  color: #26A9E0;
}

.page-casino-live-dealer-games__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-casino-live-dealer-games__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-casino-live-dealer-games__image-wrapper {
  text-align: center;
}

.page-casino-live-dealer-games__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 800px; /* Display size */
  height: 600px; /* Display size */
}

/* Features Section */
.page-casino-live-dealer-games__features-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff;
}

.page-casino-live-dealer-games__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-games__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-casino-live-dealer-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-casino-live-dealer-games__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-casino-live-dealer-games__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__feature-card p {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-casino-live-dealer-games__games-section .highlight {
  color: #26A9E0;
}

.page-casino-live-dealer-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-live-dealer-games__game-card:hover {
  transform: translateY(-5px);
}

.page-casino-live-dealer-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-live-dealer-games__game-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__game-card p {
  font-size: 1em;
  margin-bottom: 25px;
  color: #555555;
}

/* How To Play Section */
.page-casino-live-dealer-games__how-to-play-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-casino-live-dealer-games__how-to-play-section .highlight {
  color: #26A9E0;
}

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

.page-casino-live-dealer-games__step-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-live-dealer-games__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__step-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__step-card p {
  font-size: 1em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* Promotions Section */
.page-casino-live-dealer-games__promotions-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  color: #333333;
}

.page-casino-live-dealer-games__promotions-section .highlight {
  color: #26A9E0;
}

.page-casino-live-dealer-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-games__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-live-dealer-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-casino-live-dealer-games__promo-image {
  width: 100%;
  height: 200px; /* Min size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-live-dealer-games__promo-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__promo-card p {
  font-size: 1em;
  margin-bottom: 25px;
  color: #555555;
}

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

.page-casino-live-dealer-games__faq-section .highlight {
  color: #26A9E0;
}

.page-casino-live-dealer-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino-live-dealer-games__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-casino-live-dealer-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-casino-live-dealer-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino-live-dealer-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-casino-live-dealer-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-casino-live-dealer-games__faq-item[open] .page-casino-live-dealer-games__faq-toggle {
  transform: rotate(45deg);
}

.page-casino-live-dealer-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.7;
}

/* CTA Section */
.page-casino-live-dealer-games__cta-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  color: #333333;
  text-align: center;
}

.page-casino-live-dealer-games__cta-section .highlight {
  color: #26A9E0;
}

.page-casino-live-dealer-games__cta-section .page-casino-live-dealer-games__section-description {
  color: #555555;
}

.page-casino-live-dealer-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Dark/Light Background classes for intelligent contrast */
.page-casino-live-dealer-games__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-casino-live-dealer-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-live-dealer-games__main-title {
    font-size: clamp(2.2em, 4.5vw, 3.5em);
  }

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

@media (max-width: 768px) {
  .page-casino-live-dealer-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino-live-dealer-games__container {
    padding: 0 15px;
  }

  .page-casino-live-dealer-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-casino-live-dealer-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-casino-live-dealer-games__hero-section {
    min-height: 500px;
    padding-bottom: 40px;
  }

  .page-casino-live-dealer-games__hero-content {
    margin-top: 30px;
  }

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

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

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

  .page-casino-live-dealer-games__btn-primary,
  .page-casino-live-dealer-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino-live-dealer-games__grid-2-cols,
  .page-casino-live-dealer-games__grid-3-cols,
  .page-casino-live-dealer-games__steps-grid,
  .page-casino-live-dealer-games__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-live-dealer-games__about-section,
  .page-casino-live-dealer-games__features-section,
  .page-casino-live-dealer-games__games-section,
  .page-casino-live-dealer-games__how-to-play-section,
  .page-casino-live-dealer-games__promotions-section,
  .page-casino-live-dealer-games__faq-section,
  .page-casino-live-dealer-games__cta-section {
    padding: 40px 0;
  }

  /* Mobile image and video responsiveness */
  .page-casino-live-dealer-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-casino-live-dealer-games__section,
  .page-casino-live-dealer-games__card,
  .page-casino-live-dealer-games__container,
  .page-casino-live-dealer-games__image-wrapper,
  .page-casino-live-dealer-games__video-section,
  .page-casino-live-dealer-games__video-container,
  .page-casino-live-dealer-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-casino-live-dealer-games__video-section {
    padding-top: 10px !important; /* Small top padding */
  }

  .page-casino-live-dealer-games__hero-image {
    filter: brightness(0.3); /* Even darker on mobile for better text contrast */
  }

  .page-casino-live-dealer-games__feature-icon {
    width: 150px; /* Adjust min size for mobile */
    height: 112px; /* Adjust min size for mobile */
  }

  .page-casino-live-dealer-games__game-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-casino-live-dealer-games__promo-image {
    height: 180px; /* Adjust height for mobile */
  }
}

@media (max-width: 480px) {
  .page-casino-live-dealer-games__main-title {
    font-size: clamp(1.8em, 9vw, 2.5em);
  }

  .page-casino-live-dealer-games__section-title {
    font-size: 1.8em;
  }

  .page-casino-live-dealer-games__hero-cta-buttons,
  .page-casino-live-dealer-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}