/* style/casino-live-dealer-games.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --register-login-font-color: #FFFF00;
}

.page-casino-live-dealer-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-casino-live-dealer-games__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-casino-live-dealer-games__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-casino-live-dealer-games__section-title--light {
  color: var(--secondary-color);
}

.page-casino-live-dealer-games__section-text {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-live-dealer-games__section-text--light {
  color: #f0f0f0;
}

.page-casino-live-dealer-games__subsection-title {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary-color);
  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;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-casino-live-dealer-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-casino-live-dealer-games__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6);
}

.page-casino-live-dealer-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 40px 0;
}

.page-casino-live-dealer-games__hero-title {
  font-size: 52px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-casino-live-dealer-games__hero-description {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-live-dealer-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-button-color);
  color: var(--register-login-font-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-live-dealer-games__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Buttons */
.page-casino-live-dealer-games__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-live-dealer-games__btn-primary:hover {
  background: #005a2e;
  transform: translateY(-1px);
}

.page-casino-live-dealer-games__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.page-casino-live-dealer-games__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.page-casino-live-dealer-games__text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-casino-live-dealer-games__text-link:hover {
  color: #005a2e;
}

/* Cards */
.page-casino-live-dealer-games__card {
  background: var(--secondary-color);
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-dealer-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Introduction Section */
.page-casino-live-dealer-games__introduction-section {
  background-color: var(--secondary-color);
  color: #333333;
}