.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__content-block {
  padding: 60px 0;
}

.page-live__hero-section {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background-color: rgba(0, 32, 96, 0.7); /* Semi-transparent dark blue overlay */
  border-radius: 10px;
  margin: 20px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-live__hero-actions {
  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.2s ease;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #FFD700; /* Gold */
  color: #002060; /* Dark blue */
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: #002060; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #001a4d;
  transform: translateY(-2px);
}

.page-live__heading {
  font-size: 2.5em;
  color: #002060; /* Dark blue for main headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-live__text {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Games Section */
.page-live__games-section {
  background-color: #f9f9f9;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-live__game-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 25px;
}

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

/* Features Section */
.page-live__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-live__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__feature-item:hover {
  transform: translateY(-5px);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px; /* Added border-radius to match card style */
}

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

.page-live__feature-description {
  font-size: 0.9em;
  color: #666666;
}

/* How to Play Section */
.page-live__how-to-play-section {
  background-color: #f0f5f9; /* Light blue-gray background */
}

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

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-live__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
}

/* Promotions Section */
.page-live__promotions-section {
  background-color: #ffffff;
}

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

.page-live__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-live__promo-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-live__center-button {
  text-align: center;
  margin-top: 40px;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  background-color: #e6f0f5;
}

/* Call to Action Section */
.page-live__cta-section {
  background-color: #002060; /* Dark blue background */
  color: #ffffff;
}

.page-live__cta-section .page-live__heading {
  color: #FFD700; /* Gold heading on dark background */
}

.page-live__cta-section .page-live__heading::after {
  background-color: #FFD700;
}

.page-live__cta-section .page-live__text {
  color: #f0f0f0;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-content {
    padding: 30px;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__heading {
    font-size: 1.8em;
  }
  .page-live__text {
    font-size: 0.95em;
  }
  .page-live__game-image, .page-live__promo-image {
    height: 200px;
  }
  /* Ensure images in content area are responsive and not too small */
  .page-live__game-card img, 
  .page-live__promo-card img, 
  .page-live__feature-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min- /* Enforce minimum size, adjusted for common aspect ratios */
    object-fit: cover;
  }
  /* Specific override for feature icons to ensure they don't get too large or too small */
  .page-live__feature-item .page-live__feature-icon {
    width: 100px; 
    height: 100px; 
    min-width: 100px; 
    min-height: 100px; 
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-live__heading {
    font-size: 1.5em;
  }
  .page-live__game-grid, .page-live__feature-list, .page-live__steps-list, .page-live__promo-cards {
    grid-template-columns: 1fr;
  }
}

/* Ensure all content images within .page-live are at least 200px wide/tall */
.page-live img:not(.page-live__feature-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for feature icons to ensure they are not too small but also not forced to 200px if they are meant to be smaller visual cues within a card */
.page-live__feature-icon {
  min-width: 100px; /* Adjusted minimum for icons that are part of features */
  min-height: 100px;
}

/* Specific adjustment for hero image to ensure it covers the area */
.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}