.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  background-color: #8B0000; /* Deep red background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-live__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
}

.page-live__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-live__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-live__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Deep red title */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-live__features-grid,
.page-live__games-grid,
.page-live__steps-grid,
.page-live__promo-cards {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}

.page-live__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-live__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-live__games-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-live__game-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-live__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-live__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-live__game-card h3 {
  font-size: 1.5em;
  color: #8B0000; /* Deep red title */
  margin: 20px 20px 10px 20px;
}

.page-live__game-card p {
  padding: 0 20px 20px 20px;
  color: #555555;
  flex-grow: 1;
}

.page-live__btn--small {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 10px 15px;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  text-align: center;
  border-radius: 6px;
  font-size: 0.95em;
}

.page-live__btn--small:hover {
  background-color: #e6c200;
}

.page-live__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-live__step-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-number {
  width: 60px;
  height: 60px;
  background-color: #8B0000; /* Deep red background */
  color: #FFD700; /* Gold text */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__btn--link {
  color: #FFD700;
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__btn--link:hover {
  background-color: #a80000;
  color: #ffffff;
}

.page-live__promo-cards {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #8B0000;
  margin: 25px 20px 10px 20px;
}

.page-live__promo-description {
  padding: 0 20px 20px 20px;
  color: #666666;
  flex-grow: 1;
}

.page-live__btn--promo {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 25px 20px;
  padding: 12px 20px;
  background-color: #FFD700;
  color: #8B0000;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.05em;
}

.page-live__btn--promo:hover {
  background-color: #e6c200;
}

.page-live__responsible-gaming-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-live__responsible-gaming-section .page-live__section-title {
  color: #333333;
}

.page-live__responsible-gaming-section .page-live__section-intro {
  color: #555555;
  margin-bottom: 40px;
}

.page-live__btn--outline {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__btn--outline:hover {
  background-color: #8B0000;
  color: #ffffff;
}

.page-live__faq-section {
  padding: 60px 20px;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold text */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  display: none; /* Hidden by default */
}

.page-live__faq-answer.active {
  display: block;
}

.page-live__cta-section {
  background-color: #8B0000; /* Deep red background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-live__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
}

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 10px;
}

.page-live__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-live__btn {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-live__section-intro {
    font-size: 1em;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-grid,
  .page-live__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }

  .page-live__cta-title {
    font-size: 2.2em;
  }

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

  .page-live__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-live__faq-question {
    font-size: 1.2em;
  }

  .page-live__faq-answer {
    font-size: 0.95em;
  }

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

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

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

  .page-live__btn--primary,
  .page-live__btn--secondary {
    font-size: 1em;
    padding: 12px 25px;
  }

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

  .page-live__feature-title,
  .page-live__game-card h3,
  .page-live__step-title,
  .page-live__promo-title {
    font-size: 1.4em;
  }

  .page-live__btn--small {
    font-size: 0.9em;
    padding: 8px 10px;
  }

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

  .page-live__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}