.page-live {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Body background is light */
}

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

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
}

.page-live__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-live__hero-content {
  max-width: 800px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45;
}

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

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-live__btn--primary {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-live__btn--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 60px;
}

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

.page-live__section-paragraph {
  font-size: 1em;
  color: #666666;
  text-align: justify;
  max-width: 900px;
  margin: 20px auto 40px auto;
}

.page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__mobile-section, .page-live__responsible-gaming-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f9f9f9;
}

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

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

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

.page-live__feature-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Enforce min image size */
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-live__games-section {
  background-color: #FFFFFF;
}

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

.page-live__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  padding: 20px 25px 10px;
}

.page-live__game-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FCBC45;
}

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

.page-live__btn--view-details {
  display: block;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__btn--view-details:hover {
  background-color: #333333;
}

.page-live__promotions-section {
  background-color: #f9f9f9;
}

.page-live__promo-cards {
  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 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__promo-image {
  width: 100%;
  height: 220px;
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
  display: block;
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 20px 10px;
}

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

.page-live__btn--claim-bonus {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-live__btn--claim-bonus:hover {
  background-color: #e0a53b;
}

.page-live__mobile-section {
  background-color: #FFFFFF;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 200px; /* Enforce min image size */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text {
  text-align: center;
}

.page-live__mobile-text p {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__btn--download {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__btn--download:hover {
  background-color: #333333;
}

.page-live__responsible-gaming-section {
  background-color: #f0f0f0;
}

.page-live__btn--learn-more {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__btn--learn-more:hover {
  background-color: #333333;
}

.page-live__faq-section {
  background-color: #FFFFFF;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.page-live__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-live__faq-item:last-child {
  border-bottom: none;
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f5f5f5;
  margin: 0;
  position: relative;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-live__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-live__faq-answer p {
  color: #666666;
  margin: 0;
}

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__cta-section .page-live__section-intro {
  color: #f0f0f0;
  margin-bottom: 50px;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-live__hero-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  .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: 100%;
    padding: 12px 20px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__section-intro, .page-live__section-paragraph {
    font-size: 0.95em;
    margin: 0 auto 25px auto;
  }
  .page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__mobile-section, .page-live__responsible-gaming-section, .page-live__faq-section, .page-live__cta-section {
    padding: 40px 0;
  }
  .page-live__features-grid, .page-live__game-list, .page-live__promo-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__game-image, .page-live__promo-image, .page-live__feature-image {
    height: auto; /* Allow height to adjust */
    max-width: 100%;
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-live__mobile-content {
    flex-direction: column;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-live__faq-question::after {
    right: 20px;
  }
  .page-live__faq-answer {
    padding: 15px 20px;
  }
  .page-live__cta-actions {
    flex-direction: column;
  }
  /* Mobile content area images must not cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__btn {
    font-size: 1em;
  }
  .page-live__faq-question {
    font-size: 1em;
  }
}