@import url('camila.css');

body.profile-page {
  background: #36393f;
}

body.profile-page #parallaxCanvas,
body.profile-page #particles,
body.profile-page .background {
  display: none;
}

body.profile-page nav {
  display: none;
}

.profile-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
  background: rgba(47, 49, 54, 0.8);
  border-bottom: 1px solid #202225;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.profile-card {
  background: #2f3136;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #202225;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-banner {
  height: 60px;
  background: linear-gradient(135deg, var(--artaud-green), var(--artaud-yellow));
  position: relative;
  overflow: hidden;
}

.banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
  background-size: 100px 100px;
}

.profile-content {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  gap: 1rem;
}

.profile-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #2f3136;
  box-shadow: 0 0 0 4px var(--artaud-yellow), 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  transition: transform 0.2s ease;
}

.profile-avatar:hover {
  transform: scale(1.05);
}

.badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #2f3136;
  background: #36393f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.badge:hover {
  transform: scale(1.1);
}

.pronouns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #b9bbbe;
  margin-top: 0.5rem;
}

.pronouns strong {
  color: #ffffff;
}

.profile-info {
  flex: 1;
  color: #ffffff;
}

.profile-username {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.profile-status {
  font-size: 0.9rem;
  color: #b9bbbe;
  margin: 0.5rem 0;
}

.profile-activity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #b9bbbe;
}

.profile-bio {
  padding: 1rem;
  border-top: 1px solid #202225;
  color: #ffffff;
}

.profile-bio h3, .profile-bio h4 {
  margin: 1rem 0 0.5rem 0;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-bio p {
  margin: 0 0 1rem 0;
  color: #b9bbbe;
  line-height: 1.5;
}

.profile-roles, .profile-activity {
  margin-top: 1.5rem;
}

.roles-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.role {
  background: #5865f2;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.profile-activity p {
  background: #202225;
  padding: 0.5rem;
  border-radius: 4px;
  margin: 0;
  color: #b9bbbe;
}