@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #07080a;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover-bg: rgba(255, 255, 255, 0.06);
  --glass-hover-border: rgba(255, 255, 255, 0.15);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

/* Background Animated Orbs */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 15s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #25D366; /* WhatsApp Green */
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: #6a00ff; /* Purple/Blue */
  bottom: 0%;
  right: -5%;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #007bff; /* Deep Blue */
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Main Container */
.container {
  width: 100%;
  max-width: 460px;
  padding: 40px 24px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* Profile Section */
.profile {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.01));
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #111; 
  border: 2px solid rgba(255, 255, 255, 0.05);
}

/* Subtle pulsing ring behind profile */
.profile-img-wrapper::before {
  content: '';
  position: absolute;
  top: -2px; bottom: -2px; left: -2px; right: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.5), rgba(106, 0, 255, 0.5));
  z-index: -1;
  filter: blur(12px);
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 0.9; }
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.profile-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Links Section */
.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.link-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Inner shine effect on hover */
.link-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.link-item:hover::after {
  left: 200%;
}

.link-item:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255,255,255,0.05);
}

.link-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-right: 16px;
  font-size: 1.4rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.link-item:hover .link-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Brand Colors */
.icon-whatsapp { color: #25D366; }
.icon-youtube { color: #FF0000; }
.icon-instagram {
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.link-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.link-item:hover .link-text {
  color: #fff;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.link-item:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}

/* Footer */
footer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
