.page-blog-daga68-live-streaming-experience {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Default text color for dark body background */
  background-color: #0A0A0A; /* Matches body background from custom colors */
}

.page-blog-daga68-live-streaming-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-daga68-live-streaming-experience__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
}

.page-blog-daga68-live-streaming-experience__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop */
}

.page-blog-daga68-live-streaming-experience__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-daga68-live-streaming-experience__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #3A2A12; /* Border from custom colors */
}

.page-blog-daga68-live-streaming-experience__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-daga68-live-streaming-experience__hero-content h1 {
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive h1 */
  font-weight: bold;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-daga68-live-streaming-experience__hero-content p {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-daga68-live-streaming-experience__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-daga68-live-streaming-experience__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-daga68-live-streaming-experience__section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD36B; /* Glow color for titles */
  line-height: 1.2;
}

.page-blog-daga68-live-streaming-experience__sub-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary color for sub-titles */
}

.page-blog-daga68-live-streaming-experience__paragraph {
  font-size: 16px;
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-blog-daga68-live-streaming-experience__light-bg {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6; /* Text Main color */
  padding: 60px 0;
}

.page-blog-daga68-live-streaming-experience__dark-bg {
  background-color: #0A0A0A; /* Background color */
  color: #FFF6D6; /* Text Main color */
  padding: 60px 0;
}

.page-blog-daga68-live-streaming-experience__feature-grid, 
.page-blog-daga68-live-streaming-experience__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-daga68-live-streaming-experience__feature-card,
.page-blog-daga68-live-streaming-experience__promo-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-daga68-live-streaming-experience__feature-card:hover,
.page-blog-daga68-live-streaming-experience__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-daga68-live-streaming-experience__feature-card img,
.page-blog-daga68-live-streaming-experience__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-daga68-live-streaming-experience__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  margin-bottom: 15px;
}

.page-blog-daga68-live-streaming-experience__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-daga68-live-streaming-experience__list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-blog-daga68-live-streaming-experience__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
}

.page-blog-daga68-live-streaming-experience__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-blog-daga68-live-streaming-experience__cta-bottom-section {
  padding-bottom: 80px;
}

.page-blog-daga68-live-streaming-experience__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-daga68-live-streaming-experience__btn-primary,
.page-blog-daga68-live-streaming-experience__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-daga68-live-streaming-experience__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-daga68-live-streaming-experience__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-daga68-live-streaming-experience__btn-secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-daga68-live-streaming-experience__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* FAQ Section Styling */
details.page-blog-daga68-live-streaming-experience__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

details.page-blog-daga68-live-streaming-experience__faq-item summary.page-blog-daga68-live-streaming-experience__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Primary color for question text */
  font-weight: bold;
}

details.page-blog-daga68-live-streaming-experience__faq-item summary.page-blog-daga68-live-streaming-experience__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-daga68-live-streaming-experience__faq-item summary.page-blog-daga68-live-streaming-experience__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Slight hover effect */
}

.page-blog-daga68-live-streaming-experience__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-daga68-live-streaming-experience__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-daga68-live-streaming-experience__faq-item .page-blog-daga68-live-streaming-experience__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background color for answer */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6; /* Text Main color */
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-daga68-live-streaming-experience__hero-content h1 {
    font-size: clamp(26px, 4.5vw, 42px);
  }
  .page-blog-daga68-live-streaming-experience__hero-content p {
    font-size: 17px;
  }
  .page-blog-daga68-live-streaming-experience__section-title {
    font-size: clamp(22px, 3.8vw, 38px);
  }
  .page-blog-daga68-live-streaming-experience__sub-title {
    font-size: clamp(18px, 2.8vw, 28px);
  }
}

@media (max-width: 768px) {
  .page-blog-daga68-live-streaming-experience__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-daga68-live-streaming-experience__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-daga68-live-streaming-experience__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-daga68-live-streaming-experience__section-title {
    font-size: clamp(20px, 5vw, 30px);
  }

  .page-blog-daga68-live-streaming-experience__sub-title {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .page-blog-daga68-live-streaming-experience__paragraph,
  .page-blog-daga68-live-streaming-experience__list li,
  .page-blog-daga68-live-streaming-experience__faq-answer p {
    font-size: 15px;
  }

  .page-blog-daga68-live-streaming-experience__feature-grid,
  .page-blog-daga68-live-streaming-experience__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-daga68-live-streaming-experience__feature-card,
  .page-blog-daga68-live-streaming-experience__promo-card {
    padding: 20px;
  }

  .page-blog-daga68-live-streaming-experience__container {
    padding: 0 15px;
  }

  .page-blog-daga68-live-streaming-experience__content-image {
    margin: 20px auto;
  }

  .page-blog-daga68-live-streaming-experience__btn-primary,
  .page-blog-daga68-live-streaming-experience__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-daga68-live-streaming-experience__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-daga68-live-streaming-experience__light-bg,
  .page-blog-daga68-live-streaming-experience__dark-bg {
    padding: 40px 0;
  }

  details.page-blog-daga68-live-streaming-experience__faq-item summary.page-blog-daga68-live-streaming-experience__faq-question { padding: 15px; }
  .page-blog-daga68-live-streaming-experience__faq-qtext { font-size: 15px; }
}

/* Ensure all images are responsive and do not overflow */
.page-blog-daga68-live-streaming-experience img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-daga68-live-streaming-experience__hero-image,
.page-blog-daga68-live-streaming-experience__feature-card,
.page-blog-daga68-live-streaming-experience__promo-card,
.page-blog-daga68-live-streaming-experience__content-area {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-blog-daga68-live-streaming-experience img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-daga68-live-streaming-experience__section,
  .page-blog-daga68-live-streaming-experience__card,
  .page-blog-daga68-live-streaming-experience__container,
  .page-blog-daga68-live-streaming-experience__feature-card,
  .page-blog-daga68-live-streaming-experience__promo-card,
  .page-blog-daga68-live-streaming-experience__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-daga68-live-streaming-experience__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-blog-daga68-live-streaming-experience__hero-image img {
    border-radius: 0;
  }
}