/* style/casino-live-dealer.css */
.page-casino-live-dealer {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg-1, #0d0d0d); /* Inherit from shared or use fallback dark */
}

/* Fixed header offset */
.page-casino-live-dealer__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-casino-live-dealer__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-casino-live-dealer__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-casino-live-dealer__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-casino-live-dealer__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-casino-live-dealer__btn-primary,
.page-casino-live-dealer__btn-secondary,
.page-casino-live-dealer__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box; /* Include padding in width calculation */
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-casino-live-dealer__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-casino-live-dealer__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.page-casino-live-dealer__btn-tertiary {
  background-color: #EA7C07; /* Login color for action buttons */
  color: #ffffff;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-casino-live-dealer__btn-tertiary:hover {
  background-color: #c96706;
  border-color: #c96706;
}

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

.page-casino-live-dealer__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff; /* Default for dark sections */
}

.page-casino-live-dealer__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0; /* Default for dark sections */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-live-dealer__intro-section,
.page-casino-live-dealer__benefits-section,
.page-casino-live-dealer__guide-section,
.page-casino-live-dealer__responsible-gambling-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}