.page-content {
  padding: 0 0 3rem 0;
  background-color: var(--dark);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

.content-wrapper {
  background: linear-gradient(135deg, rgba(26, 29, 33, 0.9) 0%, var(--dark) 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--gray-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-content .content-section {
  margin-bottom: 2.5rem;
}

.page-content .content-section:last-child {
  margin-bottom: 0;
}

.page-content .content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.page-content .content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content .content-section p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.page-content .content-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

.page-content .content-section li {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.highlight-box {
  background-color: rgba(255, 50, 92, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

.highlight-box p {
  margin-bottom: 0;
  color: #ffffff;
}

.auth-promo {
  width: 100%;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 29, 33, 0.95) 0%, rgba(15, 17, 20, 0.98) 100%);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-800);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.auth-promo-content {
  flex: 1;
  min-width: 0;
}

.auth-promo-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.auth-promo-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.5;
}

.auth-promo-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.auth-promo .btn {
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.875rem;
  }

  .content-wrapper {
    padding: 1.5rem;
  }

  .page-content .content-section h2 {
    font-size: 1.5rem;
  }

  .page-content .content-section h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }

  .content-wrapper {
    padding: 1rem;
  }

  .page-content .content-section h2 {
    font-size: 1.25rem;
  }

  .auth-promo {
    padding: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .auth-promo-actions {
    flex-direction: column;
    width: 100%;
  }

  .auth-promo-actions .btn {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
}
