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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
}

.page-live__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-live__btn--primary {
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
}

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

.page-live__btn--secondary {
  background-color: #FFD700; /* Accent color */
  color: #333333;
}

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

.page-live__btn--tertiary {
  background-color: #333333; /* Dark neutral for contrast */
  color: #ffffff;
}

.page-live__btn--tertiary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-live__btn--view-details, .page-live__btn--promo, .page-live__btn--step {
  background-color: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__btn--view-details:hover, .page-live__btn--promo:hover, .page-live__btn--step:hover {
  background-color: #990000;
  transform: translateY(-1px);
}

/* About Section */
.page-live__about-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-5px);
}

.page-live__feature-icon {
  width: 200px; /* Minimum size for content images */
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 10px;
}

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

/* Games Section */
.page-live__games-section {
  padding: 60px 0;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

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

.page-live__game-content {
  padding: 25px;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-live__game-title a {
  color: #CC0000;
  text-decoration: none;
}

.page-live__game-title a:hover {
  text-decoration: underline;
}

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

/* Promo Section */
.page-live__promo-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-live__promo-title {
  font-size: 1.6em;
  color: #CC0000;
  margin: 20px 0 10px;
}

.page-live__promo-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-live__all-promo-link {
    text-align: center;
    margin-top: 40px;
}

/* Getting Started Section */
.page-live__getting-started-section {
  padding: 60px 0;
}

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

.page-live__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-live__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
}

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

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

/* FAQ Section */
.page-live__faq-section {
  padding: 60px 0;
}

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

.page-live__faq-question {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

/* CTA Section */
.page-live__cta-section {
  background-color: #CC0000;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-live__cta-section .page-live__section-intro {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header if needed */
  }
  .page-live__hero-section {
    height: 500px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__game-list, .page-live__promo-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__promo-image {
    width: 100%; /* Ensure images scale down */
    height: auto; /* Maintain aspect ratio */
    min-height: 200px; /* Enforce minimum height for content images */
    object-fit: cover;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__step-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-section {
    height: 400px;
  }
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}