/* style/online-entertainment-platform-features.css */
.page-online-entertainment-platform-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
}

.page-online-entertainment-platform-features__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #B22222 0%, #330d0d 100%); /* Dark red gradient */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-online-entertainment-platform-features__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-online-entertainment-platform-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-online-entertainment-platform-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-online-entertainment-platform-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-online-entertainment-platform-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-online-entertainment-platform-features__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-online-entertainment-platform-features__section:nth-of-type(even) {
  background-color: #222222;
}

.page-online-entertainment-platform-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-online-entertainment-platform-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #B22222;
  border-radius: 2px;
}

.page-online-entertainment-platform-features__section-subtitle {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-entertainment-platform-features__feature-grid,
.page-online-entertainment-platform-features__promo-grid,
.page-online-entertainment-platform-features__steps-grid,
.page-online-entertainment-platform-features__support-channels {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}

.page-online-entertainment-platform-features__feature-item,
.page-online-entertainment-platform-features__promo-item,
.page-online-entertainment-platform-features__step-item,
.page-online-entertainment-platform-features__channel-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-online-entertainment-platform-features__feature-item:hover,
.page-online-entertainment-platform-features__promo-item:hover,
.page-online-entertainment-platform-features__step-item:hover,
.page-online-entertainment-platform-features__channel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-online-entertainment-platform-features__feature-icon,
.page-online-entertainment-platform-features__promo-image,
.page-online-entertainment-platform-features__channel-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-online-entertainment-platform-features__feature-icon {
  background-color: #B22222;
  padding: 10px;
}

.page-online-entertainment-platform-features__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-online-entertainment-platform-features__feature-title,
.page-online-entertainment-platform-features__promo-title,
.page-online-entertainment-platform-features__step-title,
.page-online-entertainment-platform-features__channel-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for sub-titles */
  margin-bottom: 15px;
}

.page-online-entertainment-platform-features__feature-description,
.page-online-entertainment-platform-features__promo-description,
.page-online-entertainment-platform-features__step-description,
.page-online-entertainment-platform-features__channel-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-online-entertainment-platform-features__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 5px;
  font-size: 1.1em;
}

.page-online-entertainment-platform-features__btn--primary {
  background-color: #B22222; /* Deep red primary button */
  color: #ffffff;
  border: 2px solid #B22222;
}

.page-online-entertainment-platform-features__btn--primary:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #B22222;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-online-entertainment-platform-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-online-entertainment-platform-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #B22222;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-online-entertainment-platform-features__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-online-entertainment-platform-features__hero-cta-group,
.page-online-entertainment-platform-features__how-to-cta-group,
.page-online-entertainment-platform-features__cta-final .page-online-entertainment-platform-features__cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-online-entertainment-platform-features__how-to .page-online-entertainment-platform-features__step-number {
  background-color: #B22222;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-online-entertainment-platform-features__support-cta {
  margin-top: 40px;
}

.page-online-entertainment-platform-features__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-online-entertainment-platform-features__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-online-entertainment-platform-features__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-online-entertainment-platform-features__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #B22222;
  transition: transform 0.3s ease;
}

.page-online-entertainment-platform-features__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-online-entertainment-platform-features__faq-answer {
  font-size: 1em;
  color: #cccccc;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #3a3a3a;
  margin-top: 10px;
}

.page-online-entertainment-platform-features__faq-answer.active {
  display: block;
}

.page-online-entertainment-platform-features__cta-final {
  background-color: #B22222;
  padding: 80px 20px;
  color: #ffffff;
}

.page-online-entertainment-platform-features__cta-final .page-online-entertainment-platform-features__section-title {
  color: #FFD700;
}

.page-online-entertainment-platform-features__cta-final .page-online-entertainment-platform-features__section-title::after {
  background-color: #FFD700;
}

.page-online-entertainment-platform-features__cta-final .page-online-entertainment-platform-features__section-subtitle {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-online-entertainment-platform-features__hero-title {
    font-size: 2.5em;
  }

  .page-online-entertainment-platform-features__hero-description {
    font-size: 1em;
  }

  .page-online-entertainment-platform-features__section-title {
    font-size: 2em;
  }

  .page-online-entertainment-platform-features__feature-grid,
  .page-online-entertainment-platform-features__promo-grid,
  .page-online-entertainment-platform-features__steps-grid,
  .page-online-entertainment-platform-features__support-channels {
    grid-template-columns: 1fr;
  }

  .page-online-entertainment-platform-features__feature-item,
  .page-online-entertainment-platform-features__promo-item,
  .page-online-entertainment-platform-features__step-item,
  .page-online-entertainment-platform-features__channel-item {
    padding: 20px;
  }

  .page-online-entertainment-platform-features__btn {
    font-size: 1em;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-online-entertainment-platform-features__hero {
    padding: 60px 15px;
  }

  .page-online-entertainment-platform-features__hero-title {
    font-size: 2em;
  }

  .page-online-entertainment-platform-features__section {
    padding: 40px 15px;
  }

  .page-online-entertainment-platform-features__section-title {
    font-size: 1.8em;
  }

  .page-online-entertainment-platform-features__btn--primary,
  .page-online-entertainment-platform-features__btn--secondary {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-online-entertainment-platform-features__hero-cta-group,
  .page-online-entertainment-platform-features__how-to-cta-group,
  .page-online-entertainment-platform-features__cta-final .page-online-entertainment-platform-features__cta-group {
    flex-direction: column;
  }
}