.page-live {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set background to white */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  text-align: center;
}

.page-live__hero-content {
  max-width: 800px;
}

.page-live__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Gold color for title */
}

.page-live__hero-description {
  font-size: 1.2em;
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-live__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for gold button */
  border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
  background-color: #FCBC45; /* Slight hover effect */
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.page-live__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__hero-image {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-live__games-showcase,
.page-live__why-choose-us,
.page-live__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-live__game-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be object-fit */
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-live__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-live__card-button:hover {
  background-color: #FFD700;
}

.page-live__features-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: 25px;
  background-color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__feature-item img {
  width: 100%; /* Make sure it takes full width of its container */
   /* Consistent height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-live__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin: 60px auto;
}

.page-live__cta-content {
  max-width: 700px;
}

.page-live__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-live__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-live__cta-image {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live__cta-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer; /* Indicate interactivity if JS is added */
}

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

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-live__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 80px 40px;
  }

  .page-live__hero-content {
    flex: 1;
    text-align: left;
  }

  .page-live__hero-image {
    flex: 1;
    max-width: 50%;
  }

  .page-live__hero-buttons {
    justify-content: flex-start;
  }

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

  .page-live__cta-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-live__cta-content {
    flex: 1;
    text-align: left;
  }

  .page-live__cta-image {
    flex: 1;
    max-width: 50%;
  }
}

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

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

  .page-live__button {
    width: 100%;
    min-width: unset;
  }

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

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

  .page-live__game-card img,
  .page-live__feature-item img,
  .page-live__hero-image img,
  .page-live__cta-image img {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

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

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

/* Ensure no image filters are used */
.page-live img {
  filter: none;
}