.page-live {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area, though body is already white */
}

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero */
}

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

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

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

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

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

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

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

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

.page-live__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-live__button--primary:hover {
  background-color: #E0A83A;
}

.page-live__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-live__button--secondary:hover {
  background-color: #1a1a1a;
  border-color: #E0A83A;
}

.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 15px 10px;
}

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

.page-live__game-card .page-live__button {
  margin-top: 20px;
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 30px 20px;
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

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

.page-live__cta-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__cta-section .page-live__text-content {
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-live__text-content {
    font-size: 0.95em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-buttons .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  /* Ensure content area images are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  /* Specific image size constraint check for content area */
  .page-live__game-image, .page-live__feature-icon {
    max-width: 100%; /* Ensures images scale down */
    height: auto; /* Maintains aspect ratio */
    min-width: 200px; /* Minimum width constraint */
    min-height: 200px; /* Minimum height constraint */
    object-fit: cover; /* Ensures images fill their space */
  }
  /* Override specific heights if needed for responsiveness */
  .page-live__game-image { height: auto; }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-live__container {
    padding: 20px 15px;
  }
  .page-live__game-title {
    font-size: 1.5em;
  }
  .page-live__feature-title {
    font-size: 1.3em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}