.page-live {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #050E1A; /* Matching body background from shared.css */
}

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

.page-live__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  color: #ffffff;
  overflow: hidden;
  padding: 40px 0;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

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

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-live__button {
  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.2s ease;
  cursor: pointer;
  border: none;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

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

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

.page-live__button--text {
  background: none;
  color: #FFD700;
  border: 2px solid transparent;
  padding: 10px 20px;
}

.page-live__button--text:hover {
  border-color: #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-live__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-live__intro-section, .page-live__features-section, .page-live__promo-section, .page-live__guide-section, .page-live__security-section, .page-live__faq-section, .page-live__cta-section {
  padding: 80px 0;
}

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

.page-live__game-card, .page-live__feature-item, .page-live__step-card {
  background-color: #0A192F;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__game-image, .page-live__promo-image, .page-live__security-image {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__game-text, .page-live__feature-text, .page-live__step-text, .page-live__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__promo-card {
  display: flex;
  background-color: #0A192F;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-live__promo-image {
  flex: 1 1 50%;
  height: auto;
  min-height: 350px;
  border-radius: 0;
  margin-bottom: 0;
}

.page-live__promo-content {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.page-live__security-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-live__security-image {
  flex: 1 1 40%;
  height: auto;
  min-height: 300px;
}

.page-live__security-list {
  flex: 1 1 50%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-live__security-item {
  background-color: #0A192F;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__security-list-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__security-list-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

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

.page-live__faq-item {
  background-color: #0A192F;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-live__faq-question--active::after {
  content: '-';
}

.page-live__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-live__faq-answer--active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__promo-card {
    flex-direction: column;
  }
  .page-live__promo-image, .page-live__promo-content {
    flex: 1 1 100%;
  }
  .page-live__promo-content {
    text-align: center;
  }
  .page-live__security-content {
    flex-direction: column;
  }
  .page-live__security-image, .page-live__security-list {
    flex: 1 1 100%;
  }
  .page-live__security-list {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding: 20px 0;
  }
  .page-live__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-live__hero-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__text-content {
    font-size: 0.95em;
  }
  .page-live__intro-section, .page-live__features-section, .page-live__promo-section, .page-live__guide-section, .page-live__security-section, .page-live__faq-section, .page-live__cta-section {
    padding: 50px 0;
  }
  .page-live__game-grid, .page-live__features-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__game-card, .page-live__feature-item, .page-live__step-card {
    padding: 25px;
  }
  .page-live__game-image, .page-live__promo-image, .page-live__security-image {
    height: 200px;
    min-height: 200px;
  }
  .page-live__game-title, .page-live__feature-title, .page-live__step-title, .page-live__promo-title {
    font-size: 1.5em;
  }
  .page-live__promo-content {
    padding: 30px;
  }
  .page-live__security-list-title {
    font-size: 1.3em;
  }
  .page-live__security-item {
    padding: 15px;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.6em;
  }
  .page-live__hero-description {
    font-size: 0.85em;
  }
  .page-live__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__section-description {
    font-size: 0.9em;
  }
  .page-live__game-title, .page-live__feature-title, .page-live__step-title, .page-live__promo-title {
    font-size: 1.3em;
  }
  .page-live__game-text, .page-live__feature-text, .page-live__step-text, .page-live__promo-text, .page-live__security-list-text, .page-live__faq-answer {
    font-size: 0.9em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}