.page-live {
  color: #333333; /* Dark text for default white 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__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px; /* Adjust as needed */
}

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

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  z-index: 1;
  padding: 40px 20px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)); /* Overlay for text readability */
}

.page-live__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  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;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  min-width: 200px;
  text-align: center;
}

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

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

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

.page-live__button--secondary:hover {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700;
  transform: translateY(-2px);
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-live__introduction-section, .page-live__games-showcase, .page-live__technology-section, .page-live__security-section, .page-live__bonuses-section, .page-live__getting-started-section, .page-live__mobile-experience, .page-live__support-section, .page-live__why-choose-us, .page-live__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-live__introduction-section {
  background-color: #ffffff;
}

.page-live__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-live__text-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.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: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px; /* Ensure cards have enough height for content and image */
}

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

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

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

.page-live__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  max-width: 800px; /* Example max-width for content images */
}

.page-live__bonus-list, .page-live__steps-list, .page-live__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-live__bonus-item, .page-live__step-item, .page-live__advantage-item {
  background-color: #fff;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.5;
}

.page-live__bonus-item strong, .page-live__step-item strong, .page-live__advantage-item strong {
  color: #8B0000; /* Deep Red */
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1.05em;
  color: #555;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__game-card {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__text-content {
    font-size: 1em;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__game-card {
    min-height: 450px;
  }
  .page-live__content-image {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area image constraint */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px; /* Ensure minimum size is maintained */
  }
  .page-live__game-image, .page-live__content-image {
      width: 100%;
      height: auto;
      min-width: 200px;
      min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__hero-container {
    min-height: 400px;
    padding: 20px;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-card {
    min-height: 400px;
  }
  .page-live__bonus-item, .page-live__step-item, .page-live__advantage-item, .page-live__faq-item {
    padding: 15px;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}