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

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

.page-live__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.2;
}

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

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

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

.page-live__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-live__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-live__btn-secondary:hover {
  background: #F2C14E; /* Main Color */
  color: #0A0A0A; /* Background */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-live__btn-text {
  color: #F2C14E; /* Main Color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-live__btn-text:hover {
  color: #FFD36B; /* Auxiliary Color */
  text-decoration: underline;
}

.page-live__card-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-live__video-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.page-live__video-link {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.page-live__hero-video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

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

.page-live__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 */
  font-weight: 800;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* Intro Section */
.page-live__intro-section {
  padding: 80px 0;
  margin-bottom: 40px;
  border-radius: 12px;
}

/* Live Casino Section */
.page-live__live-casino-section {
  padding: 80px 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 {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-live__game-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-live__game-title {
  font-size: 1.8em;
  color: #FFF6D6; /* Text Main */
  margin: 20px 15px 10px 15px;
}

.page-live__game-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin: 0 15px 20px 15px;
  line-height: 1.5;
}

/* Live Sports Section */
.page-live__live-sports-section {
  padding: 80px 0;
  margin-top: 60px;
  border-radius: 12px;
}

.page-live__sports-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-live__sports-content {
  flex: 1;
  text-align: left;
}

.page-live__sports-content .page-live__section-title,
.page-live__sports-content .page-live__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-live__sports-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px 0;
}

.page-live__sports-features li {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-live__feature-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #F2C14E; /* Main Color */
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
}

.page-live__feature-icon::before {
  content: '✓';
  color: #0A0A0A;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-live__sports-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-live__sports-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  margin-top: 60px;
  border-radius: 12px;
}

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

.page-live__promo-card {
  background-color: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-live__promo-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  line-height: 1.5;
}

.page-live__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 80px 0;
  margin-top: 60px;
}

.page-live__mobile-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse;
}

.page-live__mobile-content {
  flex: 1;
  text-align: left;
}

.page-live__mobile-content .page-live__section-title,
.page-live__mobile-content .page-live__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-live__mobile-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.page-live__why-choose-us-section {
  padding: 80px 0;
  margin-top: 60px;
  border-radius: 12px;
}

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

.page-live__feature-item {
  background-color: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-live__feature-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  line-height: 1.5;
}

/* Get Started Section */
.page-live__get-started-section {
  padding: 80px 0;
  margin-top: 60px;
}

.page-live__cta-block {
  background-color: #111111; /* Card BG */
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
  text-align: left;
}

.page-live__steps-list li {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}

.page-live__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #F2C14E; /* Main Color */
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

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

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  margin-top: 60px;
  border-radius: 12px;
}

.page-live__faq-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-live__faq-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-live__faq-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__faq-items-wrapper {
  flex: 2;
}

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

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

.page-live__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

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

.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 Main */
}

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

.page-live__faq-answer p {
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__sports-flex,
  .page-live__mobile-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-live__sports-content,
  .page-live__mobile-content {
    text-align: center;
  }

  .page-live__sports-content .page-live__section-title,
  .page-live__sports-content .page-live__section-description,
  .page-live__mobile-content .page-live__section-title,
  .page-live__mobile-content .page-live__section-description {
    text-align: center;
  }

  .page-live__faq-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-live {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-live__container {
    padding: 0 15px;
  }

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

  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-live__btn-primary,
  .page-live__btn-secondary,
  .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;
  }

  .page-live__cta-buttons {
    flex-direction: column;
  }

  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-live__video-wrapper,
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__feature-item,
  .page-live__cta-block,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-live__intro-section,
  .page-live__live-casino-section,
  .page-live__live-sports-section,
  .page-live__promotions-section,
  .page-live__mobile-section,
  .page-live__why-choose-us-section,
  .page-live__get-started-section,
  .page-live__faq-section {
    padding: 40px 0;
  }

  .page-live__video-wrapper {
    margin-bottom: 20px;
  }

  .page-live__sports-image-wrapper,
  .page-live__mobile-image-wrapper,
  .page-live__faq-image-wrapper {
    min-width: unset;
    padding: 0 15px;
  }

  .page-live__sports-content .page-live__section-title,
  .page-live__sports-content .page-live__section-description,
  .page-live__mobile-content .page-live__section-title,
  .page-live__mobile-content .page-live__section-description {
    padding: 0;
  }

  .page-live__steps-list {
    margin: 20px auto;
  }

  .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: 10px 20px 15px 20px;
  }

  .page-live__feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .page-live__feature-icon::before {
    font-size: 12px;
  }
}