:root {
  --bg-color: #05070a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --text-main: #ffffff;
  --text-muted: #8e9aaf;
  --status-green: #22c55e;
  --glass-hover: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

/* Background Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: -1;
}
.orb-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: #3b82f6; }
.orb-2 { width: 350px; height: 350px; bottom: -50px; right: -50px; background: var(--status-green); }

/* Profile Card */
.profile-card {
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 40px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.avatar-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  position: relative;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--card-border);
}

.name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.username {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 35px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--status-green);
}

.status-text {
  color: #bbf7d0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Links Section */
.links-container {
  margin-top: 10px;
}

.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.glass-link {
  text-decoration: none;
  color: var(--text-main);
  display: block;
  width: 100%;
}

.link-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-icon {
  font-size: 1.2rem;
  filter: grayscale(1) brightness(1.5); /* Makes emojis look more subtle/silver */
  opacity: 0.8;
}

.glass-link:hover .link-content {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.glass-link:hover .link-icon {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
  .profile-card {
    max-width: 100%;
    border-radius: 30px;
    padding: 35px 20px;
  }
  
  .name { font-size: 1.4rem; }
  
  .footer { position: relative; margin-top: 30px; }
}
