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

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Aligns with global body padding-top, prevents double offset */
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-live__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  border-radius: 12px;
}

.page-live__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Main Color */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-live__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: bold;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live__section-description {
  font-size: 1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.page-live__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Ensure small top padding */
  background-color: #0A0A0A;
}

.page-live__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #3A2A12;
}

.page-live__video-link {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  cursor: pointer;
}

.page-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-live__games-section,
.page-live__sports-betting-section,
.page-live__registration-section,
.page-live__promotions-section,
.page-live__mobile-app-section,
.page-live__security-section,
.page-live__partners-section,
.page-live__support-section,
.page-live__faq-section,
.page-live__join-us-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__game-categories,
.page-live__sports-grid,
.page-live__registration-steps,
.page-live__promo-cards,
.page-live__security-features,
.page-live__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.page-live__game-category-card,
.page-live__sport-card,
.page-live__step-card,
.page-live__promo-card,
.page-live__security-item,
.page-live__support-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

.page-live__category-icon,
.page-live__step-icon,
.page-live__security-icon,
.page-live__support-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 20px auto;
  display: block;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-live__sport-image,
.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-live__category-title,
.page-live__sport-title,
.page-live__step-title,
.page-live__promo-title,
.page-live__security-title,
.page-live__support-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-live__category-text,
.page-live__sport-text,
.page-live__step-text,
.page-live__promo-text,
.page-live__security-text,
.page-live__support-text {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__btn-link {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for contrast on bright button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 211, 107, 0.6);
}

.page-live__app-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 40px;
  gap: 40px;
}

.page-live__app-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #3A2A12;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-live__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.page-live__feature-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__feature-list li::before {
  content: '⚡';
  margin-right: 15px;
  font-size: 1.2em;
}

.page-live__feature-highlight {
  color: #FFD36B; /* Glow */
  font-weight: bold;
}

.page-live__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

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

.page-live__partner-logo {
  width: 100%;
  max-width: 167px; /* Specific width for partner logos */
  height: 127px;  /* Specific height for partner logos */
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(10%) brightness(120%);
}

.page-live__faq-list {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.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;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-question h3 {
  margin: 0;
  color: #F2C14E;
  font-size: 1.1em;
}

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

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

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #0a0a0a;
}

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

.page-live__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  flex-grow: 1;
  max-width: 300px;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 211, 107, 0.6);
}

.page-live__btn-secondary {
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Border */
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-live__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #222222;
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.5);
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .page-live__hero-section {
    padding-bottom: 100px;
  }

  .page-live__app-features {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .page-live__app-image {
    flex-shrink: 0;
  }

  .page-live__feature-list {
    margin-left: 40px;
    flex-grow: 1;
  }
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
  .page-live__hero-section,
  .page-live__video-section,
  .page-live__games-section,
  .page-live__sports-betting-section,
  .page-live__registration-section,
  .page-live__promotions-section,
  .page-live__mobile-app-section,
  .page-live__security-section,
  .page-live__partners-section,
  .page-live__support-section,
  .page-live__faq-section,
  .page-live__join-us-section {
    padding: 30px 15px;
  }

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

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

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

  .page-live__game-categories,
  .page-live__sports-grid,
  .page-live__registration-steps,
  .page-live__promo-cards,
  .page-live__security-features,
  .page-live__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  /* Responsive images */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure containers for images and content are responsive */
  .page-live__hero-section,
  .page-live__video-section,
  .page-live__games-section,
  .page-live__sports-betting-section,
  .page-live__registration-section,
  .page-live__promotions-section,
  .page-live__mobile-app-section,
  .page-live__security-section,
  .page-live__partners-section,
  .page-live__support-section,
  .page-live__faq-section,
  .page-live__join-us-section,
  .page-live__video-container,
  .page-live__game-category-card,
  .page-live__sport-card,
  .page-live__step-card,
  .page-live__promo-card,
  .page-live__security-item,
  .page-live__support-card,
  .page-live__partner-item,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__video-section {
    padding-top: 10px !important;
  }

  /* Responsive buttons */
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__btn-primary,
  .page-live__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-live__app-features {
    flex-direction: column;
    gap: 20px;
  }

  .page-live__feature-list {
    margin-left: 0;
  }

  .page-live__feature-list li {
    padding: 12px 15px;
    font-size: 0.9em;
  }

  .page-live__partner-logo {
    max-width: 100%;
    height: auto; /* Allow height to adjust for smaller screens */
  }

  .page-live__faq-question,
  .page-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}