.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-live__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.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, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-live__button--login,
.page-live__button--play,
.page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover,
.page-live__button--play:hover,
.page-live__button--download:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-live__button--view-promo,
.page-live__button--learn-more,
.page-live__button--contact,
.page-live__button--faq {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-live__button--view-promo:hover,
.page-live__button--learn-more:hover,
.page-live__button--contact:hover,
.page-live__button--faq:hover {
  background-color: #333333;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

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

.page-live__why-choose-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

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

.page-live__feature-item:hover {
  transform: translateY(-5px);
}

.page-live__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__popular-games-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

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

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

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

.page-live__game-card .page-live__button--play {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-live__how-to-start-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-live__how-to-start-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__how-to-start-section .page-live__section-text {
  color: #f0f0f0;
}

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

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

.page-live__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-live__guide-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-live__promotions-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-live__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: bold;
}

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

.page-live__promo-card .page-live__button--view-promo {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-live__responsible-gaming-section,
.page-live__support-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-live__responsible-gaming-section .page-live__section-text,
.page-live__support-section .page-live__section-text {
  margin-bottom: 30px;
}

.page-live__support-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
  margin-bottom: 20px;
}

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

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

/* 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.2em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons,
  .page-live__how-to-buttons,
  .page-live__cta-buttons,
  .page-live__support-options {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-live__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__content-area {
    padding: 30px 15px;
  }
  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__steps-grid,
  .page-live__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__guide-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__promo-image {
    height: 180px;
  }
  .page-live__feature-item,
  .page-live__game-card,
  .page-live__step-item,
  .page-live__promo-card {
    padding: 25px;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title,
  .page-live__promo-title {
    font-size: 1.4em;
  }
  .page-live__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
}

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

/* Ensure all images within .page-live are responsive on mobile */
@media (max-width: 768px) {
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}