:root {
  --background-color: #121212;
  --card-background: #1c1c1c;
  --link-background: #2c2c2c;
  --link-hover-background: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: #a7a7a7;
  --accent-color: #007bff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  background-image: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
}

.card {
  background-color: var(--card-background);
  border-radius: 24px;
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff4500;
  margin-bottom: 1rem;
}

.name-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.name-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.verified-badge {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}

.bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 340px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link {
  background-color: var(--link-background);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: space-between;
}

.link:hover {
  background-color: var(--link-hover-background);
  transform: translateY(-2px);
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.link-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;;
}

.link-text .username {
  font-weight: 600;
  font-size: 0.9rem;
}

.link-text .description {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.external-icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.flex{
  display: flex;
}


.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.items-center{
  align-items: center;
}

.justify-center{
  justify-content: center;
}

.text-center{
  text-align: center;
}


.justify-between{
  justify-content: space-between;
}

.justify-around{
  justify-content: space-around;
}