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

/* Base styles and variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --background-color-dark: #1a1a1a; /* Assuming a dark background for some sections */
  --login-button-color: #EA7C07;
}

.page-casino-live-dealer-features {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  line-height: 1.6;
}

/* Section common styles */
.page-casino-live-dealer-features__section {
  padding: 60px 0;
}

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

.page-casino-live-dealer-features__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-casino-live-dealer-features__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-color-dark);
}

/* Background variations */
.page-casino-live-dealer-features__light-bg {
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__dark-bg .page-casino-live-dealer-features__section-title,
.page-casino-live-dealer-features__dark-bg .page-casino-live-dealer-features__section-description,
.page-casino-live-dealer-features__dark-bg .page-casino-live-dealer-features__card-title {
  color: var(--text-color-light);
}

/* Hero Section */
.page-casino-live-dealer-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Minimal top padding, body handles header offset */
}

.page-casino-live-dealer-features__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-casino-live-dealer-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap slightly for visual flow, but not covering image */
  background: rgba(255, 255, 255, 0.95); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__hero-section .page-casino-live-dealer-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-casino-live-dealer-features__hero-section .page-casino-live-dealer-features__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color-dark);
}

/* CTA Buttons */
.page-casino-live-dealer-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino-live-dealer-features__cta-buttons--center {
  margin-top: 40px;
}

.page-casino-live-dealer-features__btn-primary,
.page-casino-live-dealer-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-casino-live-dealer-features__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-casino-live-dealer-features__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-casino-live-dealer-features__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-casino-live-dealer-features__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

/* Intro Section */
.page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__text-block {
  flex: 1;
}

.page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__image-block {
  flex: 1;
  min-width: 300px;
}

.page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 200px; /* Ensure minimum image size */
  min-height: 200px;
}

/* Features Section */
.page-casino-live-dealer-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-features__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__feature-card .page-casino-live-dealer-features__card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

/* Games Section */
.page-casino-live-dealer-features__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-live-dealer-features__game-card {
  background-color: var(--background-color-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  padding-bottom: 20px;
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__game-card .page-casino-live-dealer-features__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum image size */
  min-height: 200px;
}

.page-casino-live-dealer-features__game-card .page-casino-live-dealer-features__card-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-live-dealer-features__game-card p {
  padding: 0 15px;
  font-size: 0.95rem;
}

/* Why Choose Section */
.page-casino-live-dealer-features__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-features__why-choose-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__why-choose-item .page-casino-live-dealer-features__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

/* Security Section */
.page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__text-block {
  flex: 1;
}

.page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__image-block {
  flex: 1;
  min-width: 300px;
}

.page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 200px; /* Ensure minimum image size */
  min-height: 200px;
}

.page-casino-live-dealer-features__security-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-casino-live-dealer-features__security-section li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-casino-live-dealer-features__security-section li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Promotions Section */
.page-casino-live-dealer-features__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-features__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-color-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-live-dealer-features__promo-card .page-casino-live-dealer-features__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__promo-card .page-casino-live-dealer-features__btn-secondary {
  margin-top: 20px;
  align-self: center;
}

/* How To Play Section */
.page-casino-live-dealer-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-casino-live-dealer-features__step-card {
  background-color: var(--background-color-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-casino-live-dealer-features__step-card .page-casino-live-dealer-features__card-title {
  margin-top: 30px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.page-casino-live-dealer-features__step-card .page-casino-live-dealer-features__btn-primary {
  margin-top: 20px;
  align-self: center;
  width: auto;
}

/* FAQ Section */
.page-casino-live-dealer-features__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-casino-live-dealer-features__faq-item {
  background-color: var(--background-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-casino-live-dealer-features__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-casino-live-dealer-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-casino-live-dealer-features__faq-question:hover {
  background-color: #f0f0f0;
}

.page-casino-live-dealer-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-casino-live-dealer-features__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1rem;
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__faq-answer p {
  margin-bottom: 10px;
}

.page-casino-live-dealer-features__faq-link {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Bottom CTA Section */
.page-casino-live-dealer-features__cta-bottom-section {
  padding: 80px 0;
}

.page-casino-live-dealer-features__cta-bottom-content {
  text-align: center;
}

.page-casino-live-dealer-features__cta-bottom-content .page-casino-live-dealer-features__section-title {
  color: var(--text-color-light);
  margin-bottom: 20px;
}

.page-casino-live-dealer-features__cta-bottom-content .page-casino-live-dealer-features__section-description {
  color: var(--text-color-light);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__content-wrapper,
  .page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__content-wrapper {
    flex-direction: column;
  }
  
  .page-casino-live-dealer-features__hero-content {
    margin-top: -50px;
  }

  .page-casino-live-dealer-features__hero-section .page-casino-live-dealer-features__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-casino-live-dealer-features__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-casino-live-dealer-features__section {
    padding: 40px 0;
  }

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

  .page-casino-live-dealer-features__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }

  .page-casino-live-dealer-features__hero-content {
    padding: 25px 15px;
    margin-top: -30px;
  }

  .page-casino-live-dealer-features__hero-section .page-casino-live-dealer-features__main-title {
    font-size: 1.8rem;
  }

  .page-casino-live-dealer-features__hero-section .page-casino-live-dealer-features__hero-description {
    font-size: 1rem;
  }

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

  /* Responsive images */
  .page-casino-live-dealer-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-live-dealer-features__intro-section .page-casino-live-dealer-features__image-block,
  .page-casino-live-dealer-features__security-section .page-casino-live-dealer-features__image-block {
    min-width: unset;
  }

  /* Responsive buttons */
  .page-casino-live-dealer-features__btn-primary,
  .page-casino-live-dealer-features__btn-secondary,
  .page-casino-live-dealer-features a[class*="button"],
  .page-casino-live-dealer-features a[class*="btn"] {
    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-features__cta-buttons,
  .page-casino-live-dealer-features__button-group,
  .page-casino-live-dealer-features__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }

  .page-casino-live-dealer-features__cta-buttons {
    flex-direction: column; /* Ensure vertical stacking for buttons */
  }

  /* Responsive video - not present in HTML, but for safety */
  .page-casino-live-dealer-features video,
  .page-casino-live-dealer-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-live-dealer-features__video-section,
  .page-casino-live-dealer-features__video-container,
  .page-casino-live-dealer-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* Ensure contrast for text on various backgrounds */
.page-casino-live-dealer-features p,
.page-casino-live-dealer-features li {
  color: inherit; /* Inherit from parent, then adjust for section backgrounds */
}

.page-casino-live-dealer-features__light-bg p,
.page-casino-live-dealer-features__light-bg li {
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__dark-bg p,
.page-casino-live-dealer-features__dark-bg li {
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__faq-answer p {
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__promo-card p {
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__step-card p {
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__feature-card p {
  color: var(--text-color-light);
}

.page-casino-live-dealer-features__game-card p {
  color: var(--text-color-dark);
}

.page-casino-live-dealer-features__why-choose-item p {
  color: var(--text-color-light);
}