.page-live {
  color: #ffffff; /* Light text for dark 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__hero-section {
  position: relative;
  background-color: #1A1A1A; /* Auxiliary dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-live__hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Main golden color */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

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

.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: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #FFD700; /* Main golden color */
  color: #1A1A1A; /* Dark text for primary button */
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Golden text for secondary button */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-live__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-live__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-live__section:last-of-type {
  border-bottom: none;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Main golden color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live__section-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark for cards */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
}

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

.page-live__game-card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  padding: 0 15px;
}

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

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-live__section-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-live__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-live__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #FFD700;
}

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

.page-live__step-description {
  font-size: 1em;
  color: #cccccc;
}

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

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

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

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

.page-live__detail-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-live__detail-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-live__detail-link {
  color: #FFD700;
  text-decoration: none;
}

.page-live__detail-link:hover {
  text-decoration: underline;
}

.page-live__detail-card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 20px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-text {
    font-size: 1em;
  }
  .page-live__game-grid, .page-live__features-grid, .page-live__steps-grid, .page-live__detail-card-grid {
    grid-template-columns: 1fr;
  }
  .page-live__hero-buttons, .page-live__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
  }
  /* Ensure content images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-card-image {
    height: 200px;
  }
  .page-live__hero-image {
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__game-card-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__detail-card-title {
    font-size: 1.5em;
  }
}