:root {
  --bg-color: #0d0d12;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --brand-green: #0CBBA0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1rem;
}

.container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.profile {
  text-align: center;
  margin-bottom: 1.5rem;
}

.avatar-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.profile-pic {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.verified-badge {
  color: #1DA1F2;
  font-size: 1.3rem;
}

.description {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.socials-container {
  margin-bottom: 2rem;
  width: 100%;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand-green);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.link-button {
  display: flex;
  align-items: center;
  background: var(--brand-green);
  border-radius: 12px;
  padding: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.link-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.link-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-right: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.fb-bg {
  background-color: #4267B2;
}

.ig-bg {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tw-bg {
  background-color: #55acee;
}

.yt-bg {
  background-color: #FF0000;
}

.web-bg {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.link-text {
  flex-grow: 1;
}

.footer {
  text-align: center;
  width: 100%;
}