.page-live {
  color: #333333; /* Default text color for light body background */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #0A2342; /* Main background color */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.8); /* Darken image slightly for text contrast */
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1600px; /* Max width for content within hero */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  padding: 20px;
  max-width: 90%;
}

.page-live__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

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

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

.page-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A2342;
  border: none;
  margin-top: 15px;
}

.page-live__btn--small:hover {
  background-color: #e6c200;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 25px;
  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-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-live__about-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.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 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-icon {
  width: 100%; /* Ensure images are large enough */
  max-width: 400px; /* Max width to prevent excessive stretching */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-live__feature-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-live__games-section {
  padding: 60px 0;
}

.page-live__games-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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}

.page-live__strategy-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

.page-live__strategy-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__strategy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__strategy-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-live__strategy-title {
  font-size: 1.8em;
  color: #0A2342;
  margin: 20px 20px 10px 20px;
}

.page-live__strategy-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}

.page-live__providers-section {
  padding: 60px 0;
}

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

.page-live__provider-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__provider-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-height: 150px; /* Ensure minimum size */
}

.page-live__provider-name {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-live__provider-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-live__cta-section {
  background: linear-gradient(135deg, #0A2342, #1a426e);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

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

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

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

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

.page-live__faq-section {
  padding: 60px 0;
}

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

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

.page-live__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  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;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #e0e0e0;
  margin-top: 15px;
}

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

.page-live__faq-answer a {
  color: #0A2342;
  text-decoration: underline;
}

/* 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-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__strategy-content, .page-live__providers-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__strategy-image, .page-live__provider-logo {
    max-width: 100%;
    width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }
  .page-live__game-image, .page-live__strategy-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-live__provider-logo {
    min-height: 100px;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__strategy-item, .page-live__provider-card {
    padding: 20px;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer {
    font-size: 0.9em;
  }
  .page-live__container {
    padding: 20px 15px;
  }
  /* Ensure all images within .page-live are responsive and do not cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__strategy-title, .page-live__provider-name {
    font-size: 1.4em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}