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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000080; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* For desktop */
  overflow: hidden;
}

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

.page-live__hero-container {
  position: relative;
  width: 100%;
  height: auto;
}

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

.page-live__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Main accent color */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main accent color */
  color: #000080; /* Auxiliary color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
  min-width: 200px; /* Ensure button minimum size */
  text-align: center;
}

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

.page-live__cta-button--secondary {
  background-color: #000080; /* Auxiliary color */
  color: #FFD700; /* Main accent color */
  border-color: #FFD700;
}

.page-live__cta-button--secondary:hover {
  background-color: #000066;
  color: #ffe033;
}

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

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

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

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

.page-live__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  min-height: 200px;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

.page-live__game-button {
  display: block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-live__game-button:hover {
  background-color: #e6c200;
}

/* Download CTA Section */
.page-live__download-cta-section {
  background-color: #000080; /* Auxiliary color as background */
  color: #ffffff;
  padding: 80px 0;
}

.page-live__download-cta-section .page-live__section-title {
  color: #FFD700; /* Main accent color for title */
}

.page-live__download-cta-section .page-live__section-intro {
  color: #f0f0f0;
}

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

.page-live__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-live__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__download-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-live__cta-button--outline:hover {
  background-color: #FFD700;
  color: #000080;
}

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

.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: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-live__promo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  min-height: 200px;
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #000080;
  padding: 20px 20px 10px 20px;
}

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

.page-live__promo-button {
  display: block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-live__promo-button:hover {
  background-color: #e6c200;
}

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

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

.page-live__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-live__faq-cta {
  text-align: center;
  margin-top: 50px;
}

.page-live__faq-more-info {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

/* Final CTA Section */
.page-live__final-cta-section {
  background-color: #000080;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-live__final-cta-section .page-live__section-intro {
  color: #f0f0f0;
}

.page-live__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-live__copyright {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666666;
  background-color: #f4f4f4;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__steps-grid, .page-live__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-live__hero-image, .page-live__feature-icon, .page-live__game-image, .page-live__promo-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-live__download-buttons, .page-live__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__hero-content {
    max-width: 95%;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__step-title, .page-live__promo-title {
    font-size: 1.4em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}