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

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

.page-live__section {
  padding: 60px 0;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
}

.page-live__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-live__text-center {
  text-align: center;
}

.page-live__mt-40 {
  margin-top: 40px;
}

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

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

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

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

.page-live__btn-large {
  padding: 15px 40px;
  font-size: 1.1em;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background-color: #0A0A0A; /* Ensure dark background */
}

.page-live__video-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: #000;
}

.page-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  cursor: pointer;
}

.page-live__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}

.page-live__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content slightly over video for visual connection */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  border: 1px solid #3A2A12;
}

.page-live__main-title {
  font-weight: bold;
  color: #FFF6D6;
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-live__subtitle {
  font-size: 1.2em;
  color: #FFD36B;
  margin-bottom: 30px;
}

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

/* Why Choose Us Section */
.page-live__why-choose-us {
  background-color: #0A0A0A;
}

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

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

.page-live__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__feature-text {
  color: #FFF6D6;
  font-size: 1em;
}

/* Popular Games Section */
.page-live__popular-games {
  background-color: #0A0A0A;
}

.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: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 15px;
}

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

.page-live__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-live__game-title a:hover {
  text-decoration: underline;
}

.page-live__game-description {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Live Providers Section */
.page-live__live-providers {
  background-color: #0A0A0A;
}

.page-live__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for 167x127 */
  gap: 20px;
  margin-top: 40px;
}

.page-live__provider-item {
  background-color: #111111; /* Card BG */
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #3A2A12;
}

.page-live__provider-logo {
  max-width: 100%;
  height: auto;
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  filter: brightness(0.8) grayscale(10%); /* Subtle effect, not changing color */
}

/* Promotions Section */
.page-live__exclusive-promotions {
  background-color: #0A0A0A;
}

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

.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
}

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 15px;
}

.page-live__promo-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__promo-text {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Get Started Section */
.page-live__get-started {
  background-color: #0A0A0A;
}

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

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

.page-live__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-live__step-text {
  color: #FFF6D6;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Mobile Experience Section */
.page-live__mobile-experience {
  background-color: #0A0A0A;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live__mobile-text {
  flex: 1;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12;
}

.page-live__mobile-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  color: #FFF6D6;
  font-size: 1.1em;
}

.page-live__mobile-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-live__mobile-features li::before {
  content: '✓';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Customer Support Section */
.page-live__customer-support {
  background-color: #0A0A0A;
}

.page-live__support-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-live__support-info strong {
  color: #F2C14E;
}

/* FAQ Section */
.page-live__faq-section {
  background-color: #0A0A0A;
}

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

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

.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;
}

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

.page-live__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.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 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; /* Use !important to ensure it overrides */
  padding: 15px 25px;
}

.page-live__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #FFF6D6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
}

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

  .page-live__section {
    padding: 40px 0;
  }

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

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

  .page-live__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-live__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-live__subtitle {
    font-size: 1em;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 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;
  }

  /* Image and video responsive styles */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-live__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live__video-container,
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__mobile-content,
  .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 !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }
  
  .page-live__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  .page-live__mobile-features {
    text-align: left;
    padding-left: 25px;
  }

  .page-live__mobile-features li::before {
    left: 5px;
  }

  .page-live__mobile-image-wrapper {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }

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

@media (max-width: 480px) {
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-live__feature-icon {
    width: 150px;
    height: 150px;
  }
  .page-live__providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .page-live__promo-image {
    height: 150px;
  }
  .page-live__game-image {
    height: 150px;
  }
}