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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 50%, #00ffff33 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, #00ffff22 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, #00ffff11 0%, transparent 50%);
            animation: bgFloat 20s ease-in-out infinite;
        }

        @keyframes bgFloat {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(2deg); }
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00ffff;
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.6;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .profile-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                        0 0 80px rgba(0, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            animation: cardGlow 3s ease-in-out infinite alternate;
        }

        @keyframes cardGlow {
            0% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(0, 255, 255, 0.1); }
            100% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 100px rgba(0, 255, 255, 0.2); }
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .avatar-section {
            margin-bottom: 2rem;
            position: relative;
        }

        .avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .avatar {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 4px solid #00ffff;
            padding: 4px;
            background: linear-gradient(45deg, #00ffff, #0099cc);
            transition: all 0.3s ease;
            animation: avatarPulse 2s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
            50% { box-shadow: 0 0 50px rgba(0, 255, 255, 0.8); }
        }

        .avatar:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 60px rgba(0, 255, 255, 1);
        }

        .status-indicator {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 20px;
            height: 20px;
            background: #00ff88;
            border-radius: 50%;
            border: 3px solid #fff;
            animation: statusBlink 2s infinite;
        }

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

        .name {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, #fff, #00ffff, #fff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: textGlow 3s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bio {
            font-size: 1.2rem;
            color: #00ffff;
            margin-bottom: 2rem;
            font-weight: 500;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s both;
        }

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

        .skills-section {
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .skills-title {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .skills-grid {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .skill-item {
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 16px;
            padding: 0.8rem 1.5rem;
            color: #00ffff;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .skill-item:hover::before {
            left: 100%;
        }

        .skill-item:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(0, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
        }

        .social-section {
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .social-title {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 16px;
            color: #00ffff;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
        }

        .music-player {
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            animation: fadeInUp 1s ease 1.2s both;
        }

        .music-title {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 600;
            text-align: center;
        }

        .music-info {
            text-align: center;
            margin-bottom: 1rem;
        }

        .song-title {
            color: #00ffff;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.1);
            height: 6px;
            border-radius: 3px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #00ffff, #0099cc);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s ease;
        }

        .music-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .control-btn {
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 12px;
            width: 50px;
            height: 50px;
            color: #00ffff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            background: rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
            transform: scale(1.1);
        }

        .control-btn.play-pause {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .footer {
            text-align: center;
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            animation: fadeInUp 1s ease 1.5s both;
        }

        @media (max-width: 768px) {
            .container { padding: 1rem; }
            .profile-card { padding: 2rem 1.5rem; }
            .name { font-size: 2.5rem; }
            .avatar { width: 120px; height: 120px; }
            .skills-grid { gap: 0.8rem; }
            .skill-item { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
            .social-links { gap: 1rem; }
            .social-link { width: 50px; height: 50px; font-size: 1.3rem; }
            .music-controls { gap: 0.8rem; }
            .control-btn { width: 45px; height: 45px; font-size: 1.1rem; }
            .control-btn.play-pause { width: 55px; height: 55px; font-size: 1.4rem; }
        }

        @media (max-width: 480px) {
            .name { font-size: 2rem; }
            .bio { font-size: 1rem; }
            .skills-grid { flex-direction: column; align-items: center; }
            .skill-item { width: 200px; text-align: center; }
        }