.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: #0A0A0A;
  overflow: hidden;
}

.page-live__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-live__hero-text-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-live__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
}

.page-live__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text on gold button */
  border: none;
}

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-live__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-live__btn-secondary:hover {
  transform: translateY(-2px);
  background: #FFD36B; /* Glow */
  color: #111111; /* Card BG */
}

.page-live__btn-tertiary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 1px solid #FFD36B; /* Glow */
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live__btn-tertiary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-live__section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live__text-block {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-live__content-grid,
.page-live__game-grid,
.page-live__advantages-grid,
.page-live__steps-grid {
  display: grid;
  gap: 30px;
  padding-top: 20px;
}

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

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

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

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

.page-live__feature-card,
.page-live__game-card,
.page-live__advantage-item,
.page-live__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-live__card-title,
.page-live__advantage-title,
.page-live__step-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__card-description,
.page-live__advantage-description,
.page-live__step-description {
  font-size: 1em;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-live__view-all-games {
  text-align: center;
  margin-top: 40px;
}

.page-live__step-number {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live__cta-section {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-live__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 30px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live__provider-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__provider-logo {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 167px; /* Fixed size for game type */
  min-height: 127px; /* Fixed size for game type */
  width: 167px;
  height: 127px;
  object-fit: contain;
}

.page-live__mobile-app {
  background-color: #111111;
}

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

.page-live__app-text {
  flex: 1;
  min-width: 300px;
}

.page-live__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live__app-subtitle,
.page-live__responsible-subtitle {
  font-size: 1.8em;
  color: #F2C14E;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__responsible-text {
  flex: 1;
  min-width: 300px;
}

.page-live__responsible-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__responsible-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: #1A1A1A;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  text-align: left;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-image {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
  }

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

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

  .page-live__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-live__content-grid,
  .page-live__game-grid,
  .page-live__advantages-grid,
  .page-live__steps-grid,
  .page-live__providers-grid {
    grid-template-columns: 1fr;
  }

  .page-live__app-content,
  .page-live__responsible-content {
    flex-direction: column;
  }

  .page-live__app-image-wrapper,
  .page-live__responsible-image-wrapper {
    order: -1; /* Image above text on mobile */
  }

  /* Mobile images responsiveness */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__advantage-item,
  .page-live__step-card,
  .page-live__provider-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile buttons responsiveness */
  .page-live__cta-button,
  .page-live__btn-primary,
  .page-live__btn-secondary,
  .page-live__btn-tertiary,
  .page-live a[class*="button"],
  .page-live a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-live__cta-buttons,
  .page-live__button-group,
  .page-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically */
  }

  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-live__faq-answer {
    padding: 0 20px;
  }

  .page-live__faq-item.active .page-live__faq-answer {
    padding: 15px 20px;
  }
}