        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
            background: linear-gradient(135deg, #1e1b4b, #2a1b5e, #120a2a);
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
            overflow-x: hidden;
            position: relative;
        }
        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(30, 27, 75, 0.5);
            border-radius: 10px;
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #a78bfa, #ec4899);
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #c4b5fd, #f472b6);
            box-shadow: 0 0 15px rgba(167, 139, 250, 0.8);
        }
        html {
            scrollbar-width: thin;
            scrollbar-color: #a78bfa rgba(30, 27, 75, 0.5);
        }
        #particles-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .particle {
            position: absolute;
            background: rgba(150, 100, 255, 0.6);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(150, 100, 255, 0.8);
            animation: float linear forwards;
        }
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
        }
        .profile {
            text-align: center;
            margin-bottom: 40px;
            z-index: 1;
        }
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 5px solid rgba(150, 100, 255, 0.6);
            box-shadow: 0 0 30px rgba(150, 100, 255, 0.5);
            margin-bottom: 20px;
            object-fit: cover;
        }
        .name {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #a78bfa, #ec4899, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .bio {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 500px;
            line-height: 1.5;
        }
        #links-container {
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 1;
        }
        .link-button {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            user-select: none;
        }
        .link-button:hover {
            transform: translateY(-5px);
            background: rgba(150, 100, 255, 0.25);
            border-color: #a78bfa;
            box-shadow: 0 15px 35px rgba(150, 100, 255, 0.4);
        }
        .link-button img {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            flex-shrink: 0;
        }
        .link-text {
            flex: 1;
            text-align: left;
        }
        .link-name {
            font-weight: bold;
        }
        .link-description {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 8px;
            line-height: 1.4;
        }
        .loading {
            font-style: italic;
            color: #aaa;
        }
        #overlay {
            position: fixed;
            inset: 0;
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s;
        }
        #overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .blocked {
            filter: blur(30px);
        }
        @media (max-width: 480px) {
            .name { font-size: 1.8rem; }
            .bio { font-size: 1rem; }
            .link-button { font-size: 1.1rem; padding: 16px 20px; }
        }
