:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --card-bg: #D32F2F;
  --section-bg: #B71C1C;
  --text-main: #FFF5E1;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red: #7A0E0E;
  --light-text: #ffffff; /* For dark backgrounds */
  --dark-text: #333333; /* For light backgrounds */
  --light-bg: #ffffff;
  --light-grey-bg: #f9f9f9;
}

.page-live-streams {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--section-bg);
}

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

.page-live-streams__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-streams__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-live-streams__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 2px;
}

.page-live-streams__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-live-streams__dark-section {
  background-color: var(--deep-red);
  color: var(--light-text);
}

.page-live-streams__dark-section .page-live-streams__text-block {
  color: var(--light-text);
}

.page-live-streams__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background-color: var(--section-bg);
  overflow: hidden;
}

.page-live-streams__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-live-streams__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-live-streams__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-live-streams__main-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-live-streams__hero-description {
  font-size: 20px;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-live-streams__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-color);
}

.page-live-streams__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-live-streams__introduction-section {
  background-color: var(--light-grey-bg);
  color: var(--dark-text);
}
.page-live-streams__introduction-section .page-live-streams__section-title {
  color: var(--primary-color);
}
.page-live-streams__introduction-section .page-live-streams__text-block {
  color: var(--dark-text);
}

.page-live-streams__events-section {
  background-color: var(--deep-red);
}

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

.page-live-streams__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border-color);
}

.page-live-streams__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streams__card-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-streams__card p {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live-streams__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gold-color);
  color: var(--deep-red);
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  margin-top: auto;
}

.page-live-streams__btn-secondary:hover {
  background: var(--glow-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streams__technology-section {
  background-color: var(--light-bg);
  color: var(--dark-text);
}
.page-live-streams__technology-section .page-live-streams__section-title {
  color: var(--primary-color);
}
.page-live-streams__technology-section .page-live-streams__text-block {
  color: var(--dark-text);
}
.page-live-streams__technology-section a {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-live-streams__technology-section a:hover {
  color: var(--secondary-color);
}

.page-live-streams__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-live-streams__text-content {
  flex: 1;
}

.page-live-streams__image-wrapper {
  flex: 1;
}

.page-live-streams__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-live-streams__guide-section {
  background-color: var(--section-bg);
}

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

.page-live-streams__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-streams__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streams__step-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-streams__step-item p {
  color: var(--text-main);
  font-size: 16px;
}

.page-live-streams__step-item a {
  color: var(--gold-color);
  text-decoration: underline;
}
.page-live-streams__step-item a:hover {
  color: var(--glow-color);
}

.page-live-streams__offers-section {
  background-color: var(--light-grey-bg);
  color: var(--dark-text);
}
.page-live-streams__offers-section .page-live-streams__section-title {
  color: var(--primary-color);
}
.page-live-streams__offers-section .page-live-streams__text-block {
  color: var(--dark-text);
}

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

.page-live-streams__offer-card {
  background-color: var(--light-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.page-live-streams__offer-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-live-streams__offer-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-streams__offer-card p {
  font-size: 16px;
  color: var(--dark-text);
  flex-grow: 1;
}

.page-live-streams__cta-area {
  margin-top: 50px;
  text-align: center;
}

.page-live-streams__support-section {
  background-color: var(--deep-red);
}

.page-live-streams__support-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-live-streams__support-text {
  flex: 1;
}

.page-live-streams__support-image {
  flex: 1;
}

.page-live-streams__support-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-live-streams__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #000000;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  margin-top: 20px;
}

.page-live-streams__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streams__faq-section {
  background-color: var(--light-grey-bg);
  color: var(--dark-text);
}
.page-live-streams__faq-section .page-live-streams__section-title {
  color: var(--primary-color);
}

.page-live-streams__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

details.page-live-streams__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--light-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
details.page-live-streams__faq-item summary.page-live-streams__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: var(--light-bg);
}
details.page-live-streams__faq-item summary.page-live-streams__faq-question::-webkit-details-marker {
  display: none;
}
details.page-live-streams__faq-item summary.page-live-streams__faq-question:hover {
  background: var(--light-grey-bg);
}
.page-live-streams__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-text);
}
.page-live-streams__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-live-streams__faq-item .page-live-streams__faq-answer {
  padding: 0 25px 25px;
  background: var(--light-grey-bg);
  border-radius: 0 0 10px 10px;
}
.page-live-streams__faq-answer p {
  font-size: 16px;
  color: var(--dark-text);
  margin-top: 15px;
}
.page-live-streams__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-live-streams__faq-answer a:hover {
  color: var(--secondary-color);
}

.page-live-streams__conclusion-section {
  background-color: var(--deep-red);
}
.page-live-streams__conclusion-section .page-live-streams__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-streams__main-title {
    font-size: 44px;
  }
  .page-live-streams__hero-description {
    font-size: 18px;
  }
  .page-live-streams__section-title {
    font-size: 30px;
  }
  .page-live-streams__content-wrapper,
  .page-live-streams__support-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live-streams__text-content,
  .page-live-streams__image-wrapper,
  .page-live-streams__support-text,
  .page-live-streams__support-image {
    flex: none;
    width: 100%;
  }
  .page-live-streams__image-wrapper img,
  .page-live-streams__support-image img {
    max-width: 80%;
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {
  .page-live-streams__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .page-live-streams__hero-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-live-streams__hero-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-live-streams__hero-image img {
    border-radius: 8px;
  }

  .page-live-streams__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-live-streams__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-live-streams__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important; /* Adjusted padding for smaller screens */
    font-size: 16px !important;
  }

  .page-live-streams__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-live-streams__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-live-streams__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-live-streams__text-block {
    font-size: 15px;
  }

  .page-live-streams__grid-container,
  .page-live-streams__offer-cards,
  .page-live-streams__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live-streams__card {
    padding: 20px;
  }
  .page-live-streams__card img {
    
  }
  .page-live-streams__card-title {
    font-size: 20px;
  }
  .page-live-streams__card p {
    font-size: 15px;
  }
  .page-live-streams__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
  }

  .page-live-streams__image-wrapper img,
  .page-live-streams__support-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto 0;
  }

  .page-live-streams__step-item {
    padding: 25px;
  }
  .page-live-streams__step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page-live-streams__step-title {
    font-size: 20px;
  }
  .page-live-streams__step-item p {
    font-size: 15px;
  }

  .page-live-streams__offer-card {
    padding: 20px;
  }
  .page-live-streams__offer-card img {
    
  }
  .page-live-streams__offer-title {
    font-size: 20px;
  }
  .page-live-streams__offer-card p {
    font-size: 15px;
  }

  .page-live-streams__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
  }

  details.page-live-streams__faq-item summary.page-live-streams__faq-question { padding: 15px; }
  .page-live-streams__faq-qtext { font-size: 16px; }
  .page-live-streams__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  details.page-live-streams__faq-item .page-live-streams__faq-answer {
    padding: 0 15px 15px;
  }
  .page-live-streams__faq-answer p {
    font-size: 15px;
  }

  .page-live-streams img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-live-streams__section,
  .page-live-streams__card,
  .page-live-streams__hero-content,
  .page-live-streams__content-wrapper,
  .page-live-streams__support-content,
  .page-live-streams__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}