.page-live-dealer-games {
  color: #333333; /* Dark text for default (white) body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live-dealer-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1E90FF; /* Auxiliary color as fallback background */
  padding: 0; /* Hero section padding is handled by content inside */
}

.page-live-dealer-games__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
  z-index: 1;
}

.page-live-dealer-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.page-live-dealer-games__hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-live-dealer-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-dealer-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-live-dealer-games__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for button */
  color: #1E90FF; /* Auxiliary color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live-dealer-games__hero-button:hover {
  background-color: #e6c200;
  color: #1565b3;
}

.page-live-dealer-games__section-title {
  font-size: 2.8em;
  color: #1E90FF; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  border-bottom: 3px solid #FFD700; /* Primary color for underline */
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-live-dealer-games__sub-section-title {
  font-size: 2em;
  color: #1E90FF;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-live-dealer-games__text-content {
  font-size: 1em;
  margin-bottom: 20px;
  color: #444444;
}

.page-live-dealer-games__call-to-action-button {
  display: block;
  width: fit-content;
  margin: 40px auto;
  background-color: #FFD700; /* Primary color for CTA button */
  color: #1E90FF; /* Auxiliary color for CTA button text */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-dealer-games__call-to-action-button:hover {
  background-color: #e6c200;
  color: #1565b3;
  transform: translateY(-3px);
}

.page-live-dealer-games__call-to-action-button--large {
  font-size: 1.5em;
  padding: 20px 40px;
}

/* Why Choose Section */
.page-live-dealer-games__why-choose-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-live-dealer-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-dealer-games__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-live-dealer-games__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

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

.page-live-dealer-games__feature-text {
  font-size: 1em;
  color: #666666;
}

/* Popular Games Section */
.page-live-dealer-games__popular-games-section {
  padding: 60px 0;
}

.page-live-dealer-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.page-live-dealer-games__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

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

.page-live-dealer-games__game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live-dealer-games__game-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary color for game button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__game-button:hover {
  background-color: #1565b3;
}

/* Technology & Fairness Section */
.page-live-dealer-games__technology-fairness-section {
  background-color: #f0f8ff; /* Light blue background */
  padding: 60px 0;
}

.page-live-dealer-games__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-dealer-games__tech-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-dealer-games__tech-item:hover {
  transform: translateY(-10px);
}

.page-live-dealer-games__tech-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-live-dealer-games__tech-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-live-dealer-games__tech-text {
  font-size: 1em;
  color: #666666;
}

/* Bonuses Section */
.page-live-dealer-games__bonuses-section {
  padding: 60px 0;
}

.page-live-dealer-games__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-dealer-games__bonus-card {
  background: linear-gradient(135deg, #FFD700, #ffeb80); /* Gradient with primary color */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  color: #1E90FF; /* Auxiliary color for text on gold background */
  transition: transform 0.3s ease;
}

.page-live-dealer-games__bonus-card:hover {
  transform: translateY(-10px);
}

.page-live-dealer-games__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-live-dealer-games__bonus-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-live-dealer-games__bonus-text {
  font-size: 0.95em;
  color: #333333;
  margin-bottom: 20px;
}

.page-live-dealer-games__bonus-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary color for bonus button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__bonus-button:hover {
  background-color: #1565b3;
}

/* How to Start Section */
.page-live-dealer-games__how-to-start-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-live-dealer-games__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-dealer-games__step-card:hover {
  transform: translateY(-10px);
}

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

.page-live-dealer-games__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live-dealer-games__step-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__step-button:hover {
  background-color: #1565b3;
}

/* Responsible Gaming Section */
.page-live-dealer-games__responsible-gaming-section {
  padding: 60px 0;
  background-color: #e6f7ff; /* Lighter auxiliary color */
}

.page-live-dealer-games__responsible-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

.page-live-dealer-games__responsible-item {
  background-color: #ffffff;
  border-left: 5px solid #1E90FF;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-live-dealer-games__responsible-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-live-dealer-games__responsible-button:hover {
  background-color: #e6c200;
}

/* Support Section */
.page-live-dealer-games__support-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-live-dealer-games__support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-dealer-games__support-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-dealer-games__support-card:hover {
  transform: translateY(-10px);
}

.page-live-dealer-games__support-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-live-dealer-games__support-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live-dealer-games__support-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__support-button:hover {
  background-color: #e6c200;
}

/* Conclusion Section */
.page-live-dealer-games__conclusion-section {
  padding: 60px 0;
  background: linear-gradient(to right, #1E90FF, #007bff); /* Blue gradient */
  color: #ffffff;
}

.page-live-dealer-games__conclusion-section .page-live-dealer-games__section-title,
.page-live-dealer-games__conclusion-section .page-live-dealer-games__section-intro {
  color: #ffffff;
  border-bottom-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-dealer-games__hero-title {
    font-size: 3em;
  }
  .page-live-dealer-games__hero-description {
    font-size: 1.1em;
  }
  .page-live-dealer-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-dealer-games__hero-title {
    font-size: 2.5em;
  }
  .page-live-dealer-games__hero-description {
    font-size: 1em;
  }
  .page-live-dealer-games__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live-dealer-games__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-live-dealer-games__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live-dealer-games__features-grid,
  .page-live-dealer-games__games-grid,
  .page-live-dealer-games__tech-grid,
  .page-live-dealer-games__bonus-cards,
  .page-live-dealer-games__steps-grid,
  .page-live-dealer-games__support-methods {
    grid-template-columns: 1fr;
  }
  .page-live-dealer-games__hero-container {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-live-dealer-games__hero-content {
    padding: 20px;
  }
  .page-live-dealer-games__feature-image,
  .page-live-dealer-games__game-image,
  .page-live-dealer-games__tech-image,
  .page-live-dealer-games__bonus-image {
    max-width: 100%;
    height: auto;
  }
  .page-live-dealer-games__call-to-action-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-live-dealer-games__call-to-action-button--large {
    font-size: 1.2em;
    padding: 18px 35px;
  }
  /* Content area images must not cause horizontal scroll */
  .page-live-dealer-games img {
    max-width: 100%;
    height: auto;
  }
  .page-live-dealer-games__responsible-list {
    margin: 20px 0;
  }
  .page-live-dealer-games__responsible-item {
    font-size: 1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-live-dealer-games__hero-title {
    font-size: 2em;
  }
  .page-live-dealer-games__hero-description {
    font-size: 0.9em;
  }
  .page-live-dealer-games__section-title {
    font-size: 1.5em;
  }
  .page-live-dealer-games__hero-container {
    min-height: 350px;
  }
  .page-live-dealer-games__feature-card,
  .page-live-dealer-games__game-card,
  .page-live-dealer-games__tech-item,
  .page-live-dealer-games__bonus-card,
  .page-live-dealer-games__step-card,
  .page-live-dealer-games__support-card {
    padding: 20px;
  }
  .page-live-dealer-games__feature-title,
  .page-live-dealer-games__game-title,
  .page-live-dealer-games__tech-title,
  .page-live-dealer-games__bonus-title,
  .page-live-dealer-games__step-title,
  .page-live-dealer-games__support-title {
    font-size: 1.3em;
  }
}