/* style/resources-mm99-platform-overview.css */

.page-resources-mm99-platform-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  line-height: 1.6;
  background-color: #0A1931;
}

.page-resources-mm99-platform-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-mm99-platform-overview__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-resources-mm99-platform-overview__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-resources-mm99-platform-overview__hero-actions .page-resources-mm99-platform-overview__btn {
  margin: 0 10px;
}

/* Buttons */
.page-resources-mm99-platform-overview__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
}

.page-resources-mm99-platform-overview__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-mm99-platform-overview__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-mm99-platform-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources-mm99-platform-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-resources-mm99-platform-overview__btn--highlight {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-mm99-platform-overview__btn--highlight:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: scale(1.05);
}

.page-resources-mm99-platform-overview__btn--download {
  background-color: #1a6d36; /* A green tone for download */
  color: #FFFFFF;
  border: 2px solid #1a6d36;
}

.page-resources-mm99-platform-overview__btn--download:hover {
  background-color: #155a2c;
  border-color: #155a2c;
  transform: translateY(-2px);
}

.page-resources-mm99-platform-overview__btn--text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 10px 15px;
  text-decoration: underline;
}

.page-resources-mm99-platform-overview__btn--text:hover {
  color: #e6c200;
}

/* Content Section */
.page-resources-mm99-platform-overview__content-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-resources-mm99-platform-overview__article-content {
  max-width: 800px; /* Optimal reading width */
  margin: 0 auto;
  background-color: #12284b; /* Slightly lighter dark blue for content background */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-mm99-platform-overview__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-mm99-platform-overview__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-mm99-platform-overview__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-resources-mm99-platform-overview__article-content ul,
.page-resources-mm99-platform-overview__article-content ol {
  margin-bottom: 1em;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-resources-mm99-platform-overview__article-content li {
  margin-bottom: 0.5em;
  color: #E0E0E0;
}

.page-resources-mm99-platform-overview__article-content li strong {
  color: #FFD700;
}

.page-resources-mm99-platform-overview__article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-mm99-platform-overview__cta-block {
  text-align: center;
  background-color: #0A1931;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  border: 1px dashed #FFD700;
}

.page-resources-mm99-platform-overview__cta-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-mm99-platform-overview__return-link {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

  .page-resources-mm99-platform-overview__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-mm99-platform-overview__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-mm99-platform-overview__section-title {
    font-size: 1.8em;
  }

  .page-resources-mm99-platform-overview__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-mm99-platform-overview__article-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-mm99-platform-overview__hero-title {
    font-size: 2em;
  }

  .page-resources-mm99-platform-overview__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-mm99-platform-overview__hero-actions .page-resources-mm99-platform-overview__btn {
    display: block;
    margin: 10px auto;
  }

  .page-resources-mm99-platform-overview__section-title {
    font-size: 1.5em;
  }

  .page-resources-mm99-platform-overview__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-mm99-platform-overview__article-content p,
  .page-resources-mm99-platform-overview__article-content li {
    font-size: 0.95em;
  }
}