.page-live {
  color: #333333; /* Deep dark grey for text on light 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__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight with login color */
}

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

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Darken image for text readability */
}

.page-live__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-live__cta-button--primary {
  background-color: #FCBC45; /* Login button color for primary CTA */
  color: #000000; /* Dark text on light background */
}

.page-live__cta-button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-live__cta-button--secondary {
  background-color: #000000; /* Dark background */
  color: #ffffff; /* White text */
  border: 2px solid #FCBC45;
}

.page-live__cta-button--secondary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-live__about-section, .page-live__games-section, .page-live__mobile-app-section, .page-live__promotions-section, .page-live__security-section, .page-live__support-section, .page-live__cta-bottom-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-live__about-section p, .page-live__games-section p, .page-live__promotions-section p, .page-live__security-section p, .page-live__support-section p, .page-live__cta-bottom-section p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
}

.page-live__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
  font-weight: bold;
}

.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: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have consistent height */
}

.page-live__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
}

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

.page-live__game-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-card-title a:hover {
  color: #FCBC45;
}

.page-live__game-card-description {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-live__game-card .page-live__cta-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-live__mobile-app-section {
  background-color: #000000; /* Dark background for app section */
  color: #ffffff;
  padding: 80px 0;
}

.page-live__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-live__mobile-app-text {
  flex: 1;
}

.page-live__mobile-app-text .page-live__section-title {
  color: #FCBC45;
}

.page-live__mobile-app-text .page-live__section-text {
  color: #f0f0f0;
  margin-left: 0;
  margin-right: 0;
}

.page-live__mobile-app-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__mobile-app-image {
  width: 100%;
  max-width: 400px; /* Max width for mobile image */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__cta-bottom-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-live__cta-bottom-section .page-live__cta-button {
  margin-top: 30px;
}

.page-live a {
  color: #FCBC45;
  text-decoration: none;
}

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

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-app-image-container {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__game-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image {
    height: 200px;
  }
  /* Ensure all content images are responsive and not smaller than 200px */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
    object-fit: cover;
  }
  .page-live__hero-image {
    min-width: unset; /* Hero image can be smaller than 200px width on mobile if object-fit: cover handles it */
    min-height: unset;
  }
  .page-live__mobile-app-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__game-card .page-live__cta-button {
    width: calc(100% - 40px);
  }
  .page-live__game-card {
    min-height: unset;
  }
}

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