/* style/live-streaming-schedule.css */
.page-live-streaming-schedule {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A244A; /* Main background color */
}

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

.page-live-streaming-schedule__hero {
  background: linear-gradient(135deg, #0A244A 0%, #1a3e6a 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-live-streaming-schedule__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-live-streaming-schedule__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live-streaming-schedule__hero-description {
  font-size: 1.2em;
  color: #E0E0E0; /* Light grey for readability */
  margin-bottom: 30px;
}

.page-live-streaming-schedule__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live-streaming-schedule__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-live-streaming-schedule__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-live-streaming-schedule__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #0A244A;
}

.page-live-streaming-schedule__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-live-streaming-schedule__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
}

.page-live-streaming-schedule__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

.page-live-streaming-schedule__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-live-streaming-schedule__section {
  padding: 60px 0;
}

.page-live-streaming-schedule__section:nth-of-type(even) {
  background-color: #1A3E6A; /* Slightly lighter dark blue for alternating sections */
}

.page-live-streaming-schedule__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-live-streaming-schedule__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: center;
}

.page-live-streaming-schedule__text strong {
  color: #FFD700;
}

.page-live-streaming-schedule__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-live-streaming-schedule__feature-list li {
  background-color: #1A3E6A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streaming-schedule__feature-list li .icon-check {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-live-streaming-schedule__access-guide .page-live-streaming-schedule__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-streaming-schedule__step {
  background-color: #1A3E6A;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-live-streaming-schedule__step-icon {
  background-color: #FFD700;
  color: #0A244A;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-live-streaming-schedule__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-streaming-schedule__step-description {
  color: #E0E0E0;
  font-size: 1em;
}

.page-live-streaming-schedule__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-live-streaming-schedule__grid-item {
  background-color: #0A244A;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streaming-schedule__grid-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-streaming-schedule__grid-description {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-live-streaming-schedule__full-width-image {
  width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-live-streaming-schedule__feature-card {
  background-color: #0A244A;
  border: 1px solid #1A3E6A;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-live-streaming-schedule__feature-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-live-streaming-schedule__feature-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-streaming-schedule__feature-card-description {
  color: #E0E0E0;
  font-size: 1em;
}

.page-live-streaming-schedule__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-live-streaming-schedule__responsible-list li {
  background-color: #1A3E6A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-streaming-schedule__responsible-list li .icon-info {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-live-streaming-schedule__cta {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-live-streaming-schedule__cta .page-live-streaming-schedule__section-title,
.page-live-streaming-schedule__cta .page-live-streaming-schedule__text {
  color: #0A244A; /* Dark blue text on gold background */
}

.page-live-streaming-schedule__cta .page-live-streaming-schedule__text strong {
  color: #0A244A;
}

.page-live-streaming-schedule__cta-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live-streaming-schedule__cta-actions .page-live-streaming-schedule__btn--primary {
  background-color: #0A244A;
  color: #FFD700;
  border-color: #0A244A;
}

.page-live-streaming-schedule__cta-actions .page-live-streaming-schedule__btn--primary:hover {
  background-color: #1A3E6A;
  color: #FFD700;
  border-color: #1A3E6A;
}

.page-live-streaming-schedule__cta-actions .page-live-streaming-schedule__btn--secondary {
  background-color: transparent;
  color: #0A244A;
  border-color: #0A244A;
}

.page-live-streaming-schedule__cta-actions .page-live-streaming-schedule__btn--secondary:hover {
  background-color: #0A244A;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-live-streaming-schedule__hero {
    padding: 60px 0;
  }

  .page-live-streaming-schedule__hero-title {
    font-size: 2.5em;
  }

  .page-live-streaming-schedule__hero-description {
    font-size: 1em;
  }

  .page-live-streaming-schedule__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-streaming-schedule__btn {
    padding: 12px 25px;
    width: 80%;
    max-width: 300px;
  }

  .page-live-streaming-schedule__section-title {
    font-size: 2em;
  }

  .page-live-streaming-schedule__feature-list li,
  .page-live-streaming-schedule__responsible-list li {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .page-live-streaming-schedule__feature-list li .icon-check,
  .page-live-streaming-schedule__responsible-list li .icon-info {
    margin: 0 auto 10px auto;
  }

  .page-live-streaming-schedule__grid-container,
  .page-live-streaming-schedule__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-live-streaming-schedule__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-live-streaming-schedule__hero-title {
    font-size: 2em;
  }

  .page-live-streaming-schedule__section-title {
    font-size: 1.8em;
  }

  .page-live-streaming-schedule__btn {
    width: 90%;
  }

  .page-live-streaming-schedule__text {
    font-size: 0.95em;
  }

  .page-live-streaming-schedule__feature-card-title {
    font-size: 1.4em;
  }
}