:root {
  --primary-dark: #3b0a2f;
  --amazon-orange: #FF9900;
  --tiktok-black: #010101;
  --fb-blue: #1877f2;
  --cash-green: #00c244;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fce7f3;
  background: linear-gradient(135deg, #fce7f3 0%, #f472b6 100%);
  color: var(--primary-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

/* Background aesthetic upgrade */
.background-blobs {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
              radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 20%);
}

.container {
  width: 90%;
  max-width: 400px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.avatar-container {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

h1 {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.bio {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0.8;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
}

.icon {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
}

.btn svg {
  width: 24px;
  height: 24px;
  fill: #fff; /* Ensures all icons stay white! */
}

/* Color Schemes */
.tiktok { background-color: var(--tiktok-black); }
.facebook { background-color: var(--fb-blue); }
.amazon { background-color: var(--amazon-orange); }
.cashapp { background-color: var(--cash-green); }

/* Hover Effects */
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  filter: brightness(1.1);
}


footer {
  margin-top: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.6;
}
