/* About Component Styles */
@keyframes about-cards-infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-project-cards-scroll-wrapper {
  overflow: hidden;
  width: 100vw;
  margin: 4rem 0;
}

.about-project-cards-scroll-inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: about-cards-infinite-scroll 120s linear infinite;
}

.about-project-card {
  min-width: 280px;
  background: rgba(0,0,0,0.7);
  border: 1px solid #6c63ff;
  border-radius: 2px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-project-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.about-project-card .project-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-project-card .project-multiplier {
  color: #2ecc40;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-project-card .project-sale-type {
  color: #ff6b35;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.loading-message {
  text-align: center;
  padding: 2rem;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-message {
  text-align: center;
  padding: 2rem;
  color: #ff6b6b;
}
