.page-casino-live-dealer-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Deep dark grey for readability on light background */
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

.page-casino-live-dealer-games__intro-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino-live-dealer-games__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff; /* White text on gradient background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-casino-live-dealer-games__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly off-white for softer look */
}

.page-casino-live-dealer-games__image-wrapper {
  margin-bottom: 40px;
}

.page-casino-live-dealer-games__banner-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-casino-live-dealer-games__cta-button {
  display: inline-block;
  padding: 16px 35px;
  background: #FFD700; /* Secondary color for CTA */
  color: #CC0000; /* Primary color for text on secondary background */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-casino-live-dealer-games__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-casino-live-dealer-games__cta-button--secondary {
  background: #CC0000;
  color: #ffffff;
}

.page-casino-live-dealer-games__cta-button--secondary:hover {
  background: #a30000;
}

.page-casino-live-dealer-games__cta-button--tertiary {
  background: #f0f0f0;
  color: #CC0000;
  border: 1px solid #CC0000;
}

.page-casino-live-dealer-games__cta-button--tertiary:hover {
  background: #e0e0e0;
}

.page-casino-live-dealer-games__cta-button--inverted {
  background: #ffffff;
  color: #CC0000;
  border: 2px solid #CC0000;
}

.page-casino-live-dealer-games__cta-button--inverted:hover {
  background: #f0f0f0;
  color: #a30000;
}

.page-casino-live-dealer-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #CC0000; /* Primary color for section titles */
  position: relative;
  padding-bottom: 15px;
}

.page-casino-live-dealer-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Secondary color underline */
  border-radius: 2px;
}

.page-casino-live-dealer-games__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-casino-live-dealer-games__why-choose-us, 
.page-casino-live-dealer-games__game-types, 
.page-casino-live-dealer-games__how-to-play, 
.page-casino-live-dealer-games__tips-strategy, 
.page-casino-live-dealer-games__responsible-gambling, 
.page-casino-live-dealer-games__join-us {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-casino-live-dealer-games__why-choose-us {
  margin-top: -40px; /* Pull up to overlap intro section */
  position: relative;
  z-index: 1;
}

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

.page-casino-live-dealer-games__feature-card, .page-casino-live-dealer-games__game-card {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-casino-live-dealer-games__card-title, .page-casino-live-dealer-games__game-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-casino-live-dealer-games__feature-card p, .page-casino-live-dealer-games__game-card p {
  color: #666666;
  font-size: 1em;
  line-height: 1.6;
}

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

.page-casino-live-dealer-games__game-image {
  height: 250px;
}

.page-casino-live-dealer-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #CC0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-casino-live-dealer-games__game-button:hover {
  background: #e6c200;
}

.page-casino-live-dealer-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 50px;
}

.page-casino-live-dealer-games__step-item {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-casino-live-dealer-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 30px;
  background: #CC0000;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-casino-live-dealer-games__step-item h3 {
  color: #CC0000;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-casino-live-dealer-games__step-item p {
  color: #666666;
  font-size: 1em;
}

.page-casino-live-dealer-games__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #CC0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-casino-live-dealer-games__step-button:hover {
  background: #e6c200;
}

.page-casino-live-dealer-games__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-casino-live-dealer-games__tip-item {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-left: 5px solid #CC0000; /* Accent line */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-casino-live-dealer-games__tip-item h3 {
  color: #CC0000;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-casino-live-dealer-games__tip-item p {
  color: #666666;
  font-size: 0.95em;
}

.page-casino-live-dealer-games__responsible-gambling {
  background: #f0f0f0;
  text-align: center;
}

.page-casino-live-dealer-games__responsible-gambling .page-casino-live-dealer-games__section-title {
  color: #333333;
}

.page-casino-live-dealer-games__responsible-gambling .page-casino-live-dealer-games__section-title::after {
  background-color: #CC0000;
}

.page-casino-live-dealer-games__join-us {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #ffffff;
  text-align: center;
}

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

.page-casino-live-dealer-games__join-us .page-casino-live-dealer-games__section-title::after {
  background-color: #ffffff;
}

.page-casino-live-dealer-games__join-us .page-casino-live-dealer-games__text-block {
  color: #f0f0f0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-live-dealer-games__main-title {
    font-size: 2.8em;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 2em;
  }
  .page-casino-live-dealer-games__cta-button {
    padding: 14px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-casino-live-dealer-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-casino-live-dealer-games__intro-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-casino-live-dealer-games__main-title {
    font-size: 2.2em;
  }
  .page-casino-live-dealer-games__description {
    font-size: 1em;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-casino-live-dealer-games__text-block {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-casino-live-dealer-games__why-choose-us, 
  .page-casino-live-dealer-games__game-types, 
  .page-casino-live-dealer-games__how-to-play, 
  .page-casino-live-dealer-games__tips-strategy, 
  .page-casino-live-dealer-games__responsible-gambling, 
  .page-casino-live-dealer-games__join-us {
    padding: 50px 0;
  }
  .page-casino-live-dealer-games__why-choose-us {
    margin-top: -20px;
  }
  .page-casino-live-dealer-games__container {
    padding: 0 15px;
  }
  .page-casino-live-dealer-games__features-grid, .page-casino-live-dealer-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-casino-live-dealer-games__feature-card, .page-casino-live-dealer-games__game-card {
    padding: 20px;
  }
  .page-casino-live-dealer-games__card-image, .page-casino-live-dealer-games__game-image {
    height: 180px;
  }
  .page-casino-live-dealer-games__step-item {
    padding-left: 65px;
    margin-bottom: 20px;
  }
  .page-casino-live-dealer-games__step-item::before {
    left: 15px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
  .page-casino-live-dealer-games__step-item h3 {
    font-size: 1.2em;
  }
  .page-casino-live-dealer-games__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-casino-live-dealer-games__tip-item {
    padding: 20px;
  }
  .page-casino-live-dealer-games__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-live-dealer-games__cta-button, 
  .page-casino-live-dealer-games__btn-primary, 
  .page-casino-live-dealer-games__btn-secondary, 
  .page-casino-live-dealer-games a[class*="button"],
  .page-casino-live-dealer-games 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-games__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
  }
  .page-casino-live-dealer-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-casino-live-dealer-games__intro-section,
  .page-casino-live-dealer-games__why-choose-us,
  .page-casino-live-dealer-games__game-types,
  .page-casino-live-dealer-games__how-to-play,
  .page-casino-live-dealer-games__tips-strategy,
  .page-casino-live-dealer-games__responsible-gambling,
  .page-casino-live-dealer-games__join-us {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-casino-live-dealer-games__main-title {
    font-size: 1.8em;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 1.5em;
  }
  .page-casino-live-dealer-games__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
}