.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity, though inherited from body */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

.page-live__button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
  margin-left: 15px;
}

.page-live__button--login:hover {
  background-color: #e0a53b;
}

.page-live__button--play, .page-live__button--claim, .page-live__button--action, .page-live__button--primary {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: none;
}

.page-live__button--play:hover, .page-live__button--claim:hover, .page-live__button--action:hover, .page-live__button--primary:hover {
  background-color: #e0a53b;
}

.page-live__button--details, .page-live__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-live__button--details:hover, .page-live__button--secondary:hover {
  background-color: #333333;
  border-color: #FFFFFF;
}

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.page-live__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__hero-buttons {
  margin-top: 30px;
}

/* About Section */
.page-live__about-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  color: #333333;
}

/* Games Overview Section */
.page-live__games-overview-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.page-live__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
  font-weight: bold;
}

.page-live__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-live__card-title a:hover {
  color: #FCBC45;
}

.page-live__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__paragraph {
  color: #f0f0f0;
}

.page-live__promotion-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-top: 40px;
  text-align: center;
  padding-bottom: 40px;
}

.page-live__promotion-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-live__promotion-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-live__promotion-description {
  font-size: 1.1em;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 30px;
}

/* Getting Started Section */
.page-live__getting-started-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__step-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

/* Detail Pages Section */
.page-live__detail-pages-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-live__detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__faq-accordion {
  margin-top: 40px;
}

.page-live__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-live__accordion-header {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-live__accordion-header:hover {
  background-color: #333333;
}

.page-live__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-live__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
  font-size: 1em;
  text-align: justify;
}

/* CTA Section */
.page-live__cta-section {
  padding: 80px 0;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #000000;
}

.page-live__cta-section .page-live__paragraph {
  color: #333333;
  font-size: 1.2em;
}

.page-live__cta-section .page-live__button--primary {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 30px;
}

.page-live__cta-section .page-live__button--primary:hover {
  background-color: #333333;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-live__responsible-gaming-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }

  .page-live__hero-description {
    font-size: 1.2em;
  }

  .page-live__section-title {
    font-size: 2em;
  }

  .page-live__card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px 60px;
  }

  .page-live__hero-title {
    font-size: 2.5em;
  }

  .page-live__hero-description {
    font-size: 1.1em;
  }

  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button--login {
    margin-left: 0;
  }

  .page-live__container {
    padding: 0 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live__game-cards, .page-live__steps-list, .page-live__detail-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__card-image {
    height: 200px;
  }

  .page-live__promotion-title {
    font-size: 1.8em;
  }

  .page-live__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }

  .page-live__hero-description {
    font-size: 1em;
  }

  .page-live__section-title {
    font-size: 1.5em;
  }

  .page-live__card-title {
    font-size: 1.3em;
  }

  .page-live__promotion-title {
    font-size: 1.5em;
  }
}