/* style/resources-m99-entertainment-features.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --background-dark: #000;
  --background-light: #f5f5f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-m99-entertainment-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
  padding-top: 10px; /* Adjust for fixed header */
}

.page-resources-m99-entertainment-features__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a44 100%);
  padding: 100px 20px 60px;
  text-align: center;
  color: var(--text-on-dark);
  position: relative;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-resources-m99-entertainment-features__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-m99-entertainment-features__hero-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-resources-m99-entertainment-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-m99-entertainment-features__cta-button--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-m99-entertainment-features__cta-button--primary:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-entertainment-features__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-on-dark);
  border: 1px solid var(--secondary-color);
}

.page-resources-m99-entertainment-features__cta-button--secondary:hover {
  background: #1a2a44;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-entertainment-features__intro-section,
.page-resources-m99-entertainment-features__features-section,
.page-resources-m99-entertainment-features__security-section,
.page-resources-m99-entertainment-features__promotions-section,
.page-resources-m99-entertainment-features__experience-section,
.page-resources-m99-entertainment-features__support-section,
.page-resources-m99-entertainment-features__why-choose-section,
.page-resources-m99-entertainment-features__faq-section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.page-resources-m99-entertainment-features__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-resources-m99-entertainment-features__intro-container,
.page-resources-m99-entertainment-features__features-container,
.page-resources-m99-entertainment-features__security-container,
.page-resources-m99-entertainment-features__promotions-container,
.page-resources-m99-entertainment-features__experience-container,
.page-resources-m99-entertainment-features__support-container,
.page-resources-m99-entertainment-features__why-choose-container,
.page-resources-m99-entertainment-features__faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-m99-entertainment-features__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__dark-bg .page-resources-m99-entertainment-features__section-title {
  color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__section-description {
  font-size: 17px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-on-dark);
}

.page-resources-m99-entertainment-features__intro-content p,
.page-resources-m99-entertainment-features__security-content p,
.page-resources-m99-entertainment-features__support-content p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-on-dark);
}

.page-resources-m99-entertainment-features__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-entertainment-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-m99-entertainment-features__feature-card {
  background: #1a2a44; /* Slightly lighter dark background for cards */
  color: var(--text-on-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-m99-entertainment-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-entertainment-features__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-m99-entertainment-features__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__card-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #f0f0f0;
}

.page-resources-m99-entertainment-features__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
}

.page-resources-m99-entertainment-features__promo-item {
  background: #1a2a44; /* Slightly lighter dark background */
  color: var(--text-on-dark);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 17px;
  display: flex;
  align-items: flex-start;
}

.page-resources-m99-entertainment-features__promo-item strong {
  color: var(--secondary-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-resources-m99-entertainment-features__experience-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  color: var(--text-on-dark);
}

.page-resources-m99-entertainment-features__experience-item {
  background: #1a2a44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-m99-entertainment-features__item-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
}

.page-resources-m99-entertainment-features__item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__experience-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-m99-entertainment-features__why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
}

.page-resources-m99-entertainment-features__why-list li {
  background: #1a2a44;
  color: var(--text-on-dark);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 17px;
  display: flex;
  align-items: flex-start;
}

.page-resources-m99-entertainment-features__why-icon {
  color: var(--secondary-color);
  font-size: 22px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* FAQ styles */
.page-resources-m99-entertainment-features__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-m99-entertainment-features__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-m99-entertainment-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a2a44;
  color: var(--text-on-dark);
  border: 1px solid #2a3a54;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-m99-entertainment-features__faq-question:hover {
  background: #2a3a54;
  border-color: var(--secondary-color);
}

.page-resources-m99-entertainment-features__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  pointer-events: none;
}

.page-resources-m99-entertainment-features__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-m99-entertainment-features__faq-item.active .page-resources-m99-entertainment-features__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #2a3a54;
}

.page-resources-m99-entertainment-features__faq-item.active .page-resources-m99-entertainment-features__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(180deg);
}

.page-resources-m99-entertainment-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #0A1931;
  border-left: 1px solid #2a3a54;
  border-right: 1px solid #2a3a54;
  border-bottom: 1px solid #2a3a54;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #f0f0f0;
}

.page-resources-m99-entertainment-features__faq-item.active .page-resources-m99-entertainment-features__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-m99-entertainment-features__hero-title {
    font-size: 38px;
  }
  .page-resources-m99-entertainment-features__section-title {
    font-size: 32px;
  }
  .page-resources-m99-entertainment-features__card-title,
  .page-resources-m99-entertainment-features__item-title {
    font-size: 22px;
  }
  .page-resources-m99-entertainment-features__hero-section {
    padding-top: 100px; /* Adjust for fixed header on tablet */
  }
}

@media (max-width: 768px) {
  .page-resources-m99-entertainment-features {
    padding-top: 10px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
  }
  .page-resources-m99-entertainment-features__hero-section {
    padding: 80px 15px 40px !important;
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }
  .page-resources-m99-entertainment-features__hero-title {
    font-size: 30px;
  }
  .page-resources-m99-entertainment-features__hero-description {
    font-size: 16px;
  }
  .page-resources-m99-entertainment-features__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-m99-entertainment-features__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-m99-entertainment-features__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-resources-m99-entertainment-features__intro-section,
  .page-resources-m99-entertainment-features__features-section,
  .page-resources-m99-entertainment-features__security-section,
  .page-resources-m99-entertainment-features__promotions-section,
  .page-resources-m99-entertainment-features__experience-section,
  .page-resources-m99-entertainment-features__support-section,
  .page-resources-m99-entertainment-features__why-choose-section,
  .page-resources-m99-entertainment-features__faq-section {
    padding: 40px 15px;
  }
  .page-resources-m99-entertainment-features__intro-container,
  .page-resources-m99-entertainment-features__features-container,
  .page-resources-m99-entertainment-features__security-container,
  .page-resources-m99-entertainment-features__promotions-container,
  .page-resources-m99-entertainment-features__experience-container,
  .page-resources-m99-entertainment-features__support-container,
  .page-resources-m99-entertainment-features__why-choose-container,
  .page-resources-m99-entertainment-features__faq-container {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-m99-entertainment-features__intro-content p,
  .page-resources-m99-entertainment-features__security-content p,
  .page-resources-m99-entertainment-features__support-content p {
    font-size: 15px;
  }
  .page-resources-m99-entertainment-features__image-full-width,
  .page-resources-m99-entertainment-features__card-image,
  .page-resources-m99-entertainment-features__item-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-resources-m99-entertainment-features__feature-card,
  .page-resources-m99-entertainment-features__experience-item {
    padding: 20px;
  }
  .page-resources-m99-entertainment-features__card-title,
  .page-resources-m99-entertainment-features__item-title {
    font-size: 20px;
  }
  .page-resources-m99-entertainment-features__card-text,
  .page-resources-m99-entertainment-features__experience-item p {
    font-size: 15px;
  }
  .page-resources-m99-entertainment-features__promo-item,
  .page-resources-m99-entertainment-features__why-list li {
    font-size: 15px;
    padding: 15px;
  }
  .page-resources-m99-entertainment-features__faq-question {
    padding: 15px;
  }
  .page-resources-m99-entertainment-features__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-m99-entertainment-features__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-m99-entertainment-features__faq-answer {
    padding: 0 15px;
  }
  .page-resources-m99-entertainment-features__faq-item.active .page-resources-m99-entertainment-features__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-m99-entertainment-features__hero-title {
    font-size: 26px;
  }
  .page-resources-m99-entertainment-features__section-title {
    font-size: 24px;
  }
  .page-resources-m99-entertainment-features__card-title,
  .page-resources-m99-entertainment-features__item-title {
    font-size: 18px;
  }
  .page-resources-m99-entertainment-features__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-resources-m99-entertainment-features__faq-question h3 {
    font-size: 15px;
  }
}