.page-live {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  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__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

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

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-live__button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-live__button--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-live__button--text {
  background: none;
  color: #1A202C;
  text-decoration: underline;
  padding: 0;
}

.page-live__button--text:hover {
  color: #FFD700;
  transform: none;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  overflow: hidden;
  background-color: #1A202C; /* Dark background for hero content */
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.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: #FFD700;
}

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

.page-live__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Why Choose Us Section */
.page-live__why-choose-us {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-live__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__feature-description {
  color: #555555;
  font-size: 1em;
}

/* Game Selection Section */
.page-live__game-selection {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

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

.page-live__game-title {
  font-size: 1.6em;
  color: #1A202C;
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

.page-live__game-card .page-live__button {
  margin: 0 15px 20px;
}

/* Technology Section */
.page-live__technology {
  padding: 80px 0;
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-live__technology .page-live__section-title {
  color: #FFD700;
}

.page-live__technology .page-live__section-title::after {
  background-color: #FFD700;
}

.page-live__technology .page-live__section-intro {
  color: #cccccc;
}

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

.page-live__tech-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__tech-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__tech-description {
  color: #f0f0f0;
  font-size: 1em;
}

/* Promotions Section */
.page-live__promotions {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #1A202C;
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

.page-live__promo-card .page-live__button {
  margin: 0 15px 20px;
}

.page-live__cta-promo {
  text-align: center;
  margin-top: 40px;
}

.page-live__cta-promo p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #1A202C;
}

/* Getting Started Section */
.page-live__getting-started {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

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

.page-live__step-description {
  color: #555555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-live__responsible-gaming {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.page-live__responsible-gaming p {
  font-size: 1.1em;
  color: #1A202C;
  margin-bottom: 15px;
}

/* Expert Guides Section */
.page-live__expert-guides {
  padding: 80px 0;
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-live__expert-guides .page-live__section-title {
  color: #FFD700;
}

.page-live__expert-guides .page-live__section-title::after {
  background-color: #FFD700;
}

.page-live__expert-guides .page-live__section-intro {
  color: #cccccc;
}

.page-live__guide-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-live__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-live__guide-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-live__guide-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-live__guide-description {
  color: #cccccc;
  margin-bottom: 15px;
}

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

.page-live__faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

/* Final CTA Section */
.page-live__cta-final {
  padding: 80px 0;
  background-color: #FFD700;
  text-align: center;
  color: #1A202C;
}

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

.page-live__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #333333;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--large {
    width: 100%;
    box-sizing: border-box;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__tech-highlights, .page-live__promo-cards, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon, .page-live__tech-icon {
    width: 250px; /* Adjust for smaller screens but maintain minimum */
    height: auto;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1.1em;
  }
  /* Ensure content images are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__promo-image, .page-live__tech-icon {
    max-width: 100%; /* Ensure all images within content area are responsive */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-section {
    min-height: 400px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
}