.page-resources-tj777-platform-analysis {
  color: #333333;
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-tj777-platform-analysis__hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-tj777-platform-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-tj777-platform-analysis__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-resources-tj777-platform-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-tj777-platform-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-tj777-platform-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-resources-tj777-platform-analysis__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-tj777-platform-analysis__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-tj777-platform-analysis__article-nav {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

.page-resources-tj777-platform-analysis__back-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.page-resources-tj777-platform-analysis__back-link:hover {
  color: #FCBC45;
}

.page-resources-tj777-platform-analysis__article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-resources-tj777-platform-analysis__section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-resources-tj777-platform-analysis__section:last-of-type {
  border-bottom: none;
}

.page-resources-tj777-platform-analysis__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-tj777-platform-analysis__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-tj777-platform-analysis__article-content p {
  font-size: 1.1em;
  margin-bottom: 1em;
  line-height: 1.7;
  color: #333333;
}

.page-resources-tj777-platform-analysis__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-tj777-platform-analysis__button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  margin-right: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-tj777-platform-analysis__button:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.page-resources-tj777-platform-analysis__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-resources-tj777-platform-analysis__button--register:hover {
  background-color: #333333;
}

.page-resources-tj777-platform-analysis__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-resources-tj777-platform-analysis__button--login:hover {
  background-color: #e0a53b;
}

.page-resources-tj777-platform-analysis__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-tj777-platform-analysis__button--primary:hover {
  background-color: #e0a53b;
}

.page-resources-tj777-platform-analysis__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-tj777-platform-analysis__button--secondary:hover {
  background-color: #333333;
}

.page-resources-tj777-platform-analysis__list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-tj777-platform-analysis__list li {
  margin-bottom: 10px;
}

.page-resources-tj777-platform-analysis__list strong {
  color: #000000;
}

.page-resources-tj777-platform-analysis__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-resources-tj777-platform-analysis__article-nav--bottom {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-tj777-platform-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-resources-tj777-platform-analysis__hero-description {
    font-size: 1.1em;
  }
  .page-resources-tj777-platform-analysis__section-title {
    font-size: 1.8em;
  }
  .page-resources-tj777-platform-analysis__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-tj777-platform-analysis__article-content p, .page-resources-tj777-platform-analysis__list {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-tj777-platform-analysis__hero-section {
    padding: 60px 15px;
  }
  .page-resources-tj777-platform-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-resources-tj777-platform-analysis__hero-description {
    font-size: 1em;
  }
  .page-resources-tj777-platform-analysis__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-tj777-platform-analysis__article-content {
    padding: 15px;
  }
  .page-resources-tj777-platform-analysis__section-title {
    font-size: 1.6em;
  }
  .page-resources-tj777-platform-analysis__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources-tj777-platform-analysis__article-content p, .page-resources-tj777-platform-analysis__list {
    font-size: 0.95em;
  }
  .page-resources-tj777-platform-analysis__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-tj777-platform-analysis__button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  .page-resources-tj777-platform-analysis__cta-buttons .page-resources-tj777-platform-analysis__button {
    margin-bottom: 15px;
  }
}