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

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

.page-live__section {
  padding: 60px 0;
}

.page-live__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

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

.page-live__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  line-height: 1.4;
}

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

.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.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-live__button--primary {
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Auxiliary color */
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Main color */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #7a0000;
  transform: translateY(-3px);
}

/* Features Section */
.page-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-live__feature-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

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

/* Game Selection Section */
.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-live__game-card:hover {
  transform: translateY(-8px);
  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;
  display: block;
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-live__game-title {
  font-size: 1.8em;
  color: #FFD700; /* Main color */
  padding: 15px 20px 0 20px;
  font-weight: bold;
}

.page-live__game-description {
  font-size: 1em;
  color: #666666;
  padding: 10px 20px 20px 20px;
}

.page-live__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

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

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFD700; /* Main color accent */
}

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

.page-live__step-description {
  font-size: 1em;
  color: #666666;
}

.page-live__step-description a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

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

/* Promotions Section */
.page-live__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 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;
  border: 1px solid #eee;
}

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

.page-live__promo-image {
  width: 100%;
  height: 220px; /* Consistent image height for promos */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 0 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__promo-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px 20px;
}

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

/* Responsible Gaming Section */
.page-live__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  text-align: left;
}

.page-live__responsible-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #8B0000; /* Auxiliary color accent */
  color: #444444;
  font-size: 1em;
}

.page-live__responsible-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-live__responsible-text a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-live__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* CTA Section */
.page-live__cta-section {
  background-color: #8B0000; /* Auxiliary color */
  color: #ffffff;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700; /* Main color */
}

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

.page-live__cta-section .page-live__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-live__cta-section .page-live__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-live__cta-section .page-live__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-live__cta-section .page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__promo-grid, .page-live__steps-list, .page-live__responsible-list, .page-live__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__step-item, .page-live__responsible-item, .page-live__faq-item {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__promo-title, .page-live__step-title, .page-live__faq-question {
    font-size: 1.4em;
  }
  .page-live__game-image, .page-live__promo-image {
    height: 200px;
  }
  /* Ensure images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    width: 90%;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__promo-title, .page-live__step-title, .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__promo-image {
    min-width: 200px;
    min-height: 200px;
    height: auto; /* Allow height to adjust for smaller screens */
  }
}