.page-casino-live-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body, ensure consistency */
}

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

/* Hero Section */
.page-casino-live-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 60px; /* Adjusted padding-top for header offset */
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Brand primary color for hero background */
}

.page-casino-live-games-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  z-index: 1;
}

.page-casino-live-games-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
  z-index: 1;
}

.page-casino-live-games-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  z-index: 1;
}

.page-casino-live-games-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-casino-live-games-guide__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken video to make text readable */
}

/* General Content Styling */
.page-casino-live-games-guide__content-area {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Match body background */
  color: #ffffff; /* Ensure light text on dark background */
}

.page-casino-live-games-guide__section-title {
  font-size: 2.5em;
  color: #ffffff; /* Adjusted for contrast on dark background */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-casino-live-games-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  color: #f0f0f0;
}

.page-casino-live-games-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-casino-live-games-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-live-games-guide__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-games-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino-live-games-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-live-games-guide__card-title {
  font-size: 1.5em;
  color: #ffffff; /* Adjusted for contrast on dark background */
  margin-bottom: 15px;
}

.page-casino-live-games-guide__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-casino-live-games-guide__btn-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino-live-games-guide__btn-link:hover {
  background-color: #005a2e; /* Darker shade for hover */
}

/* Guide List */
.page-casino-live-games-guide__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-casino-live-games-guide__guide-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #017439;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
}

.page-casino-live-games-guide__guide-title {
  font-size: 1.6em;
  color: #ffffff; /* Adjusted for contrast on dark background */
  margin-bottom: 10px;
}

.page-casino-live-games-guide__guide-text {
  font-size: 1.05em;
  color: #f0f0f0;
}

/* Game Cards Grid */
.page-casino-live-games-guide__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-live-games-guide__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-games-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Strategy List */
.page-casino-live-games-guide__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-casino-live-games-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #ffffff;
}

.page-casino-live-games-guide__strategy-title {
  font-size: 1.6em;
  color: #ffffff; /* Adjusted for contrast on dark background */
  margin-bottom: 10px;
}

.page-casino-live-games-guide__strategy-text {
  font-size: 1.05em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-casino-live-games-guide__faq-list {
  margin-top: 40px;
}

.page-casino-live-games-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-casino-live-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439; /* Brand primary color for FAQ question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-casino-live-games-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino-live-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-casino-live-games-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-casino-live-games-guide__faq-item[open] .page-casino-live-games-guide__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-casino-live-games-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Final CTA */
.page-casino-live-games-guide__final-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}