/* Profile Avatar */
.profile-avatar {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 4px solid #374151;
  flex-shrink: 0;
  object-fit: cover;
}

/* Profile Meta */
.profile-name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #86efac;
}

.status-emoji {
  font-size: 1.25rem;
}

.status-text {
  font-weight: 500;
}

.member-since {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* About Cards */
.about-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #374151;
  border-radius: 0.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Achievements Timeline */
.achievements-timeline {
  position: relative;
}

.achievements-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #374151, transparent);
}

.achievement-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.achievement-item.hidden-item {
  display: none;
}

.achievement-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  z-index: 1;
}

.achievement-wrapper {
  position: relative;
}

.achievement-content {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.25rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.achievement-content:hover {
  border-color: #6b7280;
  background: rgba(17, 24, 39, 0.7);
  transform: translateX(4px);
}

.achievement-content.no-link {
  cursor: default;
}

.achievement-content.no-link:hover {
  transform: none;
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.achievement-icon-timeline {
  min-width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #374151;
  padding: 0.25rem;
}

.achievement-icon-timeline img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.achievement-title-wrapper {
  flex: 1;
}

.achievement-title-main {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achievement-subtitle-main {
  color: #9ca3af;
  font-size: 0.875rem;
}

.achievement-date {
  color: #6b7280;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.achievement-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.achievement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  border-radius: 0.375rem;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}

.achievement-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b7280;
  color: #fff;
}

.achievement-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Media Items */
.media-item {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.media-item.hidden-item {
  display: none;
}

.media-poster {
  aspect-ratio: 2/3;
  border-radius: 0.5rem;
  border: 2px solid #374151;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  overflow: hidden;
}

.media-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-poster.square {
  aspect-ratio: 1/1;
}

.media-item:hover .media-poster {
  border-color: #6b7280;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.media-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.media-title {
  font-size: 0.875rem;
  text-align: center;
  color: #d1d5db;
  transition: color 0.3s;
}

.media-item:hover .media-title {
  color: #fff;
}

.media-external-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.media-item:hover .media-external-icon {
  opacity: 1;
}

/* Buttons */
.external-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  border-radius: 0.375rem;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.external-link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b7280;
  color: #fff;
}

.show-more-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.show-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b7280;
  color: #fff;
}

.section-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid #374151;
  border-radius: 0.25rem;
}
