.page-live {
  color: #ffffff; /* Light text on dark body background */
  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-title {
  font-size: 2.8em;
  color: #E94560; /* Accent color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

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

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

.page-live__button--primary {
  background-color: #E94560;
  color: #ffffff;
  border: 2px solid #E94560;
}

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

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

.page-live__button--secondary:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

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

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

.page-live__text-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  height: 600px; /* Fixed height for hero */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1A1A2E;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-live__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-actions .page-live__button {
  margin: 0 10px;
}

/* About Section (Features) */
.page-live__about-section {
  padding: 80px 0;
  background-color: #0D0D1A;
}

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

.page-live__feature-card {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #E94560;
}

.page-live__feature-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #121226;
}

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

.page-live__game-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #E94560;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #E94560;
  margin: 20px 0 10px 0;
  font-weight: bold;
  padding: 0 15px;
}

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

.page-live__game-card .page-live__button {
  margin: 0 15px 20px 15px;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #0D0D1A;
}

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

.page-live__promo-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #E94560;
}

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

.page-live__promo-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-live__promo-card .page-live__button {
  margin: 0 15px 20px 15px;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #121226;
}

.page-live__faq-accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__accordion-header:hover, .page-live__accordion-header.active {
  background-color: #E94560;
}

.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: #1A1A2E;
  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: #cccccc;
  font-size: 1em;
}

/* CTA Section */
.page-live__cta-section {
  padding: 80px 0;
  background-color: #E94560;
  text-align: center;
}

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

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

.page-live__cta-section .page-live__button--primary {
  background-color: #1A1A2E;
  color: #E94560;
  border-color: #1A1A2E;
}

.page-live__cta-section .page-live__button--primary:hover {
  background-color: #0d0d1a;
  color: #E94560;
}

/* Contact Section */
.page-live__contact-section {
  padding: 80px 0;
  background-color: #0D0D1A;
  text-align: center;
}

.page-live__contact-section .page-live__section-title {
  color: #E94560;
}

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

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    height: 500px;
  }

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

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

  .page-live__hero-actions .page-live__button {
    margin: 10px 0;
    display: block;
  }

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

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

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

  .page-live__feature-card, .page-live__game-card, .page-live__promo-card {
    padding: 20px;
  }

  /* Ensure images in content areas are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
    object-fit: cover;
  }

  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    width: 100%;
    height: auto;
  }

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

  .page-live__accordion-content p {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-live__hero-section {
    height: 400px;
  }

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

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

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

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

  .page-live__feature-title, .page-live__game-title, .page-live__promo-title {
    font-size: 1.4em;
  }
}