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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A2B4C; /* Main brand color for text */
  border: 2px solid #FFD700;
}

.page-live__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-live__btn--secondary {
  background-color: #1A2B4C; /* Main brand color */
  color: #FFD700; /* Accent color for text */
  border: 2px solid #1A2B4C;
}

.page-live__btn--secondary:hover {
  background-color: #0d1a33;
  border-color: #0d1a33;
}

.page-live__btn--outline {
  background-color: transparent;
  color: #1A2B4C;
  border: 2px solid #1A2B4C;
}

.page-live__btn--outline:hover {
  background-color: #1A2B4C;
  color: #FFD700;
}

.page-live__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-live__btn--small:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image for text readability */
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  color: #ffffff;
}

.page-live__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for hero title */
  font-weight: 900;
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-actions .page-live__btn {
  margin: 0 10px;
  font-size: 1.1em;
  padding: 15px 30px;
}

/* About Section */
.page-live__about-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-10px);
}

.page-live__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-live__feature-text {
  font-size: 1em;
  color: #666666;
}

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__game-card {
  background-color: #fdfdfd;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding-bottom: 20px;
}

.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: #1A2B4C;
  margin-bottom: 10px;
  padding: 0 15px;
}

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

/* Getting Started Section */
.page-live__getting-started-section {
  padding: 80px 0;
  background-color: #f0f4f8; /* Light blue-grey background */
}

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

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

.page-live__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A2B4C;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

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

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

/* Promotion Section */
.page-live__promo-section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Main brand color background */
  color: #ffffff;
}

.page-live__promo-section .page-live__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-live__promo-content {
  flex: 1;
  min-width: 300px;
}

.page-live__promo-section .page-live__section-title {
  color: #FFD700; /* Accent color for title */
  text-align: left;
}

.page-live__promo-section .page-live__section-description {
  color: #f0f0f0;
  text-align: left;
  max-width: none;
}

.page-live__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-live__promo-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-live__promo-list li::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  position: absolute;
  left: 0;
}

.page-live__promo-image {
  flex: 1;
  min-width: 400px;
  height: 350px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* App Section */
.page-live__app-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-live__app-section .page-live__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse;
}

.page-live__app-content {
  flex: 1;
  min-width: 300px;
}

.page-live__app-section .page-live__section-title {
  color: #1A2B4C;
  text-align: left;
}

.page-live__app-section .page-live__section-description {
  color: #555555;
  text-align: left;
  max-width: none;
}

.page-live__app-image {
  flex: 1;
  min-width: 400px;
  height: 350px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 80px 0;
  background-color: #e0e6ed; /* Softer background */
}

.page-live__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__responsible-gaming-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444444;
}

.page-live__responsible-gaming-list li::before {
  content: '✓'; /* Checkmark icon */
  color: #1A2B4C;
  margin-right: 10px;
  font-weight: bold;
}

.page-live__responsible-gaming-section .page-live__btn {
  margin-top: 20px;
}

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

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

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

  .page-live__promo-section .page-live__container,
  .page-live__app-section .page-live__container {
    flex-direction: column;
    text-align: center;
  }

  .page-live__promo-section .page-live__section-title,
  .page-live__app-section .page-live__section-title {
    text-align: center;
  }

  .page-live__promo-section .page-live__section-description,
  .page-live__app-section .page-live__section-description {
    text-align: center;
  }

  .page-live__promo-image,
  .page-live__app-image {
    min-width: unset;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
  }

  .page-live__hero-title {
    font-size: 2.5em;
  }

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

  .page-live__hero-actions .page-live__btn {
    margin: 10px 0;
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
  }

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

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

  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__app-image {
    max-width: 100%; /* Important for mobile images to prevent overflow */
    height: auto; /* Maintain aspect ratio */
  }
  
  /* Ensure all content area images are at least 200px when not constrained by max-width: 100% */
  .page-live img {
    min-width: 200px;
    min- /* adjusted to maintain aspect ratio for common image sizes */
  }
  
  .page-live__game-image {
    height: 200px; /* Adjust fixed height for mobile */
  }

  .page-live__promo-list,
  .page-live__responsible-gaming-list {
    text-align: left;
    padding-left: 20px;
  }
}

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

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

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