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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #050a15;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Background Animated Blobs */
.blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: #C9A94E; /* FFL Gold */
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #0088cc; /* BPW Blue */
  bottom: -200px;
  right: -100px;
  animation-delay: 2s;
}

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

/* Glassmorphism Container */
.glass-container {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: 20px;
  position: relative;
}

.profile-section {
  text-align: center;
  margin-bottom: 40px;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  border: 2px solid #C9A94E;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(201, 169, 78, 0.4);
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Links */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.highlight-btn {
  background: linear-gradient(135deg, rgba(201, 169, 78, 0.2) 0%, rgba(201, 169, 78, 0.05) 100%);
  border-color: rgba(201, 169, 78, 0.5);
}

.highlight-btn:hover {
  background: linear-gradient(135deg, rgba(201, 169, 78, 0.3) 0%, rgba(201, 169, 78, 0.1) 100%);
  border-color: rgba(201, 169, 78, 0.8);
  box-shadow: 0 10px 20px rgba(201, 169, 78, 0.2);
}

.emoji {
  font-size: 24px;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text strong {
  font-size: 16px;
  font-weight: 600;
}

.btn-text small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.glass-btn:hover .btn-text small {
  color: rgba(255, 255, 255, 0.8);
}

/* Social Icon Row */
.social-section {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .glass-container {
    padding: 30px 20px;
    margin: 15px;
  }
}
