.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); /* Ensure content is not hidden by fixed header */
}

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

.page-live__section {
  padding: 60px 0;
  text-align: center;
}

.page-live__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-live__section-intro {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.page-live__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__button--register {
  background-color: #000000; /* Dark background for white text */
  color: #FFFFFF;
}

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

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000; /* Dark text for golden background */
}

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

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

/* Why Choose Section */
.page-live__why-choose .page-live__section-title {
  color: #000000;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-live__game-card h3,
.page-live__game-card p {
  padding: 15px 20px;
}

.page-live__game-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-live__game-description {
  color: #555555;
  font-size: 0.95em;
}

/* How to Start Section */
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
  background-color: #000000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-live__step-text {
  color: #555555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__step-text a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__step-text a:hover {
  text-decoration: underline;
}

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

.page-live__tech-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-live__tech-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-bottom: 20px;
}

.page-live__tech-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-live__tech-description {
  color: #555555;
  font-size: 0.95em;
  padding: 0 20px;
}

/* Promotions Section */
.page-live__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 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.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-live__promo-card h3,
.page-live__promo-card p,
.page-live__promo-card .page-live__button {
  padding: 15px 20px;
}

.page-live__promo-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-live__promo-description {
  color: #555555;
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming {
  background-color: #f0f0f0;
}

.page-live__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-live__responsible-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__responsible-text-content {
  flex: 2 1 500px;
}

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

.page-live__responsible-text-content a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__responsible-text-content a:hover {
  text-decoration: underline;
}

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

.page-live__button--primary:hover {
  background-color: #333333;
}

/* CTA Section */
.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-live__cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* 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;
  }
  .page-live__cta-title {
    font-size: 2.5em;
  }
}

@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: 80%;
    margin: 0 auto;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__step-card, .page-live__tech-item, .page-live__promo-card {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__step-title, .page-live__tech-title, .page-live__promo-title {
    font-size: 1.3em;
  }
  .page-live__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__responsible-image {
    flex: none;
    width: 100%;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-buttons .page-live__button {
    width: 90%;
  }
  /* Mobile image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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