.page-live {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  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__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent dark background for hero section */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(252, 188, 69, 0.7);
}

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

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

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

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live__button--login,
.page-live__button--play,
.page-live__button--bet-sports,
.page-live__button--view-promo,
.page-live__button--learn-responsible,
.page-live__button--register-cta,
.page-live__button--download-app {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--login:hover,
.page-live__button--play:hover,
.page-live__button--bet-sports:hover,
.page-live__button--view-promo:hover,
.page-live__button--learn-responsible:hover,
.page-live__button--register-cta:hover,
.page-live__button--download-app:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-live__button--explore {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-live__button--explore:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-live__about-section,
.page-live__casino-section,
.page-live__sports-section,
.page-live__features-section,
.page-live__promo-section,
.page-live__responsible-section,
.page-live__cta-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #FCBC45;
  text-shadow: 0 0 8px rgba(252, 188, 69, 0.5);
}

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

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(252, 188, 69, 0.2);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-live__game-text {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-live__sports-text {
  flex: 1;
}

.page-live__sports-subtitle {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-live__sports-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-live__sports-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-live__sports-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-live__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-live__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-live__features-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-live__features-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-live__promo-section .page-live__button,
.page-live__responsible-section .page-live__button {
  margin-top: 40px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live__promo-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-live__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-live__cta-section .page-live__section-description {
  margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.5em;
  }
  .page-live__sports-content {
    flex-direction: column;
  }
  .page-live__sports-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
  }
  .page-live__about-section,
  .page-live__casino-section,
  .page-live__sports-section,
  .page-live__features-section,
  .page-live__promo-section,
  .page-live__responsible-section,
  .page-live__cta-section {
    padding: 50px 0;
  }
  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__game-title {
    font-size: 1.5em;
  }
  .page-live__sports-subtitle {
    font-size: 1.7em;
  }
  .page-live__feature-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-live__feature-heading {
    font-size: 1.5em;
  }
  /* CRITICAL: Mobile content images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__button {
    width: 90%;
  }
}