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

:root {
  --primary: #f97316; /* Vibrant Orange */
  --primary-hover: #ea580c;
  --accent: #ffb100; /* Gold/Amber */
  --bg-gradient: radial-gradient(circle at top right, #2d1606, #0f172a);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 121, 0, 0.15);
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --glass-blur: 20px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow-x: hidden;
}

/* Background Animation */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  animation: blobify 20s infinite alternate;
}

.blob-1 {
  top: -100px;
  right: -100px;
  background: var(--primary);
  filter: blur(120px);
}
.blob-2 {
  bottom: -100px;
  left: -100px;
  background: var(--accent);
  filter: blur(120px);
  animation-delay: -5s;
}
.blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f97316;
  opacity: 0.05;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 500px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Section */
.profile {
  margin-bottom: 40px;
}

.avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--card-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #1e1b4b;
    z-index: 2;
}

.status-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 3px solid #1e1b4b;
    border-radius: 50%;
    z-index: 2;
}

.status-badge::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-action {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(var(--glass-blur));
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.name {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #ff9d42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.title {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(var(--glass-blur));
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
  color: #fff;
}

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

.link-card {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: 0.5s;
}

.link-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.link-card:hover::before {
  left: 100%;
}

.link-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary);
}

.link-info {
  text-align: left;
  flex: 1;
}

.link-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

.link-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.arrow {
  opacity: 0.5;
  transition: var(--transition);
}

.link-card:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* Featured Section */
.featured {
  margin-top: 40px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.02), transparent);
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Footer */
footer {
  margin-top: 60px;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.brand {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* Utilities */
.highlight {
  color: var(--accent);
}

.badge-soon {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.coming-soon:hover {
    cursor: default;
    transform: none !important;
}

@media (max-width: 480px) {
  body {
    padding: 20px 15px;
  }
  .name {
    font-size: 24px;
  }
}
