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

    :root {
      --bg-primary: #0a0a0f;
      --bg-card: rgba(255, 255, 255, 0.03);
      --bg-card-hover: rgba(255, 255, 255, 0.07);
      --accent: #00e5a0;
      --accent-dim: rgba(0, 229, 160, 0.15);
      --accent-glow: rgba(0, 229, 160, 0.3);
      --text-primary: #e8e8ec;
      --text-secondary: #7a7a8e;
      --text-muted: #4a4a5c;
      --border: rgba(255, 255, 255, 0.06);
      --border-hover: rgba(0, 229, 160, 0.25);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Noise overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    /* Ambient grid */
    .grid-bg {
      position: fixed;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
    }

    /* Accent glow blob */
    .glow-orb {
      position: fixed;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      filter: blur(80px);
      opacity: 0.4;
      pointer-events: none;
      animation: orbFloat 8s ease-in-out infinite;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
      50% { transform: translateX(-50%) translateY(30px); opacity: 0.3; }
    }

    .container {
      position: relative;
      z-index: 2;
      max-width: 460px;
      margin: 0 auto;
      padding: 48px 20px 32px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Profile Section */
    .profile {
      text-align: center;
      margin-bottom: 20px;
      animation: fadeUp 0.6s ease both;
    }

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

    .avatar-ring::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: conic-gradient(var(--accent), transparent 40%, var(--accent) 60%, transparent 80%, var(--accent));
      animation: spin 4s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .avatar {
      position: relative;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 28px;
      font-weight: 700;
      color: var(--accent);
      z-index: 1;
      border: 3px solid var(--bg-primary);
    }

    .display-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }

    .display-name .accent {
      color: var(--accent);
    }

    .bio {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 340px;
      margin: 0 auto;
      font-weight: 300;
    }


    /* Email Button */
    .email-btn {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--bg-primary);
      background: var(--accent);
      padding: 10px 32px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-align: center;
      margin-top: 16px;
    }

    .email-btn:hover {
      box-shadow: 0 4px 20px var(--accent-glow);
      transform: translateY(-2px);
    }

    /* Section Labels */
    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--text-muted);
      margin: 32px 0 14px;
      padding-left: 4px;
    }

    /* Link Cards */
    .links-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .link-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      text-decoration: none;
      color: var(--text-primary);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .link-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .link-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0, 229, 160, 0.08);
    }

    .link-card:hover::before {
      opacity: 1;
    }

    .link-card:hover .link-arrow {
      transform: translateX(3px);
      color: var(--accent);
    }

    .link-card:hover .link-icon {
      color: var(--accent);
    }

    .link-icon {
      position: relative;
      z-index: 1;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      flex-shrink: 0;
      font-size: 18px;
      transition: color 0.3s ease;
    }

    .link-content {
      flex: 1;
      position: relative;
      z-index: 1;
      min-width: 0;
    }

    .link-title {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 2px;
    }

    .link-desc {
      font-size: 14x;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .link-arrow {
      position: relative;
      z-index: 1;
      color: var(--text-muted);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .coming-soon {
      text-align: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 32px;
      padding: 14px;
      border: 1px dashed rgba(255, 255, 255, 0.15);
      border-radius: 14px;
    }
    

    /* Social row */
    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
      animation: fadeUp 0.6s ease 0.6s both;
    }

    .social-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      border-color: var(--border-hover);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 229, 160, 0.1);
    }

    /* Footer */
    .footer {
      text-align: center;
      margin-top: auto;
      padding: 24px 0 16px;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.6s ease 0.7s both;
    }

    .footer-text {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1px;
    }

    .footer-text .pulse {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      margin: 0 6px;
      vertical-align: middle;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
      50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
    }

    /* Staggered animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .links-grid .link-card:nth-child(1) { animation: fadeUp 0.5s ease 0.15s both; }
    .links-grid .link-card:nth-child(2) { animation: fadeUp 0.5s ease 0.22s both; }
    .links-grid .link-card:nth-child(3) { animation: fadeUp 0.5s ease 0.29s both; }
    .links-grid .link-card:nth-child(4) { animation: fadeUp 0.5s ease 0.36s both; }
    .links-grid .link-card:nth-child(5) { animation: fadeUp 0.5s ease 0.43s both; }
    .links-grid .link-card:nth-child(6) { animation: fadeUp 0.5s ease 0.50s both; }
    .links-grid .link-card:nth-child(7) { animation: fadeUp 0.5s ease 0.57s both; }

    /* Terminal cursor blink on handle */
    .cursor-blink {
      display: inline-block;
      width: 2px;
      height: 14px;
      background: var(--accent);
      vertical-align: middle;
      margin-left: 2px;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* Responsive */
    @media (max-width: 480px) {
      .container { padding: 36px 16px 60px; }
      .display-name { font-size: 21px; }
      .stats-bar { gap: 24px; }
    }