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

.page-live__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #000000; /* Main color for hero background */
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
}

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

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

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

.page-live__hero-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, color 0.3s ease;
}

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

.page-live__hero-button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-live__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__hero-button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

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

.page-live__about-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-live__games-section {
  padding: 60px 0;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.page-live__game-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-title a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FCBC45;
}

.page-live__game-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
  padding: 0 15px;
  flex-grow: 1;
}

.page-live__game-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

.page-live__features-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__features-section .page-live__section-description {
  color: #e0e0e0;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__feature-icon {
  width: 150px; /* Increased size from original 100px to meet 200px min requirement in display */
  height: 150px; /* Increased size from original 100px to meet 200px min requirement in display */
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

.page-live__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__cta-section .page-live__section-description {
  color: #f0f0f0;
}

.page-live__cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 40px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.4em;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__cta-button:hover {
  transform: translateY(-5px);
  background-color: #FFFFFF;
}

.page-live__guide-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

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

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

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

.page-live__guide-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__guide-button:hover {
  background-color: #e0a53b;
}

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

.page-live__responsible-gaming-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__responsible-gaming-section .page-live__section-description {
  color: #e0e0e0;
}

.page-live__responsible-gaming-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__responsible-gaming-button:hover {
  background-color: #FFFFFF;
}

.page-live__faq-section {
  padding: 60px 0;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px 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: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none;
  margin-top: 15px;
}

.page-live__faq-question.active + .page-live__faq-answer {
  display: block;
}

.page-live__faq-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-button:hover {
  background-color: #e0a53b;
}

.page-live__resources-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-live__resource-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.page-live__resource-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-live__resource-title a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-live__resource-title a:hover {
  color: #FCBC45;
}

.page-live__resource-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-live__resource-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__resource-button:hover {
  background-color: #e0a53b;
}

.page-live__app-download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #333333, #000000);
  color: #FFFFFF;
  text-align: center;
}

.page-live__app-download-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__app-download-section .page-live__section-description {
  color: #f0f0f0;
}

.page-live__app-download-button {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 40px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.4em;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__app-download-button:hover {
  transform: translateY(-5px);
  background-color: #FFFFFF;
}

/* Media Queries for Responsiveness */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 30px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__hero-button {
    width: 100%;
    max-width: 250px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__game-grid, .page-live__feature-grid, .page-live__guide-steps, .page-live__resource-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon {
    width: 200px; /* Enforce min size for mobile */
    height: 200px; /* Enforce min size for mobile */
  }
  /* Ensure all images within .page-live are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__cta-button, .page-live__app-download-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-live__game-image {
    height: 180px;
  }
  .page-live__feature-icon {
    width: 200px;
    height: 200px;
  }
}