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

.page-live__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #1A202C; /* Dark background for hero text contrast */
  color: #ffffff;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(26, 32, 44, 0.7); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

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

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

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

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

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

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

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

.page-live__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

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

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

.page-live__section-title {
  font-size: 2.2em;
  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-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-live__introduction-section,
.page-live__game-categories-section,
.page-live__features-section,
.page-live__promotions-section,
.page-live__mobile-app-section,
.page-live__faq-section,
.page-live__final-cta-section {
  padding: 60px 0;
}

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

.page-live__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__text-block {
  font-size: 1em;
  color: #444444;
  margin-top: 20px;
  text-align: justify;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__feature-text {
  font-size: 0.9em;
  color: #666666;
}

.page-live__promotions-section {
  background-color: #1A202C;
  color: #ffffff;
}

.page-live__promotions-section .page-live__section-title,
.page-live__promotions-section .page-live__section-description {
  color: #ffffff;
}

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

.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: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
}

.page-live__promo-card .page-live__card-image {
  height: 220px;
}

.page-live__promo-card .page-live__card-title {
  color: #FFD700;
}

.page-live__promo-card .page-live__card-text {
  color: #cccccc;
}

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

.page-live__promotions-section .page-live__button:hover {
  background-color: #e6c200;
}

.page-live__call-to-action-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-live__call-to-action-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-live__call-to-action-text a:hover {
  text-decoration: underline;
}

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

.page-live__app-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__app-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-live__app-info {
  max-width: 500px;
  text-align: left;
}

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

.page-live__app-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-live__app-note {
  font-size: 0.9em;
  color: #777777;
  margin-top: 15px;
}

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

.page-live__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-live__accordion-header {
  width: 100%;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__accordion-header:hover {
  background-color: #e6c200;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-live__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__accordion-content p {
  padding: 15px 0;
  color: #444444;
  font-size: 1em;
}

.page-live__final-cta-section {
  background-color: #1A202C;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-live__final-cta-section .page-live__section-title,
.page-live__final-cta-section .page-live__section-description {
  color: #ffffff;
}

.page-live__final-cta-section .page-live__section-title::after {
  background-color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }

  .page-live__hero-description {
    font-size: 1.1em;
  }

  .page-live__section-title {
    font-size: 1.8em;
  }

  .page-live__section-description {
    font-size: 1em;
  }

  .page-live__app-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 100px);
  }

  .page-live__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-live__hero-title {
    font-size: 1.8em;
  }

  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
  }

  .page-live__introduction-section,
  .page-live__game-categories-section,
  .page-live__features-section,
  .page-live__promotions-section,
  .page-live__mobile-app-section,
  .page-live__faq-section,
  .page-live__final-cta-section {
    padding: 40px 0;
  }

  .page-live__section-title {
    font-size: 1.6em;
  }

  .page-live__section-description {
    margin-bottom: 30px;
  }

  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-live__app-cta {
    flex-direction: column;
    gap: 30px;
  }

  .page-live__app-image {
    max-width: 100%;
  }

  .page-live__app-info {
    max-width: 100%;
    text-align: center;
  }

  .page-live__app-title {
    font-size: 1.8em;
  }

  .page-live__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Ensure content images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio and cover area */
  }

  .page-live__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.5em;
  }

  .page-live__hero-description {
    font-size: 0.9em;
  }

  .page-live__button--large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live__section-title {
    font-size: 1.4em;
  }
}

/* Ensure content area images maintain minimum size or scale down responsively */
.page-live__image-full-width,
.page-live__card-image,
.page-live__feature-icon,
.page-live__app-image {
  min-width: 200px;
  min-height: 200px;
}

/* Override specific element sizes for mobile to ensure responsiveness without shrinking below 200px where possible */
@media (max-width: 768px) {
  .page-live__feature-icon {
    width: 200px; /* Ensure minimum width on mobile */
    height: 200px; /* Ensure minimum height on mobile */
    margin-left: auto;
    margin-right: auto;
  }

  .page-live__game-card .page-live__card-image,
  .page-live__promo-card .page-live__card-image {
    height: 200px; /* Adjust height to be at least 200px for card images on mobile */
  }
}