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

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

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

.page-live__card--dark-bg {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-live__video-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  /* Ensure video doesn't take up full viewport height, but respects aspect ratio */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100%) */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

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

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

.page-live__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
}

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

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

.page-live__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

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

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

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

.page-live__btn-secondary:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

/* General Section Styling */
.page-live__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live__text-main {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__game-card {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.page-live__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

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

.page-live__game-card .page-live__btn-primary {
  width: 100%;
}

/* Providers Section */
.page-live__providers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns for desktop */
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-live__providers-grid img {
  
  
  object-fit: contain;
  filter: brightness(0.8) grayscale(0.2);
  transition: filter 0.3s ease;
  display: block;
}

.page-live__providers-grid img:hover {
  filter: brightness(1) grayscale(0);
}

/* Why Choose Us Section */
.page-live__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__feature-item {
  background-color: #111111; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  text-align: center;
}

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

.page-live__feature-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

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

.page-live__step-card {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

/* Bonuses Section */
.page-live__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__bonus-card {
  padding: 20px;
  text-align: center;
}

.page-live__bonus-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section .page-live__btn-secondary {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

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

.page-live__faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  background-color: #111111; /* Card BG */
  overflow: hidden;
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #1A1A1A; /* Slightly darker for question */
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.1em;
}

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

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

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

.page-live__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
  text-align: left;
}

/* Final CTA Section */
.page-live__final-cta-section .page-live__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__main-title {
    font-size: 2.8em;
  }

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

  .page-live__providers-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablet */
  }
}

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

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

  .page-live__video-container {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for smaller screens if needed, or keep 16:9 */
  }

  .page-live__hero-content {
    margin-top: 20px;
  }

  .page-live__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

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

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live__text-main {
    font-size: 0.95em;
    text-align: left;
  }

  .page-live__game-grid,
  .page-live__feature-list,
  .page-live__steps-grid,
  .page-live__bonus-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__game-card,
  .page-live__feature-item,
  .page-live__step-card,
  .page-live__bonus-card {
    padding: 15px;
  }

  .page-live__game-card img,
  .page-live__step-card img,
  .page-live__bonus-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live__providers-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    gap: 15px;
  }

  .page-live__providers-grid img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

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

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

  .page-live__container,
  .page-live__game-card,
  .page-live__feature-item,
  .page-live__step-card,
  .page-live__bonus-card,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-live__main-title {
    font-size: 1.8em;
  }

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