        :root {
            --bg-primary: #0f0f23;
            --bg-secondary: #1a1a2e;
            --text-primary: #ffffff;
            --text-secondary: #b8b8d1;
            --accent: #7c3aed;
            --accent-hover: #8b5cf6;
            --shadow: rgba(124, 58, 237, 0.3);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (prefers-color-scheme: light) {
            :root {
                --bg-primary: #ffffff;
                --bg-secondary: #f8fafc;
                --text-primary: #1e293b;
                --text-secondary: #64748b;
                --accent: #7c3aed;
                --accent-hover: #8b5cf6;
                --shadow: rgba(124, 58, 237, 0.2);
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            max-width: 480px;
            width: 100%;
            background: var(--bg-secondary);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 4px solid var(--accent);
            padding: 4px;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--shadow);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 var(--shadow); }
            50% { box-shadow: 0 0 0 15px transparent; }
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .profile p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .social-link {
            display: flex;
            align-items: center;
            padding: 18px 24px;
            background: var(--bg-primary);
            border-radius: var(--border-radius);
            text-decoration: none;
            color: var(--text-primary);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--shadow);
            border-color: var(--accent);
        }

        .social-link i {
            font-size: 24px;
            margin-right: 16px;
            width: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .social-link:hover i {
            transform: scale(1.2);
        }

        .social-info {
            flex: 1;
        }

        .social-name {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .social-handle {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .instagram { color: #E4405F; }
        .twitter { color: #1DA1F2; }
        .linkedin { color: #0077B5; }
        .github { color: #333; }
        .youtube { color: #FF0000; }
.tiktok {
  position: relative;
  display: inline-block;
  font-size: 2rem; 
  color: white; 
  text-shadow:
    -2px -2px 0 #00dfff, 
    2px 2px 0 #ff0056;  
}

.tiktok:hover {
  text-shadow:
    -2px -2px 0 #00bfff,
    2px 2px 0 #ff0033;  
}
        .discord { color: #5865F2; }
        .twitch { color: #9146FF; }
                .spotify { color: #1DB954; }


        @media (prefers-color-scheme: light) {
            .github { color: #24292e; }
.tiktok {
  position: relative;
  display: inline-block;
  font-size: 2rem; 
  color: white; 
  text-shadow:
    -2px -2px 0 #00dfff, 
    2px 2px 0 #ff0056; 
}

.tiktok:hover {
  text-shadow:
    -2px -2px 0 #00bfff, 
    2px 2px 0 #ff0033;   
}
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .profile h1 {
                font-size: 24px;
            }
            
            .social-link {
                padding: 16px 20px;
            }
            
            .social-link i {
                font-size: 20px;
                margin-right: 12px;
            }
            
            .social-name {
                font-size: 16px;
            }
        }

        .footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 14px;
        }