.page-live {
  color: #ffffff; /* Light text for dark body background */
  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: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

.page-live__section-intro {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px;
  color: #f0f0f0;
}

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

.page-live__button--primary {
  background-color: #DC143C; /* Scarlet action button */
  color: #ffffff;
  border: 2px solid #DC143C;
}

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-2px);
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}

.page-live__hero-title {
  font-size: 4em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 300;
}

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

/* Features Section */
.page-live__features-section {
  padding: 80px 0;
  background: rgba(30, 144, 255, 0.1); /* Light blue tint */
  margin-bottom: 60px;
}

.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: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.page-live__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-live__cta-center {
  text-align: center;
  margin-top: 60px;
}

/* Games Showcase Section */
.page-live__games-showcase-section {
  padding: 80px 0;
  margin-bottom: 60px;
}

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

.page-live__game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30, 144, 255, 0.2);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-live__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-live__game-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
  line-height: 1.5;
}

.page-live__game-button {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background-color: #1E90FF; /* Dodger Blue */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

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

/* Promo Section */
.page-live__promo-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
  margin-bottom: 60px;
}

.page-live__promo-section .page-live__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__promo-image {
  flex: 1 1 500px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure min size */
}

.page-live__promo-content {
  flex: 1 1 400px;
}

.page-live__promo-content .page-live__section-title {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-live__promo-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Security Section */
.page-live__security-section {
  padding: 80px 0;
  margin-bottom: 60px;
}

.page-live__security-section .page-live__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__security-content {
  flex: 1 1 400px;
}

.page-live__security-content .page-live__section-title {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-live__security-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-live__security-image {
  flex: 1 1 500px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure min size */
}

/* How to Start Section */
.page-live__how-to-start-section {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05); /* Light gold tint */
  margin-bottom: 60px;
}

.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: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-live__step-title {
  font-size: 1.8em;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__step-description {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-live__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DC143C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__step-button:hover {
  background-color: #ff2a53;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 80px 0;
  margin-bottom: 60px;
}

.page-live__mobile-section .page-live__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__mobile-image {
  flex: 1 1 500px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure min size */
}

.page-live__mobile-content {
  flex: 1 1 400px;
}

.page-live__mobile-content .page-live__section-title {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-live__mobile-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Support Section */
.page-live__support-section {
  padding: 80px 0;
  background: rgba(30, 144, 255, 0.05); /* Light blue tint */
  text-align: center;
}

.page-live__support-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-live__support-section .page-live__button--primary {
  margin-right: 20px;
}

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

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

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

  .page-live__promo-section .page-live__container,
  .page-live__security-section .page-live__container,
  .page-live__mobile-section .page-live__container {
    flex-direction: column;
    text-align: center;
  }

  .page-live__promo-content .page-live__section-title,
  .page-live__security-content .page-live__section-title,
  .page-live__mobile-content .page-live__section-title {
    text-align: center;
  }

  .page-live__promo-image,
  .page-live__security-image,
  .page-live__mobile-image {
    order: -1; /* Image first on mobile */
  }
}

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

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

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

  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

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

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-live__promo-section .page-live__container,
  .page-live__security-section .page-live__container,
  .page-live__mobile-section .page-live__container {
    gap: 30px;
  }

  .page-live__promo-image,
  .page-live__security-image,
  .page-live__mobile-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 200px;
  }

  .page-live__hero-image,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__security-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto;
  }

  .page-live__features-section,
  .page-live__games-showcase-section,
  .page-live__promo-section,
  .page-live__security-section,
  .page-live__how-to-start-section,
  .page-live__mobile-section,
  .page-live__support-section {
    padding: 40px 0;
  }

  .page-live__support-section .page-live__button--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}