.page-live {
  color: #333333; /* Dark text for light body background */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Desktop padding */
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for content within hero */
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  color: #FFFFFF; /* White text on dark overlay */
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

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

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

.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.3s ease;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
}

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

.page-live__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

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

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

.page-live__section-title {
  font-size: 2.8em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-live__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__introduction-section,
.page-live__games-showcase-section,
.page-live__how-to-start-section,
.page-live__bonuses-section,
.page-live__security-section,
.page-live__mobile-section,
.page-live__faq-section,
.page-live__call-to-action-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Consistent light background for sections */
}

.page-live__games-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 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

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

.page-live__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

.page-live__bonus-item {
  background-color: #f9f9f9;
  border-left: 4px solid #FCBC45;
  border-radius: 8px;
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__bonus-item strong {
  color: #000000;
}

.page-live__button-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live__security-image,
.page-live__mobile-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FCBC45;
}

.page-live__faq-question.page-live__faq-question--active::after {
  content: '-';
}

.page-live__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-live__faq-answer.page-live__faq-answer--visible {
  max-height: 200px; /* Adjust as needed */
}

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

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

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

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

  .page-live__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }

  .page-live__hero-content {
    padding: 20px;
  }

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

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

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

  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-live__section-text {
    font-size: 0.95em;
  }

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

  .page-live__game-image,
  .page-live__security-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
    width: 100%; /* Ensure images take full width of container */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover;
  }

  .page-live__game-card .page-live__button--small,
  .page-live__step-item .page-live__button--small {
    width: auto;
    max-width: none;
  }

  .page-live__button-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Ensure all images within .page-live are responsive */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.6em;
  }

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

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

  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}