.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #f8f8f8; /* Light background for general content */
  color: #333333; /* Dark text for readability on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 50px; /* Space below hero content */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  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__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  border: 2px solid #FFD700;
}

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

.page-live__btn--secondary {
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  border: 2px solid #8B0000;
}

.page-live__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

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

.page-live__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red for section titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.page-live__section-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #333333;
}

.page-live__introduction-section, .page-live__how-to-play, .page-live__security-section, .page-live__bonuses-section, .page-live__mobile-app-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__games-showcase {
  padding: 60px 20px;
  background-color: #f0f0f0;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.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 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.page-live__step-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 10px;
}

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

.page-live__security-image, .page-live__bonus-image, .page-live__mobile-app-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-live__faq-list {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 10px;
  display: none;
}

.page-live__faq-answer.active {
  display: block;
}

.page-live__cta-section {
  text-align: center;
  background-color: #8B0000; /* Deep red background for CTA */
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700; /* Gold title on deep red background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live__cta-section .page-live__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* 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-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-live__hero-section {
    padding: 40px 10px;
  }
  .page-live__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly darker for better readability */
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__game-grid, .page-live__step-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image {
    height: 180px;
  }
  .page-live__game-card-title {
    font-size: 1.3em;
  }
  .page-live__security-image, .page-live__bonus-image, .page-live__mobile-app-image {
    max-width: 100%;
    height: auto;
  }
  /* Enforce min 200px image size for content images */
  .page-live img:not(.page-live__hero-image) {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
  }
  .page-live__game-card-image, .page-live__security-image, .page-live__bonus-image, .page-live__mobile-app-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-card-image {
    height: 150px;
  }
  .page-live__game-card-title {
    font-size: 1.1em;
  }
  .page-live__game-card-description {
    font-size: 0.9em;
  }
  .page-live__step-title {
    font-size: 1.2em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__cta-section {
    padding: 50px 15px;
  }
}