body {
  background-color: #000;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: #141416;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px #222;
  color: #fff;
  text-align: center;
  border: 1px solid #2e2e32;
  position: relative;
}

/* Header title */
.header h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.brand {
  color: white;
  font-weight: 700;
}

.highlight {
  color: orange;
  font-weight: 700;
}

/* Profile Picture */
.profile {
  position: relative;
  margin: 20px 0;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #e0a46f;
}

.badge {
  width: 30px;
  height: 30px;
  position: relative;
  bottom: 20px;
  right: 36px;
  border-radius:50%;
  border: 1px solid #e0a46f;
}

/* Name & handle */
.name {
  margin: 10px 0 5px;
  font-size: 20px;
}

.verified {
  color: #2ecc71;
  font-size: 18px;
}

.username {
  background-color: #3e2f23;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  color: #f4d3b0;
  font-size: 14px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 10px;
}

.stat-box {
  background: #1f1f23;
  padding: 12px;
  border-radius: 10px;
  flex: 1;
  border: 1px solid #3d3d42;
}

.label {
  font-size: 12px;
  margin-bottom: 5px;
}

.orange {
  color: #f59e55;
}

.green {
  color: #2ecc71;
}

.value {
  font-size: 22px;
  font-weight: 600;
  color: #ddd;
}

/* Social Icons */
.social p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.icons img {
  width: 28px;
  margin: 0 5px;
  
  transition: 0.2s;
}

.linkedin img {
  width: 18px;
  margin: 0 5px;
  vertical-align: middle;
  
  transition: 0.2s;
}

.icons img:hover,
.linkedin img:hover {
  filter: grayscale(100%);
}

/* Tags */
.tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tags span {
  background: #2e2e32;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #ddd;
}

@keyframes rotateWeb {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.web-lines {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* so it doesn't block clicks */
      color: #706e6e;
      animation: rotateWeb 120s linear infinite;
      transform-origin: center center;
    }
.card > *:not(.web-lines) {
  position: relative;
  z-index: 1;
}