.page-live {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* Hero content will handle spacing */
}

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

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

.page-live__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  min-width: 180px;
}

.page-live__button--primary {
  background-color: #FFD700; /* Primary brand color */
  color: #8B0000; /* Contrasting text color */
}

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

.page-live__button--secondary {
  background-color: #8B0000; /* Secondary brand color */
  color: #FFD700; /* Contrasting text color */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #a01010;
  transform: translateY(-3px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 220px;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-live__about-section, .page-live__games-section, .page-live__benefits-section, .page-live__cta-section, .page-live__faq-section, .page-live__blog-preview {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

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

.page-live__about-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-live__about-card:hover {
  transform: translateY(-10px);
}

.page-live__about-card-image {
  width: 100%;
  height: 267px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__about-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__about-card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #cccccc;
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__game-image {
  width: 100%;
  height: 300px; /* Fixed height for game images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__game-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-live__benefits-item {
  background-color: rgba(139, 0, 0, 0.3); /* Secondary color with transparency */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-live__benefits-item:hover {
  background-color: rgba(139, 0, 0, 0.5);
}

.page-live__benefits-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  /* No filter to change color */
}

.page-live__benefits-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__benefits-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
}

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

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

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  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;
  line-height: 1.7;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-live__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
}

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

.page-live__blog-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-live__blog-card:hover {
  transform: translateY(-10px);
}

.page-live__blog-image {
  width: 100%;
  height: 225px; /* Fixed height for blog images */
  object-fit: cover;
}

.page-live__blog-card-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 10px;
}

.page-live__blog-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__blog-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live__blog-card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
  padding: 0 20px 15px;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-live__hero-content {
    padding: 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__content-wrapper {
    padding: 30px 15px;
  }
  .page-live__about-card, .page-live__game-card, .page-live__benefits-item, .page-live__blog-card {
    padding: 20px;
  }
  .page-live__about-card-title, .page-live__game-title, .page-live__benefits-heading {
    font-size: 1.5em;
  }
  .page-live__blog-card-title {
    font-size: 1.3em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  /* Ensure images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
  }
  /* Specific override for small icons which should not be affected by general img rule, but these are >=200px anyway */
  .page-live__benefits-icon {
    
    
    
    
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}