.page-live {
  color: #333333; /* Dark text for default light body background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
}

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

.page-live__hero-section {
  background: linear-gradient(135deg, #1E90FF, #0056b3); /* Using auxiliary color for background */
  padding: 80px 20px 60px; /* Adjusted padding, header offset handled by main */
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-live__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-live__hero-image {
  width: 100%;
  max-width: 1000px; /* Max width for the image to not be too wide */
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-live__hero-content {
  z-index: 1;
  position: relative;
}

.page-live__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Main brand color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

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

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #1E90FF; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

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

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

.page-live__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-live__button--outline {
  background-color: transparent;
  color: #1E90FF; /* Auxiliary color for outline text */
  border: 2px solid #1E90FF;
}

.page-live__button--outline:hover {
  background-color: rgba(30, 144, 255, 0.1);
  transform: translateY(-2px);
}

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

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

.page-live__why-choose-section,
.page-live__games-section,
.page-live__dealers-section,
.page-live__promotions-section,
.page-live__getting-started-section,
.page-live__responsible-gaming-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 60px 0;
}

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

.page-live__features-grid,
.page-live__games-grid,
.page-live__promos-grid,
.page-live__steps-grid,
.page-live__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__promo-card,
.page-live__step-card,
.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.page-live__feature-icon,
.page-live__game-image,
.page-live__promo-image,
.page-live__dealer-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide */
  min-width: 200px; /* Minimum width for content images */
  min-height: 200px; /* Minimum height for content images */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-live__card-title {
  font-size: 1.5em;
  color: #1E90FF; /* Auxiliary color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__card-description {
  font-size: 1em;
  color: #666666;
  flex-grow: 1; /* Allow description to take available space */
  margin-bottom: 20px;
}

.page-live__full-games-cta,
.page-live__all-promos-cta,
.page-live__faq-cta {
  text-align: center;
  margin-top: 50px;
}

.page-live__full-games-text,
.page-live__all-promos-text,
.page-live__faq-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 20px;
}

.page-live__dealers-section {
  background-color: #f2f7ff;
}

.page-live__dealer-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__dealer-image {
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-live__dealer-content {
  text-align: left;
  max-width: 700px;
}

.page-live__dealer-name {
  font-size: 1.8em;
  color: #FFD700; /* Main brand color for dealer names */
  margin-bottom: 10px;
}

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

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

.page-live__step-card {
  padding-top: 40px;
}

.page-live__step-number {
  font-size: 2.5em;
  color: #FFD700; /* Main brand color for step numbers */
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #1E90FF;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__responsible-gaming-section {
  background-color: #e8f0fe;
  text-align: center;
}

.page-live__responsible-content {
  max-width: 800px;
  margin: 30px auto 0;
}

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

.page-live__faq-section {
  background-color: #ffffff;
}

.page-live__faq-item {
  text-align: left;
  padding: 25px;
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #1E90FF; /* Auxiliary color for FAQ questions */
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-live__cta-section {
  background: linear-gradient(135deg, #FFD700, #e6c200); /* Main brand color gradient */
  padding: 80px 20px;
  text-align: center;
  color: #1E90FF; /* Auxiliary color for text on gold background */
}

.page-live__cta-title {
  font-size: 3em;
  color: #1E90FF; /* Auxiliary color for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-live__cta-description {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure main content area has padding for fixed header on PC */
.page-live {
  padding-top: var(--header-offset, 120px);
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px 40px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promos-grid,
  .page-live__steps-grid,
  .page-live__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-live__dealer-highlight {
    flex-direction: column;
  }
  .page-live__dealer-content {
    text-align: center;
  }
  .page-live__dealer-name {
    font-size: 1.5em;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1.2em;
  }
  /* Mobile content area image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area img display size >= 200px (only for content images) */
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__dealer-image {
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__card-title {
    font-size: 1.3em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
}