/* style/casino-live-dealer-games.css */
.page-casino-live-dealer-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000; /* Inherited from shared.css, ensuring contrast */
}

.page-casino-live-dealer-games a {
  color: #FFD700; /* Brand gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-live-dealer-games a:hover {
  color: #ffa500; /* Lighter gold on hover */
}

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

.page-casino-live-dealer-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-casino-live-dealer-games__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-casino-live-dealer-games__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* HERO Section */
.page-casino-live-dealer-games__hero-section {
  position: relative;
  width: 100%;
  padding: 150px 0 80px; /* Adjust padding-top for fixed header */
  background: linear-gradient(135deg, #8B0000, #4d0000); /* Dark red gradient */
  text-align: center;
  overflow: hidden;
}

.page-casino-live-dealer-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-casino-live-dealer-games__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-live-dealer-games__hero-title a {
  color: inherit; /* Keep link color same as title */
}

.page-casino-live-dealer-games__hero-subtitle {
  font-size: 1.5em;
  color: #f8f8f8;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-casino-live-dealer-games__hero-subtitle a {
  color: #FFD700; /* Gold for links in subtitle */
}

.page-casino-live-dealer-games__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Dark text for gold button */
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-live-dealer-games__hero-button:hover {
  background-color: #ffa500; /* Lighter gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-casino-live-dealer-games__introduction-section {
  background-color: #1a1a1a; /* Dark background */
  padding: 60px 0;
  border-bottom: 5px solid #FFD700;
}

/* Benefits Section */
.page-casino-live-dealer-games__benefits-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-casino-live-dealer-games__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-casino-live-dealer-games__benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-casino-live-dealer-games__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-casino-live-dealer-games__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-casino-live-dealer-games__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

/* Game Types Section */
.page-casino-live-dealer-games__game-types-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  border-top: 5px solid #8B0000;
}

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

.page-casino-live-dealer-games__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.5);
}

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

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

.page-casino-live-dealer-games__game-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 15px 20px 5px;
  margin: 0;
}

.page-casino-live-dealer-games__game-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 15px;
}

.page-casino-live-dealer-games__game-button {
  display: block;
  background-color: #8B0000; /* Dark red button */
  color: #ffffff;
  padding: 12px 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

.page-casino-live-dealer-games__game-button:hover {
  background-color: #a50000; /* Lighter red on hover */
}

/* How To Join Section */
.page-casino-live-dealer-games__how-to-join-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-casino-live-dealer-games__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-casino-live-dealer-games__step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
  background-color: rgba(255, 215, 0, 0.1);
}

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

.page-casino-live-dealer-games__step-title a {
  color: inherit;
}

.page-casino-live-dealer-games__step-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-casino-live-dealer-games__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-live-dealer-games__step-button:hover {
  background-color: #ffa500;
  transform: translateY(-2px);
}

/* Tips Section */
.page-casino-live-dealer-games__tips-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  border-top: 5px solid #FFD700;
}

.page-casino-live-dealer-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-casino-live-dealer-games__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-live-dealer-games__list-item strong {
  color: #FFD700;
}

/* Safety & Support Section */
.page-casino-live-dealer-games__safety-support-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

.page-casino-live-dealer-games__safety-support-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-casino-live-dealer-games__contact-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-live-dealer-games__contact-button:hover {
  background-color: #a50000;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-casino-live-dealer-games__faq-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  border-top: 5px solid #8B0000;
}

.page-casino-live-dealer-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino-live-dealer-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-casino-live-dealer-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
}

.page-casino-live-dealer-games__faq-item.active .page-casino-live-dealer-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 5px 5px;
}

.page-casino-live-dealer-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-casino-live-dealer-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-casino-live-dealer-games__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-casino-live-dealer-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-casino-live-dealer-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-casino-live-dealer-games__faq-item.active .page-casino-live-dealer-games__faq-toggle {
  color: #ffa500;
  transform: rotate(45deg); /* Change from '-' to 'X' visually */
}

/* CTA Section */
.page-casino-live-dealer-games__cta-section {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-casino-live-dealer-games__cta-section .page-casino-live-dealer-games__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-casino-live-dealer-games__cta-section .page-casino-live-dealer-games__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f8f8f8;
}

.page-casino-live-dealer-games__cta-button {
  display: inline-block;
  background-color: #000000; /* Black button for contrast */
  color: #FFD700; /* Gold text */
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.6em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-casino-live-dealer-games__cta-button:hover {
  background-color: #333333; /* Darker grey on hover */
  color: #ffa500;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-live-dealer-games__hero-title {
    font-size: 3em;
  }
  .page-casino-live-dealer-games__hero-subtitle {
    font-size: 1.3em;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 2em;
  }
  .page-casino-live-dealer-games__game-grid,
  .page-casino-live-dealer-games__benefits-grid,
  .page-casino-live-dealer-games__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino-live-dealer-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-casino-live-dealer-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-casino-live-dealer-games__section,
  .page-casino-live-dealer-games__card,
  .page-casino-live-dealer-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino-live-dealer-games__hero-section {
    padding-top: 100px; /* Adjust padding-top for fixed header on mobile */
    padding-bottom: 60px;
  }
  .page-casino-live-dealer-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-live-dealer-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-casino-live-dealer-games__hero-button {
    padding: 12px 25px;
    font-size: 1.2em;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-casino-live-dealer-games__sub-section-title {
    font-size: 1.5em;
  }
  .page-casino-live-dealer-games__text-block {
    font-size: 1em;
  }
  .page-casino-live-dealer-games__benefits-grid,
  .page-casino-live-dealer-games__game-grid,
  .page-casino-live-dealer-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-casino-live-dealer-games__benefit-card,
  .page-casino-live-dealer-games__game-card,
  .page-casino-live-dealer-games__step-card {
    padding: 20px;
  }
  .page-casino-live-dealer-games__benefit-icon,
  .page-casino-live-dealer-games__step-icon {
    width: 80px;
    height: 80px;
  }
  .page-casino-live-dealer-games__benefit-title {
    font-size: 1.3em;
  }
  .page-casino-live-dealer-games__game-title {
    font-size: 1.5em;
  }
  .page-casino-live-dealer-games__faq-question {
    padding: 15px;
  }
  .page-casino-live-dealer-games__faq-question h3 {
    font-size: 1em;
  }
  .page-casino-live-dealer-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-casino-live-dealer-games__faq-item.active .page-casino-live-dealer-games__faq-answer {
    padding: 15px !important;
  }
  .page-casino-live-dealer-games__cta-button {
    padding: 15px 30px;
    font-size: 1.4em;
  }
  .page-casino-live-dealer-games__list-item {
    font-size: 1em;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-casino-live-dealer-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-live-dealer-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-casino-live-dealer-games__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-casino-live-dealer-games__section-title {
    font-size: 1.5em;
  }
}